You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/models/AnalyticsQueryExecutionRequest.ts
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -29,19 +29,19 @@ import { mapValues } from '../runtime';
29
29
*/
30
30
exportinterfaceAnalyticsQueryExecutionRequest{
31
31
/**
32
-
* Optional. Active SFTP Dispatch connection settings ID (dispatch settings ID) associated with the target account. Only required if the Analytics query result file is scheduled for delivery to a remote SFTP server.
32
+
* Optional. ID of the active SFTP configuration to use (associated with the target account). This is only required if the result file is scheduled for delivery to a remote SFTP server.
33
33
* @type {number}
34
34
* @memberof AnalyticsQueryExecutionRequest
35
35
*/
36
36
sftpDispatchSettingsId?: number;
37
37
/**
38
-
* Optional. Renaming pattern for Analytics query result file (may be used when Analytics query results file is scheduled for SFTP delivery). Pattern may look like Latin alphabet string with some timestamp placeholder: "transaction_report_{YYYMMDD_hhmmss}". Supported placeholder formats are just these: DDMMYY, MMDDYY, YYYYMMDD, DD_MM_YY, DD-MM-YY, YYYY-MM-DD, YYYY_MM_DD, YYYYMMDD_hhmmss, YYYY-MM-DD_hh-mm-ss
38
+
* Optional. Renaming pattern used for the result file during SFTP delivery. You can use a combination of fixed Latin text and timestamp variables (e.g., "transaction_report_{YYYMMDD_hhmmss}"). Supported variable formats: DDMMYY, MMDDYY, YYYYMMDD, DD_MM_YY, DD-MM-YY, YYYY-MM-DD, YYYY_MM_DD, YYYYMMDD_hhmmss, YYYY-MM-DD_hh-mm-ss.
39
39
* @type {string}
40
40
* @memberof AnalyticsQueryExecutionRequest
41
41
*/
42
42
sftpDispatchResultFileRenamePattern?: string;
43
43
/**
44
-
* The SQL query (in PrestoDB dialect) to be executed against the analytics database. This query defines the data retrieval operation.
44
+
* The SQL query (in PrestoDB dialect) to execute on the analytics database. This query defines exactly which data should be retrieved.
0 commit comments