Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(source-apify-dataset): add option to specify dataset by its name #44857

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ spec:
type: object
required:
- token
- dataset_id
properties:
token:
type: string
Expand Down Expand Up @@ -39,6 +38,25 @@ spec:
for more information.
examples:
- rHuMdwm6xCFt6WiGU
username:
type: string
title: Username
description: >-
Username of the owner of the dataset collection. In Apify Console, you can find your username in the
<a href="https://console.apify.com/settings/account">Settings section under the Account tab</a>
after you login.
examples:
- satoshi_nakamoto
dataset_name:
type: string
title: Dataset Name
description: >-
Unique name of the dataset you would like to load to Airbyte. In Apify Console, you can view your datasets
in the <a href="https://console.apify.com/storage/datasets">Storage section under the Datasets tab</a>
after you login. See the <a href="https://docs.apify.com/platform/storage/dataset">Apify Docs</a> for more
information. If both `dataset_id` and `dataset_name` are provided, `dataset_name` will take precedence.
examples:
- my-unique-dataset-name
additionalProperties: true

definitions:
Expand Down
Loading