airbyte-api 0.49.2__tar.gz → 0.49.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {airbyte-api-0.49.2/src/airbyte_api.egg-info → airbyte-api-0.49.3}/PKG-INFO +111 -36
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/README.md +110 -35
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/setup.py +1 -1
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/_hooks/__init__.py +1 -0
- airbyte-api-0.49.3/src/airbyte_api/_hooks/registration.py +13 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/_hooks/sdkhooks.py +2 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/api/getstreamproperties.py +5 -5
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/api/listjobs.py +1 -1
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/connections.py +4 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/destinations.py +6 -1
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/jobs.py +4 -0
- airbyte-api-0.49.3/src/airbyte_api/models/__init__.py +320 -0
- airbyte-api-0.49.2/src/airbyte_api/models/connectionschedule.py → airbyte-api-0.49.3/src/airbyte_api/models/airbyteapiconnectionschedule.py +1 -1
- airbyte-api-0.49.3/src/airbyte_api/models/azure_blob_storage.py +26 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/connectioncreaterequest.py +2 -2
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/connectionpatchrequest.py +2 -2
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/destination_azure_blob_storage.py +2 -2
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/destination_mssql.py +2 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/destination_mysql.py +4 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/destination_oracle.py +2 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/destination_postgres.py +2 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/destination_redshift.py +1 -3
- airbyte-api-0.49.3/src/airbyte_api/models/destination_yellowbrick.py +186 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/destinationcreaterequest.py +2 -1
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/destinationpatchrequest.py +2 -1
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/destinationputrequest.py +2 -1
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/destinationresponse.py +2 -1
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/initiateoauthrequest.py +3 -4
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/oauthactornames.py +1 -1
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/security.py +1 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_amazon_ads.py +1 -1
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_azure_blob_storage.py +34 -2
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_dynamodb.py +37 -6
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_google_sheets.py +2 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_harvest.py +2 -2
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_iterable.py +2 -2
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_microsoft_sharepoint.py +2 -2
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_mongodb_v2.py +7 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_mssql.py +1 -1
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_notion.py +2 -2
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_s3.py +4 -2
- airbyte-api-0.49.3/src/airbyte_api/models/source_sendgrid.py +25 -0
- airbyte-api-0.49.3/src/airbyte_api/models/source_sftp_bulk.py +277 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_slack.py +2 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/sourcecreaterequest.py +2 -3
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/sourcepatchrequest.py +2 -3
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/sourceputrequest.py +1 -2
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/sourceresponse.py +1 -2
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/workspaceoauthcredentialsrequest.py +2 -2
- airbyte-api-0.49.3/src/airbyte_api/public.py +1647 -0
- airbyte-api-0.49.3/src/airbyte_api/public_connections.py +296 -0
- airbyte-api-0.49.3/src/airbyte_api/public_destinations.py +352 -0
- airbyte-api-0.49.3/src/airbyte_api/public_jobs.py +242 -0
- airbyte-api-0.49.3/src/airbyte_api/public_sources.py +412 -0
- airbyte-api-0.49.3/src/airbyte_api/public_streams.py +72 -0
- airbyte-api-0.49.3/src/airbyte_api/public_workspaces.py +353 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/sdk.py +22 -1
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/sdkconfiguration.py +3 -3
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/sources.py +6 -1
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/streams.py +3 -2
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/utils/utils.py +27 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/workspaces.py +4 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3/src/airbyte_api.egg-info}/PKG-INFO +111 -36
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api.egg-info/SOURCES.txt +11 -5
- airbyte-api-0.49.2/src/airbyte_api/models/__init__.py +0 -322
- airbyte-api-0.49.2/src/airbyte_api/models/harvest.py +0 -26
- airbyte-api-0.49.2/src/airbyte_api/models/oauthinputconfiguration.py +0 -11
- airbyte-api-0.49.2/src/airbyte_api/models/source_quickbooks.py +0 -49
- airbyte-api-0.49.2/src/airbyte_api/models/source_sendgrid.py +0 -25
- airbyte-api-0.49.2/src/airbyte_api/models/source_sftp_bulk.py +0 -50
- airbyte-api-0.49.2/src/airbyte_api/models/streampropertiesresponse.py +0 -17
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/LICENSE.md +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/setup.cfg +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/__init__.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/_hooks/types.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/api/__init__.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/api/canceljob.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/api/createconnection.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/api/createdestination.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/api/createjob.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/api/createorupdateworkspaceoauthcredentials.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/api/createsource.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/api/createworkspace.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/api/deleteconnection.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/api/deletedestination.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/api/deletesource.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/api/deleteworkspace.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/api/getconnection.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/api/getdestination.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/api/getjob.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/api/getsource.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/api/getworkspace.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/api/initiateoauth.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/api/listconnections.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/api/listdestinations.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/api/listsources.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/api/listworkspaces.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/api/patchconnection.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/api/patchdestination.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/api/patchsource.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/api/putdestination.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/api/putsource.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/api/updateworkspace.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/errors/__init__.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/errors/sdkerror.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/actortypeenum.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/airtable.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/amazon_ads.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/amazon_seller_partner.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/asana.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/bing_ads.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/connectionresponse.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/connectionscheduleresponse.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/connectionsresponse.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/connectionstatusenum.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/connectionsyncmodeenum.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/destination_astra.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/destination_aws_datalake.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/destination_bigquery.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/destination_clickhouse.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/destination_convex.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/destination_databricks.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/destination_dev_null.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/destination_duckdb.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/destination_dynamodb.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/destination_elasticsearch.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/destination_firestore.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/destination_gcs.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/destination_google_sheets.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/destination_langchain.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/destination_milvus.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/destination_mongodb.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/destination_pinecone.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/destination_pubsub.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/destination_qdrant.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/destination_redis.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/destination_s3.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/destination_s3_glue.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/destination_sftp_json.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/destination_snowflake.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/destination_teradata.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/destination_typesense.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/destination_vectara.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/destination_weaviate.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/destinationsresponse.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/facebook_marketing.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/geographyenum.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/geographyenumnodefault.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/github.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/gitlab.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/google_ads.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/google_analytics_data_api.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/google_drive.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/google_search_console.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/google_sheets.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/hubspot.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/instagram.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/intercom.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/jobcreaterequest.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/jobresponse.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/jobsresponse.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/jobstatusenum.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/jobtypeenum.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/lever_hiring.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/linkedin_ads.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/mailchimp.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/microsoft_onedrive.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/microsoft_sharepoint.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/microsoft_teams.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/monday.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/namespacedefinitionenum.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/namespacedefinitionenumnodefault.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/nonbreakingschemaupdatesbehaviorenum.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/nonbreakingschemaupdatesbehaviorenumnodefault.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/notion.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/pinterest.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/retently.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/salesforce.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/scheduletypeenum.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/scheduletypewithbasicenum.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/schemebasicauth.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/shopify.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/slack.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/smartsheets.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/snapchat_marketing.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/snowflake.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_aha.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_aircall.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_airtable.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_amazon_seller_partner.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_amazon_sqs.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_amplitude.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_apify_dataset.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_appfollow.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_asana.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_auth0.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_aws_cloudtrail.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_azure_table.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_bamboo_hr.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_bigquery.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_bing_ads.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_braintree.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_braze.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_cart.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_chargebee.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_chartmogul.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_clickhouse.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_clickup_api.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_clockify.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_close_com.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_coda.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_coin_api.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_coinmarketcap.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_configcat.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_confluence.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_convex.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_datascope.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_delighted.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_dixa.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_dockerhub.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_dremio.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_e2e_test_cloud.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_emailoctopus.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_exchange_rates.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_facebook_marketing.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_faker.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_fauna.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_file.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_firebolt.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_freshcaller.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_freshdesk.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_freshsales.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_gainsight_px.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_gcs.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_getlago.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_github.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_gitlab.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_glassfrog.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_gnews.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_google_ads.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_google_analytics_data_api.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_google_analytics_v4_service_account_only.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_google_directory.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_google_drive.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_google_pagespeed_insights.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_google_search_console.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_google_webfonts.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_greenhouse.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_gridly.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_hubplanner.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_hubspot.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_insightly.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_instagram.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_instatus.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_intercom.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_ip2whois.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_jira.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_k6_cloud.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_klarna.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_klaviyo.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_kyve.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_launchdarkly.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_lemlist.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_lever_hiring.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_linkedin_ads.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_linkedin_pages.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_linnworks.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_lokalise.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_mailchimp.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_mailgun.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_mailjet_sms.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_marketo.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_metabase.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_microsoft_onedrive.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_microsoft_teams.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_mixpanel.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_monday.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_mongodb_internal_poc.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_my_hours.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_mysql.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_netsuite.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_nytimes.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_okta.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_omnisend.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_onesignal.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_oracle.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_orb.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_orbit.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_outbrain_amplify.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_outreach.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_paypal_transaction.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_paystack.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_pendo.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_persistiq.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_pexels_api.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_pinterest.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_pipedrive.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_pocket.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_pokeapi.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_polygon_stock_api.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_postgres.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_posthog.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_postmarkapp.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_prestashop.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_punk_api.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_pypi.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_qualaroo.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_railz.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_recharge.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_recreation.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_recruitee.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_recurly.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_redshift.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_retently.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_rki_covid.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_rss.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_salesforce.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_salesloft.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_sap_fieldglass.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_secoda.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_sendinblue.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_senseforce.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_sentry.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_sftp.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_shopify.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_shortio.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_smaily.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_smartengage.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_smartsheets.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_snapchat_marketing.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_snowflake.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_sonar_cloud.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_spacex_api.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_square.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_strava.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_stripe.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_survey_sparrow.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_surveymonkey.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_tempo.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_the_guardian_api.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_tiktok_marketing.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_trello.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_trustpilot.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_tvmaze_schedule.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_twilio.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_twilio_taskrouter.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_twitter.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_typeform.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_us_census.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_vantage.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_webflow.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_whisky_hunter.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_wikipedia_pageviews.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_woocommerce.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_xkcd.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_yandex_metrica.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_yotpo.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_youtube_analytics.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_zendesk_chat.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_zendesk_sell.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_zendesk_sunshine.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_zendesk_support.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_zendesk_talk.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_zenloop.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_zoho_crm.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/source_zoom.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/sourcesresponse.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/square.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/strava.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/streamconfiguration.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/streamconfigurations.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/streamproperties.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/surveymonkey.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/tiktok_marketing.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/typeform.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/workspacecreaterequest.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/workspaceresponse.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/workspacesresponse.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/workspaceupdaterequest.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/youtube_analytics.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/zendesk_chat.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/zendesk_sunshine.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/zendesk_support.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/models/zendesk_talk.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/utils/__init__.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api/utils/retries.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api.egg-info/dependency_links.txt +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api.egg-info/requires.txt +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.3}/src/airbyte_api.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: airbyte-api
|
|
3
|
-
Version: 0.49.
|
|
3
|
+
Version: 0.49.3
|
|
4
4
|
Summary: Python Client SDK for Airbyte API
|
|
5
5
|
Home-page: https://github.com/airbytehq/airbyte-api-python-sdk.git
|
|
6
6
|
Author: Airbyte
|
|
@@ -46,13 +46,12 @@ Description: <div align="center">
|
|
|
46
46
|
),
|
|
47
47
|
)
|
|
48
48
|
|
|
49
|
-
|
|
50
|
-
destination_id='
|
|
51
|
-
source_id='
|
|
49
|
+
res = s.public_connections.create_connection(request=models.ConnectionCreateRequest(
|
|
50
|
+
destination_id='e478de0d-a3a0-475c-b019-25f7dd29e281',
|
|
51
|
+
source_id='95e66a59-8045-4307-9678-63bc3c9b8c93',
|
|
52
|
+
name='Postgres-to-Bigquery',
|
|
52
53
|
namespace_format='${SOURCE_NAMESPACE}',
|
|
53
|
-
)
|
|
54
|
-
|
|
55
|
-
res = s.connections.create_connection(req)
|
|
54
|
+
))
|
|
56
55
|
|
|
57
56
|
if res.connection_response is not None:
|
|
58
57
|
# handle response
|
|
@@ -64,6 +63,46 @@ Description: <div align="center">
|
|
|
64
63
|
<!-- Start Available Resources and Operations [operations] -->
|
|
65
64
|
## Available Resources and Operations
|
|
66
65
|
|
|
66
|
+
### [public_connections](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicconnections/README.md)
|
|
67
|
+
|
|
68
|
+
* [create_connection](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicconnections/README.md#create_connection) - Create a connection
|
|
69
|
+
* [delete_connection](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicconnections/README.md#delete_connection) - Delete a Connection
|
|
70
|
+
* [get_connection](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicconnections/README.md#get_connection) - Get Connection details
|
|
71
|
+
* [list_connections](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicconnections/README.md#list_connections) - List connections
|
|
72
|
+
* [patch_connection](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicconnections/README.md#patch_connection) - Update Connection details
|
|
73
|
+
|
|
74
|
+
### [public](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md)
|
|
75
|
+
|
|
76
|
+
* [cancel_job](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#cancel_job) - Cancel a running Job
|
|
77
|
+
* [create_connection](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#create_connection) - Create a connection
|
|
78
|
+
* [create_destination](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#create_destination) - Create a destination
|
|
79
|
+
* [create_job](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#create_job) - Trigger a sync or reset job of a connection
|
|
80
|
+
* [create_or_update_workspace_o_auth_credentials](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#create_or_update_workspace_o_auth_credentials) - Create OAuth override credentials for a workspace and source type.
|
|
81
|
+
* [create_source](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#create_source) - Create a source
|
|
82
|
+
* [create_workspace](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#create_workspace) - Create a workspace
|
|
83
|
+
* [delete_connection](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#delete_connection) - Delete a Connection
|
|
84
|
+
* [delete_destination](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#delete_destination) - Delete a Destination
|
|
85
|
+
* [delete_source](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#delete_source) - Delete a Source
|
|
86
|
+
* [delete_workspace](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#delete_workspace) - Delete a Workspace
|
|
87
|
+
* [get_connection](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#get_connection) - Get Connection details
|
|
88
|
+
* [get_destination](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#get_destination) - Get Destination details
|
|
89
|
+
* [get_job](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#get_job) - Get Job status and details
|
|
90
|
+
* [get_source](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#get_source) - Get Source details
|
|
91
|
+
* [get_stream_properties](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#get_stream_properties) - Get stream properties
|
|
92
|
+
* [get_workspace](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#get_workspace) - Get Workspace details
|
|
93
|
+
* [initiate_o_auth](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#initiate_o_auth) - Initiate OAuth for a source
|
|
94
|
+
* [list_connections](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#list_connections) - List connections
|
|
95
|
+
* [list_destinations](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#list_destinations) - List destinations
|
|
96
|
+
* [list_jobs](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#list_jobs) - List Jobs by sync type
|
|
97
|
+
* [list_sources](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#list_sources) - List sources
|
|
98
|
+
* [list_workspaces](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#list_workspaces) - List workspaces
|
|
99
|
+
* [patch_connection](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#patch_connection) - Update Connection details
|
|
100
|
+
* [patch_destination](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#patch_destination) - Update a Destination
|
|
101
|
+
* [patch_source](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#patch_source) - Update a Source
|
|
102
|
+
* [put_destination](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#put_destination) - Update a Destination and fully overwrite it
|
|
103
|
+
* [put_source](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#put_source) - Update a Source and fully overwrite it
|
|
104
|
+
* [update_workspace](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#update_workspace) - Update a workspace
|
|
105
|
+
|
|
67
106
|
### [connections](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/connections/README.md)
|
|
68
107
|
|
|
69
108
|
* [create_connection](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/connections/README.md#create_connection) - Create a connection
|
|
@@ -72,6 +111,15 @@ Description: <div align="center">
|
|
|
72
111
|
* [list_connections](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/connections/README.md#list_connections) - List connections
|
|
73
112
|
* [patch_connection](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/connections/README.md#patch_connection) - Update Connection details
|
|
74
113
|
|
|
114
|
+
### [public_destinations](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicdestinations/README.md)
|
|
115
|
+
|
|
116
|
+
* [create_destination](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicdestinations/README.md#create_destination) - Create a destination
|
|
117
|
+
* [delete_destination](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicdestinations/README.md#delete_destination) - Delete a Destination
|
|
118
|
+
* [get_destination](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicdestinations/README.md#get_destination) - Get Destination details
|
|
119
|
+
* [list_destinations](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicdestinations/README.md#list_destinations) - List destinations
|
|
120
|
+
* [patch_destination](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicdestinations/README.md#patch_destination) - Update a Destination
|
|
121
|
+
* [put_destination](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicdestinations/README.md#put_destination) - Update a Destination and fully overwrite it
|
|
122
|
+
|
|
75
123
|
### [destinations](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/destinations/README.md)
|
|
76
124
|
|
|
77
125
|
* [create_destination](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/destinations/README.md#create_destination) - Create a destination
|
|
@@ -81,6 +129,13 @@ Description: <div align="center">
|
|
|
81
129
|
* [patch_destination](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/destinations/README.md#patch_destination) - Update a Destination
|
|
82
130
|
* [put_destination](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/destinations/README.md#put_destination) - Update a Destination and fully overwrite it
|
|
83
131
|
|
|
132
|
+
### [public_jobs](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicjobs/README.md)
|
|
133
|
+
|
|
134
|
+
* [cancel_job](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicjobs/README.md#cancel_job) - Cancel a running Job
|
|
135
|
+
* [create_job](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicjobs/README.md#create_job) - Trigger a sync or reset job of a connection
|
|
136
|
+
* [get_job](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicjobs/README.md#get_job) - Get Job status and details
|
|
137
|
+
* [list_jobs](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicjobs/README.md#list_jobs) - List Jobs by sync type
|
|
138
|
+
|
|
84
139
|
### [jobs](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/jobs/README.md)
|
|
85
140
|
|
|
86
141
|
* [cancel_job](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/jobs/README.md#cancel_job) - Cancel a running Job
|
|
@@ -88,6 +143,16 @@ Description: <div align="center">
|
|
|
88
143
|
* [get_job](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/jobs/README.md#get_job) - Get Job status and details
|
|
89
144
|
* [list_jobs](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/jobs/README.md#list_jobs) - List Jobs by sync type
|
|
90
145
|
|
|
146
|
+
### [public_sources](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicsources/README.md)
|
|
147
|
+
|
|
148
|
+
* [create_source](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicsources/README.md#create_source) - Create a source
|
|
149
|
+
* [delete_source](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicsources/README.md#delete_source) - Delete a Source
|
|
150
|
+
* [get_source](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicsources/README.md#get_source) - Get Source details
|
|
151
|
+
* [initiate_o_auth](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicsources/README.md#initiate_o_auth) - Initiate OAuth for a source
|
|
152
|
+
* [list_sources](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicsources/README.md#list_sources) - List sources
|
|
153
|
+
* [patch_source](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicsources/README.md#patch_source) - Update a Source
|
|
154
|
+
* [put_source](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicsources/README.md#put_source) - Update a Source and fully overwrite it
|
|
155
|
+
|
|
91
156
|
### [sources](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/sources/README.md)
|
|
92
157
|
|
|
93
158
|
* [create_source](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/sources/README.md#create_source) - Create a source
|
|
@@ -98,10 +163,23 @@ Description: <div align="center">
|
|
|
98
163
|
* [patch_source](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/sources/README.md#patch_source) - Update a Source
|
|
99
164
|
* [put_source](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/sources/README.md#put_source) - Update a Source and fully overwrite it
|
|
100
165
|
|
|
166
|
+
### [public_streams](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicstreams/README.md)
|
|
167
|
+
|
|
168
|
+
* [get_stream_properties](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicstreams/README.md#get_stream_properties) - Get stream properties
|
|
169
|
+
|
|
101
170
|
### [streams](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/streams/README.md)
|
|
102
171
|
|
|
103
172
|
* [get_stream_properties](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/streams/README.md#get_stream_properties) - Get stream properties
|
|
104
173
|
|
|
174
|
+
### [public_workspaces](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicworkspaces/README.md)
|
|
175
|
+
|
|
176
|
+
* [create_or_update_workspace_o_auth_credentials](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicworkspaces/README.md#create_or_update_workspace_o_auth_credentials) - Create OAuth override credentials for a workspace and source type.
|
|
177
|
+
* [create_workspace](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicworkspaces/README.md#create_workspace) - Create a workspace
|
|
178
|
+
* [delete_workspace](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicworkspaces/README.md#delete_workspace) - Delete a Workspace
|
|
179
|
+
* [get_workspace](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicworkspaces/README.md#get_workspace) - Get Workspace details
|
|
180
|
+
* [list_workspaces](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicworkspaces/README.md#list_workspaces) - List workspaces
|
|
181
|
+
* [update_workspace](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicworkspaces/README.md#update_workspace) - Update a workspace
|
|
182
|
+
|
|
105
183
|
### [workspaces](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/workspaces/README.md)
|
|
106
184
|
|
|
107
185
|
* [create_or_update_workspace_o_auth_credentials](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/workspaces/README.md#create_or_update_workspace_o_auth_credentials) - Create OAuth override credentials for a workspace and source type.
|
|
@@ -142,15 +220,14 @@ Description: <div align="center">
|
|
|
142
220
|
),
|
|
143
221
|
)
|
|
144
222
|
|
|
145
|
-
req = models.ConnectionCreateRequest(
|
|
146
|
-
destination_id='c669dd1e-3620-483e-afc8-55914e0a570f',
|
|
147
|
-
source_id='6dd427d8-3a55-4584-b835-842325b6c7b3',
|
|
148
|
-
namespace_format='${SOURCE_NAMESPACE}',
|
|
149
|
-
)
|
|
150
|
-
|
|
151
223
|
res = None
|
|
152
224
|
try:
|
|
153
|
-
res = s.
|
|
225
|
+
res = s.public_connections.create_connection(request=models.ConnectionCreateRequest(
|
|
226
|
+
destination_id='e478de0d-a3a0-475c-b019-25f7dd29e281',
|
|
227
|
+
source_id='95e66a59-8045-4307-9678-63bc3c9b8c93',
|
|
228
|
+
name='Postgres-to-Bigquery',
|
|
229
|
+
namespace_format='${SOURCE_NAMESPACE}',
|
|
230
|
+
))
|
|
154
231
|
except errors.SDKError as e:
|
|
155
232
|
# handle exception
|
|
156
233
|
raise(e)
|
|
@@ -191,13 +268,12 @@ Description: <div align="center">
|
|
|
191
268
|
),
|
|
192
269
|
)
|
|
193
270
|
|
|
194
|
-
|
|
195
|
-
destination_id='
|
|
196
|
-
source_id='
|
|
271
|
+
res = s.public_connections.create_connection(request=models.ConnectionCreateRequest(
|
|
272
|
+
destination_id='e478de0d-a3a0-475c-b019-25f7dd29e281',
|
|
273
|
+
source_id='95e66a59-8045-4307-9678-63bc3c9b8c93',
|
|
274
|
+
name='Postgres-to-Bigquery',
|
|
197
275
|
namespace_format='${SOURCE_NAMESPACE}',
|
|
198
|
-
)
|
|
199
|
-
|
|
200
|
-
res = s.connections.create_connection(req)
|
|
276
|
+
))
|
|
201
277
|
|
|
202
278
|
if res.connection_response is not None:
|
|
203
279
|
# handle response
|
|
@@ -223,13 +299,12 @@ Description: <div align="center">
|
|
|
223
299
|
),
|
|
224
300
|
)
|
|
225
301
|
|
|
226
|
-
|
|
227
|
-
destination_id='
|
|
228
|
-
source_id='
|
|
302
|
+
res = s.public_connections.create_connection(request=models.ConnectionCreateRequest(
|
|
303
|
+
destination_id='e478de0d-a3a0-475c-b019-25f7dd29e281',
|
|
304
|
+
source_id='95e66a59-8045-4307-9678-63bc3c9b8c93',
|
|
305
|
+
name='Postgres-to-Bigquery',
|
|
229
306
|
namespace_format='${SOURCE_NAMESPACE}',
|
|
230
|
-
)
|
|
231
|
-
|
|
232
|
-
res = s.connections.create_connection(req)
|
|
307
|
+
))
|
|
233
308
|
|
|
234
309
|
if res.connection_response is not None:
|
|
235
310
|
# handle response
|
|
@@ -265,10 +340,11 @@ Description: <div align="center">
|
|
|
265
340
|
|
|
266
341
|
This SDK supports the following security schemes globally:
|
|
267
342
|
|
|
268
|
-
| Name
|
|
269
|
-
|
|
|
270
|
-
| `basic_auth`
|
|
271
|
-
| `bearer_auth`
|
|
343
|
+
| Name | Type | Scheme |
|
|
344
|
+
| -------------------- | -------------------- | -------------------- |
|
|
345
|
+
| `basic_auth` | http | HTTP Basic |
|
|
346
|
+
| `bearer_auth` | http | HTTP Bearer |
|
|
347
|
+
| `client_credentials` | oauth2 | OAuth2 token |
|
|
272
348
|
|
|
273
349
|
You can set the security parameters through the `security` optional parameter when initializing the SDK client instance. The selected scheme will be used by default to authenticate with the API for all operations that support it. For example:
|
|
274
350
|
```python
|
|
@@ -284,13 +360,12 @@ Description: <div align="center">
|
|
|
284
360
|
),
|
|
285
361
|
)
|
|
286
362
|
|
|
287
|
-
|
|
288
|
-
destination_id='
|
|
289
|
-
source_id='
|
|
363
|
+
res = s.public_connections.create_connection(request=models.ConnectionCreateRequest(
|
|
364
|
+
destination_id='e478de0d-a3a0-475c-b019-25f7dd29e281',
|
|
365
|
+
source_id='95e66a59-8045-4307-9678-63bc3c9b8c93',
|
|
366
|
+
name='Postgres-to-Bigquery',
|
|
290
367
|
namespace_format='${SOURCE_NAMESPACE}',
|
|
291
|
-
)
|
|
292
|
-
|
|
293
|
-
res = s.connections.create_connection(req)
|
|
368
|
+
))
|
|
294
369
|
|
|
295
370
|
if res.connection_response is not None:
|
|
296
371
|
# handle response
|
|
@@ -39,13 +39,12 @@ s = airbyte_api.AirbyteAPI(
|
|
|
39
39
|
),
|
|
40
40
|
)
|
|
41
41
|
|
|
42
|
-
|
|
43
|
-
destination_id='
|
|
44
|
-
source_id='
|
|
42
|
+
res = s.public_connections.create_connection(request=models.ConnectionCreateRequest(
|
|
43
|
+
destination_id='e478de0d-a3a0-475c-b019-25f7dd29e281',
|
|
44
|
+
source_id='95e66a59-8045-4307-9678-63bc3c9b8c93',
|
|
45
|
+
name='Postgres-to-Bigquery',
|
|
45
46
|
namespace_format='${SOURCE_NAMESPACE}',
|
|
46
|
-
)
|
|
47
|
-
|
|
48
|
-
res = s.connections.create_connection(req)
|
|
47
|
+
))
|
|
49
48
|
|
|
50
49
|
if res.connection_response is not None:
|
|
51
50
|
# handle response
|
|
@@ -57,6 +56,46 @@ if res.connection_response is not None:
|
|
|
57
56
|
<!-- Start Available Resources and Operations [operations] -->
|
|
58
57
|
## Available Resources and Operations
|
|
59
58
|
|
|
59
|
+
### [public_connections](docs/sdks/publicconnections/README.md)
|
|
60
|
+
|
|
61
|
+
* [create_connection](docs/sdks/publicconnections/README.md#create_connection) - Create a connection
|
|
62
|
+
* [delete_connection](docs/sdks/publicconnections/README.md#delete_connection) - Delete a Connection
|
|
63
|
+
* [get_connection](docs/sdks/publicconnections/README.md#get_connection) - Get Connection details
|
|
64
|
+
* [list_connections](docs/sdks/publicconnections/README.md#list_connections) - List connections
|
|
65
|
+
* [patch_connection](docs/sdks/publicconnections/README.md#patch_connection) - Update Connection details
|
|
66
|
+
|
|
67
|
+
### [public](docs/sdks/public/README.md)
|
|
68
|
+
|
|
69
|
+
* [cancel_job](docs/sdks/public/README.md#cancel_job) - Cancel a running Job
|
|
70
|
+
* [create_connection](docs/sdks/public/README.md#create_connection) - Create a connection
|
|
71
|
+
* [create_destination](docs/sdks/public/README.md#create_destination) - Create a destination
|
|
72
|
+
* [create_job](docs/sdks/public/README.md#create_job) - Trigger a sync or reset job of a connection
|
|
73
|
+
* [create_or_update_workspace_o_auth_credentials](docs/sdks/public/README.md#create_or_update_workspace_o_auth_credentials) - Create OAuth override credentials for a workspace and source type.
|
|
74
|
+
* [create_source](docs/sdks/public/README.md#create_source) - Create a source
|
|
75
|
+
* [create_workspace](docs/sdks/public/README.md#create_workspace) - Create a workspace
|
|
76
|
+
* [delete_connection](docs/sdks/public/README.md#delete_connection) - Delete a Connection
|
|
77
|
+
* [delete_destination](docs/sdks/public/README.md#delete_destination) - Delete a Destination
|
|
78
|
+
* [delete_source](docs/sdks/public/README.md#delete_source) - Delete a Source
|
|
79
|
+
* [delete_workspace](docs/sdks/public/README.md#delete_workspace) - Delete a Workspace
|
|
80
|
+
* [get_connection](docs/sdks/public/README.md#get_connection) - Get Connection details
|
|
81
|
+
* [get_destination](docs/sdks/public/README.md#get_destination) - Get Destination details
|
|
82
|
+
* [get_job](docs/sdks/public/README.md#get_job) - Get Job status and details
|
|
83
|
+
* [get_source](docs/sdks/public/README.md#get_source) - Get Source details
|
|
84
|
+
* [get_stream_properties](docs/sdks/public/README.md#get_stream_properties) - Get stream properties
|
|
85
|
+
* [get_workspace](docs/sdks/public/README.md#get_workspace) - Get Workspace details
|
|
86
|
+
* [initiate_o_auth](docs/sdks/public/README.md#initiate_o_auth) - Initiate OAuth for a source
|
|
87
|
+
* [list_connections](docs/sdks/public/README.md#list_connections) - List connections
|
|
88
|
+
* [list_destinations](docs/sdks/public/README.md#list_destinations) - List destinations
|
|
89
|
+
* [list_jobs](docs/sdks/public/README.md#list_jobs) - List Jobs by sync type
|
|
90
|
+
* [list_sources](docs/sdks/public/README.md#list_sources) - List sources
|
|
91
|
+
* [list_workspaces](docs/sdks/public/README.md#list_workspaces) - List workspaces
|
|
92
|
+
* [patch_connection](docs/sdks/public/README.md#patch_connection) - Update Connection details
|
|
93
|
+
* [patch_destination](docs/sdks/public/README.md#patch_destination) - Update a Destination
|
|
94
|
+
* [patch_source](docs/sdks/public/README.md#patch_source) - Update a Source
|
|
95
|
+
* [put_destination](docs/sdks/public/README.md#put_destination) - Update a Destination and fully overwrite it
|
|
96
|
+
* [put_source](docs/sdks/public/README.md#put_source) - Update a Source and fully overwrite it
|
|
97
|
+
* [update_workspace](docs/sdks/public/README.md#update_workspace) - Update a workspace
|
|
98
|
+
|
|
60
99
|
### [connections](docs/sdks/connections/README.md)
|
|
61
100
|
|
|
62
101
|
* [create_connection](docs/sdks/connections/README.md#create_connection) - Create a connection
|
|
@@ -65,6 +104,15 @@ if res.connection_response is not None:
|
|
|
65
104
|
* [list_connections](docs/sdks/connections/README.md#list_connections) - List connections
|
|
66
105
|
* [patch_connection](docs/sdks/connections/README.md#patch_connection) - Update Connection details
|
|
67
106
|
|
|
107
|
+
### [public_destinations](docs/sdks/publicdestinations/README.md)
|
|
108
|
+
|
|
109
|
+
* [create_destination](docs/sdks/publicdestinations/README.md#create_destination) - Create a destination
|
|
110
|
+
* [delete_destination](docs/sdks/publicdestinations/README.md#delete_destination) - Delete a Destination
|
|
111
|
+
* [get_destination](docs/sdks/publicdestinations/README.md#get_destination) - Get Destination details
|
|
112
|
+
* [list_destinations](docs/sdks/publicdestinations/README.md#list_destinations) - List destinations
|
|
113
|
+
* [patch_destination](docs/sdks/publicdestinations/README.md#patch_destination) - Update a Destination
|
|
114
|
+
* [put_destination](docs/sdks/publicdestinations/README.md#put_destination) - Update a Destination and fully overwrite it
|
|
115
|
+
|
|
68
116
|
### [destinations](docs/sdks/destinations/README.md)
|
|
69
117
|
|
|
70
118
|
* [create_destination](docs/sdks/destinations/README.md#create_destination) - Create a destination
|
|
@@ -74,6 +122,13 @@ if res.connection_response is not None:
|
|
|
74
122
|
* [patch_destination](docs/sdks/destinations/README.md#patch_destination) - Update a Destination
|
|
75
123
|
* [put_destination](docs/sdks/destinations/README.md#put_destination) - Update a Destination and fully overwrite it
|
|
76
124
|
|
|
125
|
+
### [public_jobs](docs/sdks/publicjobs/README.md)
|
|
126
|
+
|
|
127
|
+
* [cancel_job](docs/sdks/publicjobs/README.md#cancel_job) - Cancel a running Job
|
|
128
|
+
* [create_job](docs/sdks/publicjobs/README.md#create_job) - Trigger a sync or reset job of a connection
|
|
129
|
+
* [get_job](docs/sdks/publicjobs/README.md#get_job) - Get Job status and details
|
|
130
|
+
* [list_jobs](docs/sdks/publicjobs/README.md#list_jobs) - List Jobs by sync type
|
|
131
|
+
|
|
77
132
|
### [jobs](docs/sdks/jobs/README.md)
|
|
78
133
|
|
|
79
134
|
* [cancel_job](docs/sdks/jobs/README.md#cancel_job) - Cancel a running Job
|
|
@@ -81,6 +136,16 @@ if res.connection_response is not None:
|
|
|
81
136
|
* [get_job](docs/sdks/jobs/README.md#get_job) - Get Job status and details
|
|
82
137
|
* [list_jobs](docs/sdks/jobs/README.md#list_jobs) - List Jobs by sync type
|
|
83
138
|
|
|
139
|
+
### [public_sources](docs/sdks/publicsources/README.md)
|
|
140
|
+
|
|
141
|
+
* [create_source](docs/sdks/publicsources/README.md#create_source) - Create a source
|
|
142
|
+
* [delete_source](docs/sdks/publicsources/README.md#delete_source) - Delete a Source
|
|
143
|
+
* [get_source](docs/sdks/publicsources/README.md#get_source) - Get Source details
|
|
144
|
+
* [initiate_o_auth](docs/sdks/publicsources/README.md#initiate_o_auth) - Initiate OAuth for a source
|
|
145
|
+
* [list_sources](docs/sdks/publicsources/README.md#list_sources) - List sources
|
|
146
|
+
* [patch_source](docs/sdks/publicsources/README.md#patch_source) - Update a Source
|
|
147
|
+
* [put_source](docs/sdks/publicsources/README.md#put_source) - Update a Source and fully overwrite it
|
|
148
|
+
|
|
84
149
|
### [sources](docs/sdks/sources/README.md)
|
|
85
150
|
|
|
86
151
|
* [create_source](docs/sdks/sources/README.md#create_source) - Create a source
|
|
@@ -91,10 +156,23 @@ if res.connection_response is not None:
|
|
|
91
156
|
* [patch_source](docs/sdks/sources/README.md#patch_source) - Update a Source
|
|
92
157
|
* [put_source](docs/sdks/sources/README.md#put_source) - Update a Source and fully overwrite it
|
|
93
158
|
|
|
159
|
+
### [public_streams](docs/sdks/publicstreams/README.md)
|
|
160
|
+
|
|
161
|
+
* [get_stream_properties](docs/sdks/publicstreams/README.md#get_stream_properties) - Get stream properties
|
|
162
|
+
|
|
94
163
|
### [streams](docs/sdks/streams/README.md)
|
|
95
164
|
|
|
96
165
|
* [get_stream_properties](docs/sdks/streams/README.md#get_stream_properties) - Get stream properties
|
|
97
166
|
|
|
167
|
+
### [public_workspaces](docs/sdks/publicworkspaces/README.md)
|
|
168
|
+
|
|
169
|
+
* [create_or_update_workspace_o_auth_credentials](docs/sdks/publicworkspaces/README.md#create_or_update_workspace_o_auth_credentials) - Create OAuth override credentials for a workspace and source type.
|
|
170
|
+
* [create_workspace](docs/sdks/publicworkspaces/README.md#create_workspace) - Create a workspace
|
|
171
|
+
* [delete_workspace](docs/sdks/publicworkspaces/README.md#delete_workspace) - Delete a Workspace
|
|
172
|
+
* [get_workspace](docs/sdks/publicworkspaces/README.md#get_workspace) - Get Workspace details
|
|
173
|
+
* [list_workspaces](docs/sdks/publicworkspaces/README.md#list_workspaces) - List workspaces
|
|
174
|
+
* [update_workspace](docs/sdks/publicworkspaces/README.md#update_workspace) - Update a workspace
|
|
175
|
+
|
|
98
176
|
### [workspaces](docs/sdks/workspaces/README.md)
|
|
99
177
|
|
|
100
178
|
* [create_or_update_workspace_o_auth_credentials](docs/sdks/workspaces/README.md#create_or_update_workspace_o_auth_credentials) - Create OAuth override credentials for a workspace and source type.
|
|
@@ -135,15 +213,14 @@ s = airbyte_api.AirbyteAPI(
|
|
|
135
213
|
),
|
|
136
214
|
)
|
|
137
215
|
|
|
138
|
-
req = models.ConnectionCreateRequest(
|
|
139
|
-
destination_id='c669dd1e-3620-483e-afc8-55914e0a570f',
|
|
140
|
-
source_id='6dd427d8-3a55-4584-b835-842325b6c7b3',
|
|
141
|
-
namespace_format='${SOURCE_NAMESPACE}',
|
|
142
|
-
)
|
|
143
|
-
|
|
144
216
|
res = None
|
|
145
217
|
try:
|
|
146
|
-
res = s.
|
|
218
|
+
res = s.public_connections.create_connection(request=models.ConnectionCreateRequest(
|
|
219
|
+
destination_id='e478de0d-a3a0-475c-b019-25f7dd29e281',
|
|
220
|
+
source_id='95e66a59-8045-4307-9678-63bc3c9b8c93',
|
|
221
|
+
name='Postgres-to-Bigquery',
|
|
222
|
+
namespace_format='${SOURCE_NAMESPACE}',
|
|
223
|
+
))
|
|
147
224
|
except errors.SDKError as e:
|
|
148
225
|
# handle exception
|
|
149
226
|
raise(e)
|
|
@@ -184,13 +261,12 @@ s = airbyte_api.AirbyteAPI(
|
|
|
184
261
|
),
|
|
185
262
|
)
|
|
186
263
|
|
|
187
|
-
|
|
188
|
-
destination_id='
|
|
189
|
-
source_id='
|
|
264
|
+
res = s.public_connections.create_connection(request=models.ConnectionCreateRequest(
|
|
265
|
+
destination_id='e478de0d-a3a0-475c-b019-25f7dd29e281',
|
|
266
|
+
source_id='95e66a59-8045-4307-9678-63bc3c9b8c93',
|
|
267
|
+
name='Postgres-to-Bigquery',
|
|
190
268
|
namespace_format='${SOURCE_NAMESPACE}',
|
|
191
|
-
)
|
|
192
|
-
|
|
193
|
-
res = s.connections.create_connection(req)
|
|
269
|
+
))
|
|
194
270
|
|
|
195
271
|
if res.connection_response is not None:
|
|
196
272
|
# handle response
|
|
@@ -216,13 +292,12 @@ s = airbyte_api.AirbyteAPI(
|
|
|
216
292
|
),
|
|
217
293
|
)
|
|
218
294
|
|
|
219
|
-
|
|
220
|
-
destination_id='
|
|
221
|
-
source_id='
|
|
295
|
+
res = s.public_connections.create_connection(request=models.ConnectionCreateRequest(
|
|
296
|
+
destination_id='e478de0d-a3a0-475c-b019-25f7dd29e281',
|
|
297
|
+
source_id='95e66a59-8045-4307-9678-63bc3c9b8c93',
|
|
298
|
+
name='Postgres-to-Bigquery',
|
|
222
299
|
namespace_format='${SOURCE_NAMESPACE}',
|
|
223
|
-
)
|
|
224
|
-
|
|
225
|
-
res = s.connections.create_connection(req)
|
|
300
|
+
))
|
|
226
301
|
|
|
227
302
|
if res.connection_response is not None:
|
|
228
303
|
# handle response
|
|
@@ -258,10 +333,11 @@ s = airbyte_api.AirbyteAPI(client=http_client)
|
|
|
258
333
|
|
|
259
334
|
This SDK supports the following security schemes globally:
|
|
260
335
|
|
|
261
|
-
| Name
|
|
262
|
-
|
|
|
263
|
-
| `basic_auth`
|
|
264
|
-
| `bearer_auth`
|
|
336
|
+
| Name | Type | Scheme |
|
|
337
|
+
| -------------------- | -------------------- | -------------------- |
|
|
338
|
+
| `basic_auth` | http | HTTP Basic |
|
|
339
|
+
| `bearer_auth` | http | HTTP Bearer |
|
|
340
|
+
| `client_credentials` | oauth2 | OAuth2 token |
|
|
265
341
|
|
|
266
342
|
You can set the security parameters through the `security` optional parameter when initializing the SDK client instance. The selected scheme will be used by default to authenticate with the API for all operations that support it. For example:
|
|
267
343
|
```python
|
|
@@ -277,13 +353,12 @@ s = airbyte_api.AirbyteAPI(
|
|
|
277
353
|
),
|
|
278
354
|
)
|
|
279
355
|
|
|
280
|
-
|
|
281
|
-
destination_id='
|
|
282
|
-
source_id='
|
|
356
|
+
res = s.public_connections.create_connection(request=models.ConnectionCreateRequest(
|
|
357
|
+
destination_id='e478de0d-a3a0-475c-b019-25f7dd29e281',
|
|
358
|
+
source_id='95e66a59-8045-4307-9678-63bc3c9b8c93',
|
|
359
|
+
name='Postgres-to-Bigquery',
|
|
283
360
|
namespace_format='${SOURCE_NAMESPACE}',
|
|
284
|
-
)
|
|
285
|
-
|
|
286
|
-
res = s.connections.create_connection(req)
|
|
361
|
+
))
|
|
287
362
|
|
|
288
363
|
if res.connection_response is not None:
|
|
289
364
|
# handle response
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
from .types import Hooks
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
# This file is only ever generated once on the first generation and then is free to be modified.
|
|
5
|
+
# Any hooks you wish to add should be registered in the init_hooks function. Feel free to define them
|
|
6
|
+
# in this file or in separate files in the hooks folder.
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
def init_hooks(hooks: Hooks):
|
|
10
|
+
# pylint: disable=unused-argument
|
|
11
|
+
"""Add hooks by calling hooks.register{sdk_init/before_request/after_success/after_error}Hook
|
|
12
|
+
with an instance of a hook that implements that specific Hook interface
|
|
13
|
+
Hooks are registered per SDK instance, and are valid for the lifetime of the SDK instance"""
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
import requests
|
|
4
4
|
from .types import SDKInitHook, BeforeRequestContext, BeforeRequestHook, AfterSuccessContext, AfterSuccessHook, AfterErrorContext, AfterErrorHook, Hooks
|
|
5
|
+
from .registration import init_hooks
|
|
5
6
|
from typing import List, Optional, Tuple
|
|
6
7
|
|
|
7
8
|
|
|
@@ -11,6 +12,7 @@ class SDKHooks(Hooks):
|
|
|
11
12
|
self.before_request_hooks: List[BeforeRequestHook] = []
|
|
12
13
|
self.after_success_hooks: List[AfterSuccessHook] = []
|
|
13
14
|
self.after_error_hooks: List[AfterErrorHook] = []
|
|
15
|
+
init_hooks(self)
|
|
14
16
|
|
|
15
17
|
def register_sdk_init_hook(self, hook: SDKInitHook) -> None:
|
|
16
18
|
self.sdk_init_hooks.append(hook)
|
|
@@ -3,16 +3,16 @@
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
import dataclasses
|
|
5
5
|
import requests as requests_http
|
|
6
|
-
from ..models import
|
|
7
|
-
from typing import Optional
|
|
6
|
+
from ..models import streamproperties as models_streamproperties
|
|
7
|
+
from typing import List, Optional
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
@dataclasses.dataclass
|
|
11
11
|
class GetStreamPropertiesRequest:
|
|
12
|
-
destination_id: str = dataclasses.field(metadata={'query_param': { 'field_name': 'destinationId', 'style': 'form', 'explode': True }})
|
|
13
|
-
r"""ID of the destination"""
|
|
14
12
|
source_id: str = dataclasses.field(metadata={'query_param': { 'field_name': 'sourceId', 'style': 'form', 'explode': True }})
|
|
15
13
|
r"""ID of the source"""
|
|
14
|
+
destination_id: Optional[str] = dataclasses.field(default=None, metadata={'query_param': { 'field_name': 'destinationId', 'style': 'form', 'explode': True }})
|
|
15
|
+
r"""ID of the destination"""
|
|
16
16
|
ignore_cache: Optional[bool] = dataclasses.field(default=False, metadata={'query_param': { 'field_name': 'ignoreCache', 'style': 'form', 'explode': True }})
|
|
17
17
|
r"""If true pull the latest schema from the source, else pull from cache (default false)"""
|
|
18
18
|
|
|
@@ -27,7 +27,7 @@ class GetStreamPropertiesResponse:
|
|
|
27
27
|
r"""HTTP response status code for this operation"""
|
|
28
28
|
raw_response: requests_http.Response = dataclasses.field()
|
|
29
29
|
r"""Raw HTTP response; suitable for custom response parsing"""
|
|
30
|
-
stream_properties_response: Optional[
|
|
30
|
+
stream_properties_response: Optional[List[models_streamproperties.StreamProperties]] = dataclasses.field(default=None)
|
|
31
31
|
r"""Get the available streams properties for a source/destination pair."""
|
|
32
32
|
|
|
33
33
|
|
|
@@ -25,7 +25,7 @@ class ListJobsRequest:
|
|
|
25
25
|
offset: Optional[int] = dataclasses.field(default=0, metadata={'query_param': { 'field_name': 'offset', 'style': 'form', 'explode': True }})
|
|
26
26
|
r"""Set the offset to start at when returning Jobs. The default is 0."""
|
|
27
27
|
order_by: Optional[str] = dataclasses.field(default=None, metadata={'query_param': { 'field_name': 'orderBy', 'style': 'form', 'explode': True }})
|
|
28
|
-
r"""The field and method to use for ordering
|
|
28
|
+
r"""The field and method to use for ordering"""
|
|
29
29
|
status: Optional[models_jobstatusenum.JobStatusEnum] = dataclasses.field(default=None, metadata={'query_param': { 'field_name': 'status', 'style': 'form', 'explode': True }})
|
|
30
30
|
r"""The Job status you want to filter by"""
|
|
31
31
|
updated_at_end: Optional[datetime] = dataclasses.field(default=None, metadata={'query_param': { 'field_name': 'updatedAtEnd', 'style': 'form', 'explode': True }})
|
|
@@ -58,6 +58,7 @@ class Connections:
|
|
|
58
58
|
res = api.CreateConnectionResponse(status_code=http_res.status_code, content_type=http_res.headers.get('Content-Type') or '', raw_response=http_res)
|
|
59
59
|
|
|
60
60
|
if http_res.status_code == 200:
|
|
61
|
+
# pylint: disable=no-else-return
|
|
61
62
|
if utils.match_content_type(http_res.headers.get('Content-Type') or '', 'application/json'):
|
|
62
63
|
out = utils.unmarshal_json(http_res.text, Optional[models.ConnectionResponse])
|
|
63
64
|
res.connection_response = out
|
|
@@ -161,6 +162,7 @@ class Connections:
|
|
|
161
162
|
res = api.GetConnectionResponse(status_code=http_res.status_code, content_type=http_res.headers.get('Content-Type') or '', raw_response=http_res)
|
|
162
163
|
|
|
163
164
|
if http_res.status_code == 200:
|
|
165
|
+
# pylint: disable=no-else-return
|
|
164
166
|
if utils.match_content_type(http_res.headers.get('Content-Type') or '', 'application/json'):
|
|
165
167
|
out = utils.unmarshal_json(http_res.text, Optional[models.ConnectionResponse])
|
|
166
168
|
res.connection_response = out
|
|
@@ -216,6 +218,7 @@ class Connections:
|
|
|
216
218
|
res = api.ListConnectionsResponse(status_code=http_res.status_code, content_type=http_res.headers.get('Content-Type') or '', raw_response=http_res)
|
|
217
219
|
|
|
218
220
|
if http_res.status_code == 200:
|
|
221
|
+
# pylint: disable=no-else-return
|
|
219
222
|
if utils.match_content_type(http_res.headers.get('Content-Type') or '', 'application/json'):
|
|
220
223
|
out = utils.unmarshal_json(http_res.text, Optional[models.ConnectionsResponse])
|
|
221
224
|
res.connections_response = out
|
|
@@ -275,6 +278,7 @@ class Connections:
|
|
|
275
278
|
res = api.PatchConnectionResponse(status_code=http_res.status_code, content_type=http_res.headers.get('Content-Type') or '', raw_response=http_res)
|
|
276
279
|
|
|
277
280
|
if http_res.status_code == 200:
|
|
281
|
+
# pylint: disable=no-else-return
|
|
278
282
|
if utils.match_content_type(http_res.headers.get('Content-Type') or '', 'application/json'):
|
|
279
283
|
out = utils.unmarshal_json(http_res.text, Optional[models.ConnectionResponse])
|
|
280
284
|
res.connection_response = out
|