Skip to content

Commit

Permalink
Cahnged aws_secret_name to credentials_secret in `sharepoint_to_redsh…
Browse files Browse the repository at this point in the history
…ift_spectrum`
  • Loading branch information
marcinpurtak authored Aug 22, 2024
1 parent 78f6f98 commit 334d5e9
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def sharepoint_to_redshift_spectrum( # noqa: PLR0913
sep: str = ",",
description: str | None = None,
aws_config_key: str | None = None,
aws_secret_name: str | None = None,
credentials_secret: str | None = None,
sheet_name: str | list[str | int] | int | None = None,
columns: str | list[str] | list[int] | None = None,
na_values: list[str] | None = None,
Expand Down Expand Up @@ -74,7 +74,7 @@ def sharepoint_to_redshift_spectrum( # noqa: PLR0913
None.
aws_config_key (str, optional): The key in the viadot config holding relevant
credentials. Defaults to None.
aws_secret_name (str, optional): The name of a secret block in Prefect
credentials_secret (str, optional): The name of a secret block in Prefect
that stores AWS credentials. Defaults to None.
sheet_name (str | list | int, optional): Strings are used for sheet names.
Integers are used in zero-indexed sheet positions (chart sheets do not count
Expand Down Expand Up @@ -116,5 +116,5 @@ def sharepoint_to_redshift_spectrum( # noqa: PLR0913
sep=sep,
description=description,
config_key=aws_config_key,
aws_secret_name=aws_secret_name,
credentials_secret=credentials_secret,
)

0 comments on commit 334d5e9

Please sign in to comment.