airbyte-api 0.49.2__tar.gz → 0.49.4__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.4}/PKG-INFO +120 -36
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/README.md +119 -35
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/setup.py +1 -1
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/_hooks/__init__.py +1 -0
- airbyte-api-0.49.4/src/airbyte_api/_hooks/registration.py +13 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/_hooks/sdkhooks.py +2 -0
- airbyte-api-0.49.4/src/airbyte_api/api/__init__.py +34 -0
- airbyte-api-0.49.4/src/airbyte_api/api/createpermission.py +21 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/api/getstreamproperties.py +5 -5
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/api/listjobs.py +1 -1
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/connections.py +4 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/destinations.py +6 -1
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/jobs.py +4 -0
- airbyte-api-0.49.4/src/airbyte_api/models/__init__.py +323 -0
- airbyte-api-0.49.2/src/airbyte_api/models/connectionschedule.py → airbyte-api-0.49.4/src/airbyte_api/models/airbyteapiconnectionschedule.py +1 -1
- airbyte-api-0.49.4/src/airbyte_api/models/azure_blob_storage.py +26 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/connectioncreaterequest.py +2 -2
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/connectionpatchrequest.py +2 -2
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/destination_azure_blob_storage.py +2 -2
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/destination_mssql.py +2 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/destination_mysql.py +4 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/destination_oracle.py +2 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/destination_postgres.py +2 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/destination_redshift.py +1 -3
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/destination_snowflake.py +0 -2
- airbyte-api-0.49.4/src/airbyte_api/models/destination_yellowbrick.py +186 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/destinationcreaterequest.py +2 -1
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/destinationpatchrequest.py +2 -1
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/destinationputrequest.py +2 -1
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/destinationresponse.py +2 -1
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/initiateoauthrequest.py +3 -4
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/oauthactornames.py +1 -1
- airbyte-api-0.49.4/src/airbyte_api/models/permissioncreaterequest.py +21 -0
- airbyte-api-0.49.4/src/airbyte_api/models/permissionresponse.py +23 -0
- airbyte-api-0.49.4/src/airbyte_api/models/permissiontype.py +16 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/security.py +1 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_amazon_ads.py +1 -1
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_amazon_seller_partner.py +0 -8
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_azure_blob_storage.py +34 -2
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_dynamodb.py +37 -6
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_firebolt.py +8 -8
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_google_sheets.py +2 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_harvest.py +2 -2
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_iterable.py +2 -2
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_microsoft_sharepoint.py +2 -2
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_mongodb_v2.py +7 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_mssql.py +1 -1
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_notion.py +2 -2
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_s3.py +4 -2
- airbyte-api-0.49.4/src/airbyte_api/models/source_sendgrid.py +25 -0
- airbyte-api-0.49.4/src/airbyte_api/models/source_sftp_bulk.py +277 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_slack.py +2 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/sourcecreaterequest.py +2 -3
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/sourcepatchrequest.py +2 -3
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/sourceputrequest.py +1 -2
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/sourceresponse.py +1 -2
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/workspacecreaterequest.py +3 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/workspaceoauthcredentialsrequest.py +2 -2
- airbyte-api-0.49.4/src/airbyte_api/permissions.py +76 -0
- airbyte-api-0.49.4/src/airbyte_api/public.py +1707 -0
- airbyte-api-0.49.4/src/airbyte_api/public_connections.py +296 -0
- airbyte-api-0.49.4/src/airbyte_api/public_destinations.py +352 -0
- airbyte-api-0.49.4/src/airbyte_api/public_jobs.py +242 -0
- airbyte-api-0.49.4/src/airbyte_api/public_permissions.py +76 -0
- airbyte-api-0.49.4/src/airbyte_api/public_sources.py +412 -0
- airbyte-api-0.49.4/src/airbyte_api/public_streams.py +72 -0
- airbyte-api-0.49.4/src/airbyte_api/public_workspaces.py +353 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/sdk.py +28 -1
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/sdkconfiguration.py +3 -3
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/sources.py +6 -1
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/streams.py +3 -2
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/utils/utils.py +27 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/workspaces.py +4 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4/src/airbyte_api.egg-info}/PKG-INFO +120 -36
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api.egg-info/SOURCES.txt +17 -5
- airbyte-api-0.49.2/src/airbyte_api/api/__init__.py +0 -33
- 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.4}/LICENSE.md +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/setup.cfg +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/__init__.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/_hooks/types.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/api/canceljob.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/api/createconnection.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/api/createdestination.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/api/createjob.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/api/createorupdateworkspaceoauthcredentials.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/api/createsource.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/api/createworkspace.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/api/deleteconnection.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/api/deletedestination.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/api/deletesource.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/api/deleteworkspace.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/api/getconnection.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/api/getdestination.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/api/getjob.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/api/getsource.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/api/getworkspace.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/api/initiateoauth.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/api/listconnections.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/api/listdestinations.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/api/listsources.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/api/listworkspaces.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/api/patchconnection.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/api/patchdestination.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/api/patchsource.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/api/putdestination.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/api/putsource.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/api/updateworkspace.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/errors/__init__.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/errors/sdkerror.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/actortypeenum.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/airtable.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/amazon_ads.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/amazon_seller_partner.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/asana.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/bing_ads.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/connectionresponse.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/connectionscheduleresponse.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/connectionsresponse.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/connectionstatusenum.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/connectionsyncmodeenum.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/destination_astra.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/destination_aws_datalake.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/destination_bigquery.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/destination_clickhouse.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/destination_convex.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/destination_databricks.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/destination_dev_null.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/destination_duckdb.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/destination_dynamodb.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/destination_elasticsearch.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/destination_firestore.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/destination_gcs.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/destination_google_sheets.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/destination_langchain.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/destination_milvus.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/destination_mongodb.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/destination_pinecone.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/destination_pubsub.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/destination_qdrant.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/destination_redis.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/destination_s3.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/destination_s3_glue.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/destination_sftp_json.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/destination_teradata.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/destination_typesense.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/destination_vectara.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/destination_weaviate.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/destinationsresponse.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/facebook_marketing.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/geographyenum.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/geographyenumnodefault.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/github.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/gitlab.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/google_ads.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/google_analytics_data_api.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/google_drive.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/google_search_console.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/google_sheets.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/hubspot.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/instagram.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/intercom.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/jobcreaterequest.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/jobresponse.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/jobsresponse.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/jobstatusenum.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/jobtypeenum.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/lever_hiring.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/linkedin_ads.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/mailchimp.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/microsoft_onedrive.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/microsoft_sharepoint.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/microsoft_teams.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/monday.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/namespacedefinitionenum.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/namespacedefinitionenumnodefault.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/nonbreakingschemaupdatesbehaviorenum.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/nonbreakingschemaupdatesbehaviorenumnodefault.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/notion.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/pinterest.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/retently.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/salesforce.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/scheduletypeenum.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/scheduletypewithbasicenum.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/schemebasicauth.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/shopify.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/slack.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/smartsheets.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/snapchat_marketing.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/snowflake.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_aha.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_aircall.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_airtable.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_amazon_sqs.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_amplitude.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_apify_dataset.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_appfollow.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_asana.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_auth0.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_aws_cloudtrail.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_azure_table.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_bamboo_hr.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_bigquery.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_bing_ads.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_braintree.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_braze.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_cart.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_chargebee.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_chartmogul.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_clickhouse.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_clickup_api.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_clockify.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_close_com.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_coda.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_coin_api.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_coinmarketcap.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_configcat.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_confluence.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_convex.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_datascope.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_delighted.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_dixa.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_dockerhub.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_dremio.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_e2e_test_cloud.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_emailoctopus.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_exchange_rates.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_facebook_marketing.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_faker.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_fauna.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_file.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_freshcaller.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_freshdesk.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_freshsales.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_gainsight_px.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_gcs.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_getlago.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_github.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_gitlab.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_glassfrog.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_gnews.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_google_ads.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_google_analytics_data_api.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_google_analytics_v4_service_account_only.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_google_directory.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_google_drive.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_google_pagespeed_insights.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_google_search_console.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_google_webfonts.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_greenhouse.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_gridly.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_hubplanner.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_hubspot.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_insightly.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_instagram.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_instatus.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_intercom.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_ip2whois.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_jira.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_k6_cloud.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_klarna.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_klaviyo.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_kyve.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_launchdarkly.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_lemlist.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_lever_hiring.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_linkedin_ads.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_linkedin_pages.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_linnworks.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_lokalise.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_mailchimp.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_mailgun.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_mailjet_sms.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_marketo.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_metabase.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_microsoft_onedrive.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_microsoft_teams.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_mixpanel.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_monday.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_mongodb_internal_poc.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_my_hours.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_mysql.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_netsuite.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_nytimes.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_okta.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_omnisend.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_onesignal.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_oracle.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_orb.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_orbit.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_outbrain_amplify.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_outreach.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_paypal_transaction.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_paystack.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_pendo.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_persistiq.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_pexels_api.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_pinterest.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_pipedrive.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_pocket.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_pokeapi.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_polygon_stock_api.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_postgres.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_posthog.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_postmarkapp.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_prestashop.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_punk_api.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_pypi.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_qualaroo.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_railz.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_recharge.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_recreation.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_recruitee.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_recurly.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_redshift.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_retently.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_rki_covid.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_rss.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_salesforce.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_salesloft.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_sap_fieldglass.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_secoda.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_sendinblue.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_senseforce.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_sentry.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_sftp.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_shopify.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_shortio.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_smaily.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_smartengage.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_smartsheets.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_snapchat_marketing.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_snowflake.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_sonar_cloud.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_spacex_api.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_square.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_strava.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_stripe.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_survey_sparrow.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_surveymonkey.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_tempo.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_the_guardian_api.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_tiktok_marketing.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_trello.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_trustpilot.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_tvmaze_schedule.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_twilio.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_twilio_taskrouter.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_twitter.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_typeform.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_us_census.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_vantage.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_webflow.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_whisky_hunter.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_wikipedia_pageviews.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_woocommerce.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_xkcd.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_yandex_metrica.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_yotpo.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_youtube_analytics.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_zendesk_chat.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_zendesk_sell.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_zendesk_sunshine.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_zendesk_support.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_zendesk_talk.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_zenloop.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_zoho_crm.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/source_zoom.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/sourcesresponse.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/square.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/strava.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/streamconfiguration.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/streamconfigurations.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/streamproperties.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/surveymonkey.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/tiktok_marketing.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/typeform.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/workspaceresponse.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/workspacesresponse.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/workspaceupdaterequest.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/youtube_analytics.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/zendesk_chat.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/zendesk_sunshine.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/zendesk_support.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/models/zendesk_talk.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/utils/__init__.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api/utils/retries.py +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api.egg-info/dependency_links.txt +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/src/airbyte_api.egg-info/requires.txt +0 -0
- {airbyte-api-0.49.2 → airbyte-api-0.49.4}/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.4
|
|
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,47 @@ 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_permission](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#create_permission) - Create a permission
|
|
82
|
+
* [create_source](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#create_source) - Create a source
|
|
83
|
+
* [create_workspace](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#create_workspace) - Create a workspace
|
|
84
|
+
* [delete_connection](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#delete_connection) - Delete a Connection
|
|
85
|
+
* [delete_destination](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#delete_destination) - Delete a Destination
|
|
86
|
+
* [delete_source](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#delete_source) - Delete a Source
|
|
87
|
+
* [delete_workspace](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#delete_workspace) - Delete a Workspace
|
|
88
|
+
* [get_connection](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#get_connection) - Get Connection details
|
|
89
|
+
* [get_destination](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#get_destination) - Get Destination details
|
|
90
|
+
* [get_job](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#get_job) - Get Job status and details
|
|
91
|
+
* [get_source](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#get_source) - Get Source details
|
|
92
|
+
* [get_stream_properties](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#get_stream_properties) - Get stream properties
|
|
93
|
+
* [get_workspace](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#get_workspace) - Get Workspace details
|
|
94
|
+
* [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
|
|
95
|
+
* [list_connections](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#list_connections) - List connections
|
|
96
|
+
* [list_destinations](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#list_destinations) - List destinations
|
|
97
|
+
* [list_jobs](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#list_jobs) - List Jobs by sync type
|
|
98
|
+
* [list_sources](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#list_sources) - List sources
|
|
99
|
+
* [list_workspaces](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#list_workspaces) - List workspaces
|
|
100
|
+
* [patch_connection](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#patch_connection) - Update Connection details
|
|
101
|
+
* [patch_destination](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#patch_destination) - Update a Destination
|
|
102
|
+
* [patch_source](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#patch_source) - Update a Source
|
|
103
|
+
* [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
|
|
104
|
+
* [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
|
|
105
|
+
* [update_workspace](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/public/README.md#update_workspace) - Update a workspace
|
|
106
|
+
|
|
67
107
|
### [connections](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/connections/README.md)
|
|
68
108
|
|
|
69
109
|
* [create_connection](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/connections/README.md#create_connection) - Create a connection
|
|
@@ -72,6 +112,15 @@ Description: <div align="center">
|
|
|
72
112
|
* [list_connections](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/connections/README.md#list_connections) - List connections
|
|
73
113
|
* [patch_connection](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/connections/README.md#patch_connection) - Update Connection details
|
|
74
114
|
|
|
115
|
+
### [public_destinations](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicdestinations/README.md)
|
|
116
|
+
|
|
117
|
+
* [create_destination](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicdestinations/README.md#create_destination) - Create a destination
|
|
118
|
+
* [delete_destination](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicdestinations/README.md#delete_destination) - Delete a Destination
|
|
119
|
+
* [get_destination](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicdestinations/README.md#get_destination) - Get Destination details
|
|
120
|
+
* [list_destinations](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicdestinations/README.md#list_destinations) - List destinations
|
|
121
|
+
* [patch_destination](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicdestinations/README.md#patch_destination) - Update a Destination
|
|
122
|
+
* [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
|
|
123
|
+
|
|
75
124
|
### [destinations](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/destinations/README.md)
|
|
76
125
|
|
|
77
126
|
* [create_destination](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/destinations/README.md#create_destination) - Create a destination
|
|
@@ -81,6 +130,13 @@ Description: <div align="center">
|
|
|
81
130
|
* [patch_destination](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/destinations/README.md#patch_destination) - Update a Destination
|
|
82
131
|
* [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
132
|
|
|
133
|
+
### [public_jobs](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicjobs/README.md)
|
|
134
|
+
|
|
135
|
+
* [cancel_job](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicjobs/README.md#cancel_job) - Cancel a running Job
|
|
136
|
+
* [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
|
|
137
|
+
* [get_job](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicjobs/README.md#get_job) - Get Job status and details
|
|
138
|
+
* [list_jobs](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicjobs/README.md#list_jobs) - List Jobs by sync type
|
|
139
|
+
|
|
84
140
|
### [jobs](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/jobs/README.md)
|
|
85
141
|
|
|
86
142
|
* [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 +144,24 @@ Description: <div align="center">
|
|
|
88
144
|
* [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
145
|
* [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
146
|
|
|
147
|
+
### [public_permissions](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicpermissions/README.md)
|
|
148
|
+
|
|
149
|
+
* [create_permission](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicpermissions/README.md#create_permission) - Create a permission
|
|
150
|
+
|
|
151
|
+
### [permissions](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/permissions/README.md)
|
|
152
|
+
|
|
153
|
+
* [create_permission](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/permissions/README.md#create_permission) - Create a permission
|
|
154
|
+
|
|
155
|
+
### [public_sources](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicsources/README.md)
|
|
156
|
+
|
|
157
|
+
* [create_source](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicsources/README.md#create_source) - Create a source
|
|
158
|
+
* [delete_source](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicsources/README.md#delete_source) - Delete a Source
|
|
159
|
+
* [get_source](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicsources/README.md#get_source) - Get Source details
|
|
160
|
+
* [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
|
|
161
|
+
* [list_sources](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicsources/README.md#list_sources) - List sources
|
|
162
|
+
* [patch_source](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicsources/README.md#patch_source) - Update a Source
|
|
163
|
+
* [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
|
|
164
|
+
|
|
91
165
|
### [sources](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/sources/README.md)
|
|
92
166
|
|
|
93
167
|
* [create_source](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/sources/README.md#create_source) - Create a source
|
|
@@ -98,10 +172,23 @@ Description: <div align="center">
|
|
|
98
172
|
* [patch_source](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/sources/README.md#patch_source) - Update a Source
|
|
99
173
|
* [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
174
|
|
|
175
|
+
### [public_streams](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicstreams/README.md)
|
|
176
|
+
|
|
177
|
+
* [get_stream_properties](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicstreams/README.md#get_stream_properties) - Get stream properties
|
|
178
|
+
|
|
101
179
|
### [streams](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/streams/README.md)
|
|
102
180
|
|
|
103
181
|
* [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
182
|
|
|
183
|
+
### [public_workspaces](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicworkspaces/README.md)
|
|
184
|
+
|
|
185
|
+
* [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.
|
|
186
|
+
* [create_workspace](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicworkspaces/README.md#create_workspace) - Create a workspace
|
|
187
|
+
* [delete_workspace](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicworkspaces/README.md#delete_workspace) - Delete a Workspace
|
|
188
|
+
* [get_workspace](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicworkspaces/README.md#get_workspace) - Get Workspace details
|
|
189
|
+
* [list_workspaces](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicworkspaces/README.md#list_workspaces) - List workspaces
|
|
190
|
+
* [update_workspace](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/publicworkspaces/README.md#update_workspace) - Update a workspace
|
|
191
|
+
|
|
105
192
|
### [workspaces](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/workspaces/README.md)
|
|
106
193
|
|
|
107
194
|
* [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 +229,14 @@ Description: <div align="center">
|
|
|
142
229
|
),
|
|
143
230
|
)
|
|
144
231
|
|
|
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
232
|
res = None
|
|
152
233
|
try:
|
|
153
|
-
res = s.
|
|
234
|
+
res = s.public_connections.create_connection(request=models.ConnectionCreateRequest(
|
|
235
|
+
destination_id='e478de0d-a3a0-475c-b019-25f7dd29e281',
|
|
236
|
+
source_id='95e66a59-8045-4307-9678-63bc3c9b8c93',
|
|
237
|
+
name='Postgres-to-Bigquery',
|
|
238
|
+
namespace_format='${SOURCE_NAMESPACE}',
|
|
239
|
+
))
|
|
154
240
|
except errors.SDKError as e:
|
|
155
241
|
# handle exception
|
|
156
242
|
raise(e)
|
|
@@ -191,13 +277,12 @@ Description: <div align="center">
|
|
|
191
277
|
),
|
|
192
278
|
)
|
|
193
279
|
|
|
194
|
-
|
|
195
|
-
destination_id='
|
|
196
|
-
source_id='
|
|
280
|
+
res = s.public_connections.create_connection(request=models.ConnectionCreateRequest(
|
|
281
|
+
destination_id='e478de0d-a3a0-475c-b019-25f7dd29e281',
|
|
282
|
+
source_id='95e66a59-8045-4307-9678-63bc3c9b8c93',
|
|
283
|
+
name='Postgres-to-Bigquery',
|
|
197
284
|
namespace_format='${SOURCE_NAMESPACE}',
|
|
198
|
-
)
|
|
199
|
-
|
|
200
|
-
res = s.connections.create_connection(req)
|
|
285
|
+
))
|
|
201
286
|
|
|
202
287
|
if res.connection_response is not None:
|
|
203
288
|
# handle response
|
|
@@ -223,13 +308,12 @@ Description: <div align="center">
|
|
|
223
308
|
),
|
|
224
309
|
)
|
|
225
310
|
|
|
226
|
-
|
|
227
|
-
destination_id='
|
|
228
|
-
source_id='
|
|
311
|
+
res = s.public_connections.create_connection(request=models.ConnectionCreateRequest(
|
|
312
|
+
destination_id='e478de0d-a3a0-475c-b019-25f7dd29e281',
|
|
313
|
+
source_id='95e66a59-8045-4307-9678-63bc3c9b8c93',
|
|
314
|
+
name='Postgres-to-Bigquery',
|
|
229
315
|
namespace_format='${SOURCE_NAMESPACE}',
|
|
230
|
-
)
|
|
231
|
-
|
|
232
|
-
res = s.connections.create_connection(req)
|
|
316
|
+
))
|
|
233
317
|
|
|
234
318
|
if res.connection_response is not None:
|
|
235
319
|
# handle response
|
|
@@ -265,10 +349,11 @@ Description: <div align="center">
|
|
|
265
349
|
|
|
266
350
|
This SDK supports the following security schemes globally:
|
|
267
351
|
|
|
268
|
-
| Name
|
|
269
|
-
|
|
|
270
|
-
| `basic_auth`
|
|
271
|
-
| `bearer_auth`
|
|
352
|
+
| Name | Type | Scheme |
|
|
353
|
+
| -------------------- | -------------------- | -------------------- |
|
|
354
|
+
| `basic_auth` | http | HTTP Basic |
|
|
355
|
+
| `bearer_auth` | http | HTTP Bearer |
|
|
356
|
+
| `client_credentials` | oauth2 | OAuth2 token |
|
|
272
357
|
|
|
273
358
|
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
359
|
```python
|
|
@@ -284,13 +369,12 @@ Description: <div align="center">
|
|
|
284
369
|
),
|
|
285
370
|
)
|
|
286
371
|
|
|
287
|
-
|
|
288
|
-
destination_id='
|
|
289
|
-
source_id='
|
|
372
|
+
res = s.public_connections.create_connection(request=models.ConnectionCreateRequest(
|
|
373
|
+
destination_id='e478de0d-a3a0-475c-b019-25f7dd29e281',
|
|
374
|
+
source_id='95e66a59-8045-4307-9678-63bc3c9b8c93',
|
|
375
|
+
name='Postgres-to-Bigquery',
|
|
290
376
|
namespace_format='${SOURCE_NAMESPACE}',
|
|
291
|
-
)
|
|
292
|
-
|
|
293
|
-
res = s.connections.create_connection(req)
|
|
377
|
+
))
|
|
294
378
|
|
|
295
379
|
if res.connection_response is not None:
|
|
296
380
|
# 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,47 @@ 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_permission](docs/sdks/public/README.md#create_permission) - Create a permission
|
|
75
|
+
* [create_source](docs/sdks/public/README.md#create_source) - Create a source
|
|
76
|
+
* [create_workspace](docs/sdks/public/README.md#create_workspace) - Create a workspace
|
|
77
|
+
* [delete_connection](docs/sdks/public/README.md#delete_connection) - Delete a Connection
|
|
78
|
+
* [delete_destination](docs/sdks/public/README.md#delete_destination) - Delete a Destination
|
|
79
|
+
* [delete_source](docs/sdks/public/README.md#delete_source) - Delete a Source
|
|
80
|
+
* [delete_workspace](docs/sdks/public/README.md#delete_workspace) - Delete a Workspace
|
|
81
|
+
* [get_connection](docs/sdks/public/README.md#get_connection) - Get Connection details
|
|
82
|
+
* [get_destination](docs/sdks/public/README.md#get_destination) - Get Destination details
|
|
83
|
+
* [get_job](docs/sdks/public/README.md#get_job) - Get Job status and details
|
|
84
|
+
* [get_source](docs/sdks/public/README.md#get_source) - Get Source details
|
|
85
|
+
* [get_stream_properties](docs/sdks/public/README.md#get_stream_properties) - Get stream properties
|
|
86
|
+
* [get_workspace](docs/sdks/public/README.md#get_workspace) - Get Workspace details
|
|
87
|
+
* [initiate_o_auth](docs/sdks/public/README.md#initiate_o_auth) - Initiate OAuth for a source
|
|
88
|
+
* [list_connections](docs/sdks/public/README.md#list_connections) - List connections
|
|
89
|
+
* [list_destinations](docs/sdks/public/README.md#list_destinations) - List destinations
|
|
90
|
+
* [list_jobs](docs/sdks/public/README.md#list_jobs) - List Jobs by sync type
|
|
91
|
+
* [list_sources](docs/sdks/public/README.md#list_sources) - List sources
|
|
92
|
+
* [list_workspaces](docs/sdks/public/README.md#list_workspaces) - List workspaces
|
|
93
|
+
* [patch_connection](docs/sdks/public/README.md#patch_connection) - Update Connection details
|
|
94
|
+
* [patch_destination](docs/sdks/public/README.md#patch_destination) - Update a Destination
|
|
95
|
+
* [patch_source](docs/sdks/public/README.md#patch_source) - Update a Source
|
|
96
|
+
* [put_destination](docs/sdks/public/README.md#put_destination) - Update a Destination and fully overwrite it
|
|
97
|
+
* [put_source](docs/sdks/public/README.md#put_source) - Update a Source and fully overwrite it
|
|
98
|
+
* [update_workspace](docs/sdks/public/README.md#update_workspace) - Update a workspace
|
|
99
|
+
|
|
60
100
|
### [connections](docs/sdks/connections/README.md)
|
|
61
101
|
|
|
62
102
|
* [create_connection](docs/sdks/connections/README.md#create_connection) - Create a connection
|
|
@@ -65,6 +105,15 @@ if res.connection_response is not None:
|
|
|
65
105
|
* [list_connections](docs/sdks/connections/README.md#list_connections) - List connections
|
|
66
106
|
* [patch_connection](docs/sdks/connections/README.md#patch_connection) - Update Connection details
|
|
67
107
|
|
|
108
|
+
### [public_destinations](docs/sdks/publicdestinations/README.md)
|
|
109
|
+
|
|
110
|
+
* [create_destination](docs/sdks/publicdestinations/README.md#create_destination) - Create a destination
|
|
111
|
+
* [delete_destination](docs/sdks/publicdestinations/README.md#delete_destination) - Delete a Destination
|
|
112
|
+
* [get_destination](docs/sdks/publicdestinations/README.md#get_destination) - Get Destination details
|
|
113
|
+
* [list_destinations](docs/sdks/publicdestinations/README.md#list_destinations) - List destinations
|
|
114
|
+
* [patch_destination](docs/sdks/publicdestinations/README.md#patch_destination) - Update a Destination
|
|
115
|
+
* [put_destination](docs/sdks/publicdestinations/README.md#put_destination) - Update a Destination and fully overwrite it
|
|
116
|
+
|
|
68
117
|
### [destinations](docs/sdks/destinations/README.md)
|
|
69
118
|
|
|
70
119
|
* [create_destination](docs/sdks/destinations/README.md#create_destination) - Create a destination
|
|
@@ -74,6 +123,13 @@ if res.connection_response is not None:
|
|
|
74
123
|
* [patch_destination](docs/sdks/destinations/README.md#patch_destination) - Update a Destination
|
|
75
124
|
* [put_destination](docs/sdks/destinations/README.md#put_destination) - Update a Destination and fully overwrite it
|
|
76
125
|
|
|
126
|
+
### [public_jobs](docs/sdks/publicjobs/README.md)
|
|
127
|
+
|
|
128
|
+
* [cancel_job](docs/sdks/publicjobs/README.md#cancel_job) - Cancel a running Job
|
|
129
|
+
* [create_job](docs/sdks/publicjobs/README.md#create_job) - Trigger a sync or reset job of a connection
|
|
130
|
+
* [get_job](docs/sdks/publicjobs/README.md#get_job) - Get Job status and details
|
|
131
|
+
* [list_jobs](docs/sdks/publicjobs/README.md#list_jobs) - List Jobs by sync type
|
|
132
|
+
|
|
77
133
|
### [jobs](docs/sdks/jobs/README.md)
|
|
78
134
|
|
|
79
135
|
* [cancel_job](docs/sdks/jobs/README.md#cancel_job) - Cancel a running Job
|
|
@@ -81,6 +137,24 @@ if res.connection_response is not None:
|
|
|
81
137
|
* [get_job](docs/sdks/jobs/README.md#get_job) - Get Job status and details
|
|
82
138
|
* [list_jobs](docs/sdks/jobs/README.md#list_jobs) - List Jobs by sync type
|
|
83
139
|
|
|
140
|
+
### [public_permissions](docs/sdks/publicpermissions/README.md)
|
|
141
|
+
|
|
142
|
+
* [create_permission](docs/sdks/publicpermissions/README.md#create_permission) - Create a permission
|
|
143
|
+
|
|
144
|
+
### [permissions](docs/sdks/permissions/README.md)
|
|
145
|
+
|
|
146
|
+
* [create_permission](docs/sdks/permissions/README.md#create_permission) - Create a permission
|
|
147
|
+
|
|
148
|
+
### [public_sources](docs/sdks/publicsources/README.md)
|
|
149
|
+
|
|
150
|
+
* [create_source](docs/sdks/publicsources/README.md#create_source) - Create a source
|
|
151
|
+
* [delete_source](docs/sdks/publicsources/README.md#delete_source) - Delete a Source
|
|
152
|
+
* [get_source](docs/sdks/publicsources/README.md#get_source) - Get Source details
|
|
153
|
+
* [initiate_o_auth](docs/sdks/publicsources/README.md#initiate_o_auth) - Initiate OAuth for a source
|
|
154
|
+
* [list_sources](docs/sdks/publicsources/README.md#list_sources) - List sources
|
|
155
|
+
* [patch_source](docs/sdks/publicsources/README.md#patch_source) - Update a Source
|
|
156
|
+
* [put_source](docs/sdks/publicsources/README.md#put_source) - Update a Source and fully overwrite it
|
|
157
|
+
|
|
84
158
|
### [sources](docs/sdks/sources/README.md)
|
|
85
159
|
|
|
86
160
|
* [create_source](docs/sdks/sources/README.md#create_source) - Create a source
|
|
@@ -91,10 +165,23 @@ if res.connection_response is not None:
|
|
|
91
165
|
* [patch_source](docs/sdks/sources/README.md#patch_source) - Update a Source
|
|
92
166
|
* [put_source](docs/sdks/sources/README.md#put_source) - Update a Source and fully overwrite it
|
|
93
167
|
|
|
168
|
+
### [public_streams](docs/sdks/publicstreams/README.md)
|
|
169
|
+
|
|
170
|
+
* [get_stream_properties](docs/sdks/publicstreams/README.md#get_stream_properties) - Get stream properties
|
|
171
|
+
|
|
94
172
|
### [streams](docs/sdks/streams/README.md)
|
|
95
173
|
|
|
96
174
|
* [get_stream_properties](docs/sdks/streams/README.md#get_stream_properties) - Get stream properties
|
|
97
175
|
|
|
176
|
+
### [public_workspaces](docs/sdks/publicworkspaces/README.md)
|
|
177
|
+
|
|
178
|
+
* [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.
|
|
179
|
+
* [create_workspace](docs/sdks/publicworkspaces/README.md#create_workspace) - Create a workspace
|
|
180
|
+
* [delete_workspace](docs/sdks/publicworkspaces/README.md#delete_workspace) - Delete a Workspace
|
|
181
|
+
* [get_workspace](docs/sdks/publicworkspaces/README.md#get_workspace) - Get Workspace details
|
|
182
|
+
* [list_workspaces](docs/sdks/publicworkspaces/README.md#list_workspaces) - List workspaces
|
|
183
|
+
* [update_workspace](docs/sdks/publicworkspaces/README.md#update_workspace) - Update a workspace
|
|
184
|
+
|
|
98
185
|
### [workspaces](docs/sdks/workspaces/README.md)
|
|
99
186
|
|
|
100
187
|
* [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 +222,14 @@ s = airbyte_api.AirbyteAPI(
|
|
|
135
222
|
),
|
|
136
223
|
)
|
|
137
224
|
|
|
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
225
|
res = None
|
|
145
226
|
try:
|
|
146
|
-
res = s.
|
|
227
|
+
res = s.public_connections.create_connection(request=models.ConnectionCreateRequest(
|
|
228
|
+
destination_id='e478de0d-a3a0-475c-b019-25f7dd29e281',
|
|
229
|
+
source_id='95e66a59-8045-4307-9678-63bc3c9b8c93',
|
|
230
|
+
name='Postgres-to-Bigquery',
|
|
231
|
+
namespace_format='${SOURCE_NAMESPACE}',
|
|
232
|
+
))
|
|
147
233
|
except errors.SDKError as e:
|
|
148
234
|
# handle exception
|
|
149
235
|
raise(e)
|
|
@@ -184,13 +270,12 @@ s = airbyte_api.AirbyteAPI(
|
|
|
184
270
|
),
|
|
185
271
|
)
|
|
186
272
|
|
|
187
|
-
|
|
188
|
-
destination_id='
|
|
189
|
-
source_id='
|
|
273
|
+
res = s.public_connections.create_connection(request=models.ConnectionCreateRequest(
|
|
274
|
+
destination_id='e478de0d-a3a0-475c-b019-25f7dd29e281',
|
|
275
|
+
source_id='95e66a59-8045-4307-9678-63bc3c9b8c93',
|
|
276
|
+
name='Postgres-to-Bigquery',
|
|
190
277
|
namespace_format='${SOURCE_NAMESPACE}',
|
|
191
|
-
)
|
|
192
|
-
|
|
193
|
-
res = s.connections.create_connection(req)
|
|
278
|
+
))
|
|
194
279
|
|
|
195
280
|
if res.connection_response is not None:
|
|
196
281
|
# handle response
|
|
@@ -216,13 +301,12 @@ s = airbyte_api.AirbyteAPI(
|
|
|
216
301
|
),
|
|
217
302
|
)
|
|
218
303
|
|
|
219
|
-
|
|
220
|
-
destination_id='
|
|
221
|
-
source_id='
|
|
304
|
+
res = s.public_connections.create_connection(request=models.ConnectionCreateRequest(
|
|
305
|
+
destination_id='e478de0d-a3a0-475c-b019-25f7dd29e281',
|
|
306
|
+
source_id='95e66a59-8045-4307-9678-63bc3c9b8c93',
|
|
307
|
+
name='Postgres-to-Bigquery',
|
|
222
308
|
namespace_format='${SOURCE_NAMESPACE}',
|
|
223
|
-
)
|
|
224
|
-
|
|
225
|
-
res = s.connections.create_connection(req)
|
|
309
|
+
))
|
|
226
310
|
|
|
227
311
|
if res.connection_response is not None:
|
|
228
312
|
# handle response
|
|
@@ -258,10 +342,11 @@ s = airbyte_api.AirbyteAPI(client=http_client)
|
|
|
258
342
|
|
|
259
343
|
This SDK supports the following security schemes globally:
|
|
260
344
|
|
|
261
|
-
| Name
|
|
262
|
-
|
|
|
263
|
-
| `basic_auth`
|
|
264
|
-
| `bearer_auth`
|
|
345
|
+
| Name | Type | Scheme |
|
|
346
|
+
| -------------------- | -------------------- | -------------------- |
|
|
347
|
+
| `basic_auth` | http | HTTP Basic |
|
|
348
|
+
| `bearer_auth` | http | HTTP Bearer |
|
|
349
|
+
| `client_credentials` | oauth2 | OAuth2 token |
|
|
265
350
|
|
|
266
351
|
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
352
|
```python
|
|
@@ -277,13 +362,12 @@ s = airbyte_api.AirbyteAPI(
|
|
|
277
362
|
),
|
|
278
363
|
)
|
|
279
364
|
|
|
280
|
-
|
|
281
|
-
destination_id='
|
|
282
|
-
source_id='
|
|
365
|
+
res = s.public_connections.create_connection(request=models.ConnectionCreateRequest(
|
|
366
|
+
destination_id='e478de0d-a3a0-475c-b019-25f7dd29e281',
|
|
367
|
+
source_id='95e66a59-8045-4307-9678-63bc3c9b8c93',
|
|
368
|
+
name='Postgres-to-Bigquery',
|
|
283
369
|
namespace_format='${SOURCE_NAMESPACE}',
|
|
284
|
-
)
|
|
285
|
-
|
|
286
|
-
res = s.connections.create_connection(req)
|
|
370
|
+
))
|
|
287
371
|
|
|
288
372
|
if res.connection_response is not None:
|
|
289
373
|
# 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)
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from .canceljob import *
|
|
4
|
+
from .createconnection import *
|
|
5
|
+
from .createdestination import *
|
|
6
|
+
from .createjob import *
|
|
7
|
+
from .createorupdateworkspaceoauthcredentials import *
|
|
8
|
+
from .createpermission import *
|
|
9
|
+
from .createsource import *
|
|
10
|
+
from .createworkspace import *
|
|
11
|
+
from .deleteconnection import *
|
|
12
|
+
from .deletedestination import *
|
|
13
|
+
from .deletesource import *
|
|
14
|
+
from .deleteworkspace import *
|
|
15
|
+
from .getconnection import *
|
|
16
|
+
from .getdestination import *
|
|
17
|
+
from .getjob import *
|
|
18
|
+
from .getsource import *
|
|
19
|
+
from .getstreamproperties import *
|
|
20
|
+
from .getworkspace import *
|
|
21
|
+
from .initiateoauth import *
|
|
22
|
+
from .listconnections import *
|
|
23
|
+
from .listdestinations import *
|
|
24
|
+
from .listjobs import *
|
|
25
|
+
from .listsources import *
|
|
26
|
+
from .listworkspaces import *
|
|
27
|
+
from .patchconnection import *
|
|
28
|
+
from .patchdestination import *
|
|
29
|
+
from .patchsource import *
|
|
30
|
+
from .putdestination import *
|
|
31
|
+
from .putsource import *
|
|
32
|
+
from .updateworkspace import *
|
|
33
|
+
|
|
34
|
+
__all__ = ["CancelJobRequest","CancelJobResponse","CreateConnectionResponse","CreateDestinationResponse","CreateJobResponse","CreateOrUpdateWorkspaceOAuthCredentialsRequest","CreateOrUpdateWorkspaceOAuthCredentialsResponse","CreatePermissionResponse","CreateSourceResponse","CreateWorkspaceResponse","DeleteConnectionRequest","DeleteConnectionResponse","DeleteDestinationRequest","DeleteDestinationResponse","DeleteSourceRequest","DeleteSourceResponse","DeleteWorkspaceRequest","DeleteWorkspaceResponse","GetConnectionRequest","GetConnectionResponse","GetDestinationRequest","GetDestinationResponse","GetJobRequest","GetJobResponse","GetSourceRequest","GetSourceResponse","GetStreamPropertiesRequest","GetStreamPropertiesResponse","GetWorkspaceRequest","GetWorkspaceResponse","InitiateOAuthResponse","ListConnectionsRequest","ListConnectionsResponse","ListDestinationsRequest","ListDestinationsResponse","ListJobsRequest","ListJobsResponse","ListSourcesRequest","ListSourcesResponse","ListWorkspacesRequest","ListWorkspacesResponse","PatchConnectionRequest","PatchConnectionResponse","PatchDestinationRequest","PatchDestinationResponse","PatchSourceRequest","PatchSourceResponse","PutDestinationRequest","PutDestinationResponse","PutSourceRequest","PutSourceResponse","UpdateWorkspaceRequest","UpdateWorkspaceResponse"]
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
import dataclasses
|
|
5
|
+
import requests as requests_http
|
|
6
|
+
from ..models import permissionresponse as models_permissionresponse
|
|
7
|
+
from typing import Optional
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
@dataclasses.dataclass
|
|
11
|
+
class CreatePermissionResponse:
|
|
12
|
+
content_type: str = dataclasses.field()
|
|
13
|
+
r"""HTTP response content type for this operation"""
|
|
14
|
+
status_code: int = dataclasses.field()
|
|
15
|
+
r"""HTTP response status code for this operation"""
|
|
16
|
+
raw_response: requests_http.Response = dataclasses.field()
|
|
17
|
+
r"""Raw HTTP response; suitable for custom response parsing"""
|
|
18
|
+
permission_response: Optional[models_permissionresponse.PermissionResponse] = dataclasses.field(default=None)
|
|
19
|
+
r"""Successful operation"""
|
|
20
|
+
|
|
21
|
+
|
|
@@ -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
|
|