Skip to content

Commit

Permalink
Merge pull request #120 from MeltanoLabs/update_descriptions
Browse files Browse the repository at this point in the history
chore: update setting descriptions
  • Loading branch information
pnadolny13 authored Apr 10, 2023
2 parents 8553d32 + f9f0416 commit f9d7178
Showing 1 changed file with 26 additions and 6 deletions.
32 changes: 26 additions & 6 deletions tap_google_analytics/tap.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,11 @@ class TapGoogleAnalytics(Tap):
th.Property(
"start_date",
th.DateTimeType,
description="The earliest record date to sync",
description=(
"This property determines how much historical data will be extracted."
"Please be aware that the larger the time period and amount of data, "
"the longer the initial extraction can be expected to take."
),
required=True,
),
th.Property(
Expand All @@ -52,22 +56,38 @@ class TapGoogleAnalytics(Tap):
th.Property(
"access_token",
th.StringType,
description="Google Analytics Access Token",
description=(
"Google Analytics Access Token. See "
"https://developers.google.com/analytics/devguides/reporting/"
"core/v4/authorization#OAuth2Authorizing."
),
),
th.Property(
"refresh_token",
th.StringType,
description="Google Analytics Refresh Token",
description=(
"Google Analytics Refresh Token. See "
"https://developers.google.com/analytics/devguides/reporting/"
"core/v4/authorization#OAuth2Authorizing."
),
),
th.Property(
"client_id",
th.StringType,
description="Google Analytics Client ID",
description=(
"Google Analytics Client ID. See "
"https://developers.google.com/analytics/devguides/reporting/"
"core/v4/authorization#OAuth2Authorizing."
),
),
th.Property(
"client_secret",
th.StringType,
description="Google Analytics Client Secret",
description=(
"Google Analytics Client Secret. See "
"https://developers.google.com/analytics/devguides/reporting/"
"core/v4/authorization#OAuth2Authorizing."
),
),
),
description="Google Analytics OAuth Credentials",
Expand All @@ -81,7 +101,7 @@ class TapGoogleAnalytics(Tap):
th.Property(
"end_date",
th.StringType,
description="The last record date to sync",
description="Date up to when historical data will be extracted.",
),
).to_dict()

Expand Down

0 comments on commit f9d7178

Please sign in to comment.