-
Notifications
You must be signed in to change notification settings - Fork 1
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
add file for parameterized api calls #1
base: main
Are you sure you want to change the base?
Conversation
credential_id: cred2 | ||
remote_host_id: db2 | ||
syncs: | ||
- source: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this section needs to be indented
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
either way is valid, I believe.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Huh, gave it whirl - it's valid yaml.
Stylistically I prefer the indentation as it makes it clear the list is a child of syncs.
sync_type: Dbsync | ||
is_outbound: False | ||
source: | ||
credential_id: cred1 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@mmatkinson can we make these numbers? credential_id
and remote_host_id
don't accept strings.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is there a way to force them to be numbers in the yml?
sync_type: Dbsync | ||
is_outbound: False | ||
source: | ||
credential_id: cred1 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
credential_id: cred1 | |
credential_id: 101 |
is_outbound: False | ||
source: | ||
credential_id: cred1 | ||
remote_host_id: db1 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remote_host_id: db1 | |
remote_host_id: 201 |
credential_id: cred1 | ||
remote_host_id: db1 | ||
destination: | ||
credential_id: cred2 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
credential_id: cred2 | |
credential_id: 102 |
remote_host_id: db1 | ||
destination: | ||
credential_id: cred2 | ||
remote_host_id: db2 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remote_host_id: db2 | |
remote_host_id: 202 |
We've changed the default branch to |
No description provided.