Skip to content

Commit 3ff995a

Browse files
akito19chezou
authored andcommitted
Renew Treasrue Data doc URL
1 parent 83fffcd commit 3ff995a

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ Listing jobs
6464

6565
Treasure Data API key will be read from environment variable ``TD_API_KEY``\ , if none is given via ``apikey=`` argument passed to ``tdclient.Client``.
6666

67-
Treasure Data API endpoint ``https://api.treasuredata.com`` is used by default. You can override this with environment variable ``TD_API_SERVER``\ , which in turn can be overridden via ``endpoint=`` argument passed to ``tdclient.Client``. List of available Treasure Data sites and corresponding API endpoints can be found `here <https://tddocs.atlassian.net/wiki/spaces/PD/pages/1085143/Sites+and+Endpoints>`_.
67+
Treasure Data API endpoint ``https://api.treasuredata.com`` is used by default. You can override this with environment variable ``TD_API_SERVER``\ , which in turn can be overridden via ``endpoint=`` argument passed to ``tdclient.Client``. List of available Treasure Data sites and corresponding API endpoints can be found `here <https://docs.treasuredata.com/display/PD/Sites+and+Endpoints>`_.
6868

6969
.. code-block:: python
7070

tdclient/client.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -676,13 +676,13 @@ def create_schedule(
676676
- cron (str, optional):
677677
Schedule of the query.
678678
{``"@daily"``, ``"@hourly"``, ``"10 * * * *"`` (custom cron)}
679-
See also: https://tddocs.atlassian.net/wiki/spaces/PD/pages/1084633/Scheduling+Jobs+Using+TD+Console
679+
See also: https://docs.treasuredata.com/display/PD/Scheduling+Jobs+Using+TD+Console
680680
- delay (int, optional):
681681
A delay ensures all buffered events are imported
682682
before running the query. Default: 0
683683
- query (str):
684684
Is a language used to retrieve, insert, update and modify
685-
data. See also: https://tddocs.atlassian.net/wiki/spaces/PD/pages/1084438/SQL+Examples+of+Scheduled+Queries
685+
data. See also: https://docs.treasuredata.com/display/PD/SQL+Examples+of+Scheduled+Queries
686686
- priority (int, optional):
687687
Priority of the query.
688688
Range is from -2 (very low) to 2 (very high). Default: 0
@@ -744,13 +744,13 @@ def update_schedule(self, name: str, params: ScheduleParams | None = None) -> No
744744
- cron (str, optional):
745745
Schedule of the query.
746746
{``"@daily"``, ``"@hourly"``, ``"10 * * * *"`` (custom cron)}
747-
See also: https://tddocs.atlassian.net/wiki/spaces/PD/pages/1084633/Scheduling+Jobs+Using+TD+Console
747+
See also: https://docs.treasuredata.com/display/PD/Scheduling+Jobs+Using+TD+Console
748748
- delay (int, optional):
749749
A delay ensures all buffered events are imported
750750
before running the query. Default: 0
751751
- query (str):
752752
Is a language used to retrieve, insert, update and modify
753-
data. See also: https://tddocs.atlassian.net/wiki/spaces/PD/pages/1084438/SQL+Examples+of+Scheduled+Queries
753+
data. See also: https://docs.treasuredata.com/display/PD/SQL+Examples+of+Scheduled+Queries
754754
- priority (int, optional):
755755
Priority of the query.
756756
Range is from -2 (very low) to 2 (very high). Default: 0

tdclient/connector_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ def connector_create(self, name, database, table, job, params=None):
196196
- cron (str, optional):
197197
Schedule of the query.
198198
{``"@daily"``, ``"@hourly"``, ``"10 * * * *"`` (custom cron)}
199-
See also: https://tddocs.atlassian.net/wiki/spaces/PD/pages/1084633/Scheduling+Jobs+Using+TD+Console
199+
See also: https://docs.treasuredata.com/display/PD/Scheduling+Jobs+Using+TD+Console
200200
- delay (int, optional):
201201
A delay ensures all buffered events are imported
202202
before running the query. Default: 0

tdclient/schedule_api.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,13 +55,13 @@ def create_schedule(
5555
- cron (str, optional):
5656
Schedule of the query.
5757
{``"@daily"``, ``"@hourly"``, ``"10 * * * *"`` (custom cron)}
58-
See also: https://tddocs.atlassian.net/wiki/spaces/PD/pages/1084633/Scheduling+Jobs+Using+TD+Console
58+
See also: https://docs.treasuredata.com/display/PD/Scheduling+Jobs+Using+TD+Console
5959
- delay (int, optional):
6060
A delay ensures all buffered events are imported
6161
before running the query. Default: 0
6262
- query (str):
6363
Is a language used to retrieve, insert, update and modify
64-
data. See also: https://tddocs.atlassian.net/wiki/spaces/PD/pages/1084438/SQL+Examples+of+Scheduled+Queries
64+
data. See also: https://docs.treasuredata.com/display/PD/SQL+Examples+of+Scheduled+Queries
6565
- priority (int, optional):
6666
Priority of the query.
6767
Range is from -2 (very low) to 2 (very high). Default: 0
@@ -139,13 +139,13 @@ def update_schedule(
139139
- cron (str, optional):
140140
Schedule of the query.
141141
{``"@daily"``, ``"@hourly"``, ``"10 * * * *"`` (custom cron)}
142-
See also: https://tddocs.atlassian.net/wiki/spaces/PD/pages/1084633/Scheduling+Jobs+Using+TD+Console
142+
See also: https://docs.treasuredata.com/display/PD/Schedling+Jobs+Using+TD+Console
143143
- delay (int, optional):
144144
A delay ensures all buffered events are imported
145145
before running the query. Default: 0
146146
- query (str):
147147
Is a language used to retrieve, insert, update and modify
148-
data. See also: https://tddocs.atlassian.net/wiki/spaces/PD/pages/1084438/SQL+Examples+of+Scheduled+Queries
148+
data. See also: https://docs.treasuredata.com/display/PD/SQL+Examples+of+Scheduled+Queries
149149
- priority (int, optional):
150150
Priority of the query.
151151
Range is from -2 (very low) to 2 (very high). Default: 0

0 commit comments

Comments
 (0)