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: docs/models/Sync.md
-8Lines changed: 0 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -143,7 +143,6 @@ await Sync.create({
143
143
'description': "example",
144
144
'dest_path': "example",
145
145
'dest_remote_server_id': 1,
146
-
'dest_site_id': 1,
147
146
'disabled': true,
148
147
'exclude_patterns': ["example"],
149
148
'holiday_region': "us_dc",
@@ -157,7 +156,6 @@ await Sync.create({
157
156
'schedule_times_of_day': ["06:30","14:30"],
158
157
'src_path': "example",
159
158
'src_remote_server_id': 1,
160
-
'src_site_id': 1,
161
159
'sync_interval_minutes': 1,
162
160
'trigger': "example",
163
161
'trigger_file': "example",
@@ -172,7 +170,6 @@ await Sync.create({
172
170
*`description` (string): Description for this sync job
173
171
*`dest_path` (string): Absolute destination path for the sync
174
172
*`dest_remote_server_id` (int64): Remote server ID for the destination (if remote)
175
-
*`dest_site_id` (int64): Destination site ID if syncing to a child or partner site
176
173
*`disabled` (boolean): Is this sync disabled?
177
174
*`exclude_patterns` (array(string)): Array of glob patterns to exclude
178
175
*`holiday_region` (string): If trigger is `custom_schedule`, the sync will check if there is a formal, observed holiday for the region, and if so, it will not run.
@@ -186,7 +183,6 @@ await Sync.create({
186
183
*`schedule_times_of_day` (array(string)): If trigger is `custom_schedule`, Custom schedule description for when the sync should be run. Times of day in HH:MM format.
187
184
*`src_path` (string): Absolute source path for the sync
188
185
*`src_remote_server_id` (int64): Remote server ID for the source (if remote)
189
-
*`src_site_id` (int64): Source site ID if syncing from a child or partner site
190
186
*`sync_interval_minutes` (int64): Frequency in minutes between syncs. If set, this value must be greater than or equal to the `remote_sync_interval` value for the site's plan. If left blank, the plan's `remote_sync_interval` will be used. This setting is only used if `trigger` is empty.
191
187
*`trigger` (string): Trigger type: daily, custom_schedule, or manual
192
188
*`trigger_file` (string): Some MFT services request an empty file (known as a trigger file) to signal the sync is complete and they can begin further processing. If trigger_file is set, a zero-byte file will be sent at the end of the sync.
@@ -234,7 +230,6 @@ await sync.update({
234
230
'description': "example",
235
231
'dest_path': "example",
236
232
'dest_remote_server_id': 1,
237
-
'dest_site_id': 1,
238
233
'disabled': true,
239
234
'exclude_patterns': ["example"],
240
235
'holiday_region': "us_dc",
@@ -248,7 +243,6 @@ await sync.update({
248
243
'schedule_times_of_day': ["06:30","14:30"],
249
244
'src_path': "example",
250
245
'src_remote_server_id': 1,
251
-
'src_site_id': 1,
252
246
'sync_interval_minutes': 1,
253
247
'trigger': "example",
254
248
'trigger_file': "example",
@@ -262,7 +256,6 @@ await sync.update({
262
256
*`description` (string): Description for this sync job
263
257
*`dest_path` (string): Absolute destination path for the sync
264
258
*`dest_remote_server_id` (int64): Remote server ID for the destination (if remote)
265
-
*`dest_site_id` (int64): Destination site ID if syncing to a child or partner site
266
259
*`disabled` (boolean): Is this sync disabled?
267
260
*`exclude_patterns` (array(string)): Array of glob patterns to exclude
268
261
*`holiday_region` (string): If trigger is `custom_schedule`, the sync will check if there is a formal, observed holiday for the region, and if so, it will not run.
@@ -276,7 +269,6 @@ await sync.update({
276
269
*`schedule_times_of_day` (array(string)): If trigger is `custom_schedule`, Custom schedule description for when the sync should be run. Times of day in HH:MM format.
277
270
*`src_path` (string): Absolute source path for the sync
278
271
*`src_remote_server_id` (int64): Remote server ID for the source (if remote)
279
-
*`src_site_id` (int64): Source site ID if syncing from a child or partner site
280
272
*`sync_interval_minutes` (int64): Frequency in minutes between syncs. If set, this value must be greater than or equal to the `remote_sync_interval` value for the site's plan. If left blank, the plan's `remote_sync_interval` will be used. This setting is only used if `trigger` is empty.
281
273
*`trigger` (string): Trigger type: daily, custom_schedule, or manual
282
274
*`trigger_file` (string): Some MFT services request an empty file (known as a trigger file) to signal the sync is complete and they can begin further processing. If trigger_file is set, a zero-byte file will be sent at the end of the sync.
0 commit comments