files-com 1.6.7__py3-none-any.whl → 1.6.113__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of files-com might be problematic. Click here for more details.
- README.md +80 -18
- _VERSION +1 -1
- {files_com-1.6.7.dist-info → files_com-1.6.113.dist-info}/METADATA +81 -19
- {files_com-1.6.7.dist-info → files_com-1.6.113.dist-info}/RECORD +53 -46
- files_sdk/__init__.py +17 -1
- files_sdk/error.py +98 -23
- files_sdk/models/__init__.py +9 -0
- files_sdk/models/api_key.py +10 -0
- files_sdk/models/api_request_log.py +21 -3
- files_sdk/models/as2_partner.py +31 -9
- files_sdk/models/as2_station.py +1 -1
- files_sdk/models/automation.py +65 -5
- files_sdk/models/automation_log.py +20 -3
- files_sdk/models/behavior.py +2 -16
- files_sdk/models/bundle.py +1 -1
- files_sdk/models/bundle_action.py +5 -1
- files_sdk/models/bundle_registration.py +1 -1
- files_sdk/models/child_site_management_policy.py +278 -0
- files_sdk/models/email_log.py +17 -7
- files_sdk/models/exavault_api_request_log.py +20 -3
- files_sdk/models/file.py +8 -0
- files_sdk/models/file_migration_log.py +17 -7
- files_sdk/models/folder.py +11 -1
- files_sdk/models/ftp_action_log.py +20 -3
- files_sdk/models/gpg_key.py +61 -9
- files_sdk/models/history_export.py +4 -4
- files_sdk/models/history_export_result.py +2 -2
- files_sdk/models/holiday_region.py +58 -0
- files_sdk/models/inbox_registration.py +1 -1
- files_sdk/models/invoice_line_item.py +5 -0
- files_sdk/models/outbound_connection_log.py +20 -3
- files_sdk/models/partner.py +296 -0
- files_sdk/models/permission.py +10 -2
- files_sdk/models/public_hosting_request_log.py +27 -8
- files_sdk/models/public_key.py +59 -3
- files_sdk/models/remote_mount_backend.py +438 -0
- files_sdk/models/remote_server.py +19 -91
- files_sdk/models/remote_server_configuration_file.py +1 -0
- files_sdk/models/scim_log.py +88 -0
- files_sdk/models/sftp_action_log.py +20 -3
- files_sdk/models/siem_http_destination.py +98 -19
- files_sdk/models/site.py +37 -31
- files_sdk/models/sso_strategy.py +2 -1
- files_sdk/models/sync.py +574 -0
- files_sdk/models/sync_log.py +19 -8
- files_sdk/models/sync_run.py +123 -0
- files_sdk/models/user.py +105 -12
- files_sdk/models/user_cipher_use.py +24 -1
- files_sdk/models/user_lifecycle_rule.py +94 -39
- files_sdk/models/web_dav_action_log.py +20 -3
- {files_com-1.6.7.dist-info → files_com-1.6.113.dist-info}/WHEEL +0 -0
- {files_com-1.6.7.dist-info → files_com-1.6.113.dist-info}/licenses/LICENSE +0 -0
- {files_com-1.6.7.dist-info → files_com-1.6.113.dist-info}/top_level.txt +0 -0
README.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Files.com Python Client
|
|
2
2
|
|
|
3
|
+
The Files.com Python Client provides a direct, high performance integration to Files.com from applications written in Python.
|
|
4
|
+
|
|
5
|
+
Files.com is the cloud-native, next-gen MFT, SFTP, and secure file-sharing platform that replaces brittle legacy servers with one always-on, secure fabric. Automate mission-critical file flows—across any cloud, protocol, or partner—while supporting human collaboration and eliminating manual work.
|
|
6
|
+
|
|
7
|
+
With universal SFTP, AS2, HTTPS, and 50+ native connectors backed by military-grade encryption, Files.com unifies governance, visibility, and compliance in a single pane of glass.
|
|
8
|
+
|
|
3
9
|
The content included here should be enough to get started, but please visit our
|
|
4
10
|
[Developer Documentation Website](https://developers.files.com/python/) for the complete documentation.
|
|
5
11
|
|
|
@@ -362,6 +368,73 @@ except files_sdk.error.Error as err:
|
|
|
362
368
|
print(f"Unknown Error Occurred ({type(err).__name__}):", err)
|
|
363
369
|
```
|
|
364
370
|
|
|
371
|
+
## Paths
|
|
372
|
+
|
|
373
|
+
Working with paths in Files.com involves several important considerations. Understanding how path comparisons are applied helps developers ensure consistency and accuracy across all interactions with the platform.
|
|
374
|
+
<div></div>
|
|
375
|
+
|
|
376
|
+
### Capitalization
|
|
377
|
+
|
|
378
|
+
Files.com compares paths in a **case-insensitive** manner. This means path segments are treated as equivalent regardless of letter casing.
|
|
379
|
+
|
|
380
|
+
For example, all of the following resolve to the same internal path:
|
|
381
|
+
|
|
382
|
+
| Path Variant | Interpreted As |
|
|
383
|
+
|---------------------------------------|------------------------------|
|
|
384
|
+
| `Documents/Reports/Q1.pdf` | `documents/reports/q1.pdf` |
|
|
385
|
+
| `documents/reports/q1.PDF` | `documents/reports/q1.pdf` |
|
|
386
|
+
| `DOCUMENTS/REPORTS/Q1.PDF` | `documents/reports/q1.pdf` |
|
|
387
|
+
|
|
388
|
+
This behavior applies across:
|
|
389
|
+
- API requests
|
|
390
|
+
- Folder and file lookup operations
|
|
391
|
+
- Automations and workflows
|
|
392
|
+
|
|
393
|
+
See also: [Case Sensitivity Documentation](https://www.files.com/docs/files-and-folders/case-sensitivity/)
|
|
394
|
+
|
|
395
|
+
The `path_util.is_same` function in the Files.com SDK is designed to help you determine if two paths on
|
|
396
|
+
your native file system would be considered the same on Files.com. This is particularly important
|
|
397
|
+
when handling errors related to duplicate file names and when developing tools for folder
|
|
398
|
+
synchronization.
|
|
399
|
+
|
|
400
|
+
```python title="Compare Case-Insensitive Files and Paths"
|
|
401
|
+
import files_sdk
|
|
402
|
+
|
|
403
|
+
if files_sdk.path_util.is_same("Fïłèńämê.Txt", "filename.txt"):
|
|
404
|
+
print("Paths are the same")
|
|
405
|
+
```
|
|
406
|
+
|
|
407
|
+
### Slashes
|
|
408
|
+
|
|
409
|
+
All path parameters in Files.com (API, SDKs, CLI, automations, integrations) must **omit leading and trailing slashes**. Paths are always treated as **absolute and slash-delimited**, so only internal `/` separators are used and never at the start or end of the string.
|
|
410
|
+
|
|
411
|
+
#### Path Slash Examples
|
|
412
|
+
| Path | Valid? | Notes |
|
|
413
|
+
|-----------------------------------|--------|-------------------------------|
|
|
414
|
+
| `folder/subfolder/file.txt` | ✅ | Correct, internal separators only |
|
|
415
|
+
| `/folder/subfolder/file.txt` | ❌ | Leading slash not allowed |
|
|
416
|
+
| `folder/subfolder/file.txt/` | ❌ | Trailing slash not allowed |
|
|
417
|
+
| `//folder//file.txt` | ❌ | Duplicate separators not allowed |
|
|
418
|
+
|
|
419
|
+
<div></div>
|
|
420
|
+
|
|
421
|
+
### Unicode Normalization
|
|
422
|
+
|
|
423
|
+
Files.com normalizes all paths using [Unicode NFC (Normalization Form C)](https://www.unicode.org/reports/tr15/#Norm_Forms) before comparison. This ensures consistency across different representations of the same characters.
|
|
424
|
+
|
|
425
|
+
For example, the following two paths are treated as equivalent after NFC normalization:
|
|
426
|
+
|
|
427
|
+
| Input | Normalized Form |
|
|
428
|
+
|----------------------------------------|------------------------|
|
|
429
|
+
| `uploads/\u0065\u0301.txt` | `uploads/é.txt` |
|
|
430
|
+
| `docs/Café/Report.txt` | `docs/Café/Report.txt` |
|
|
431
|
+
|
|
432
|
+
- All input must be UTF‑8 encoded.
|
|
433
|
+
- Precomposed and decomposed characters are unified.
|
|
434
|
+
- This affects search, deduplication, and comparisons across SDKs.
|
|
435
|
+
|
|
436
|
+
<div></div>
|
|
437
|
+
|
|
365
438
|
## Foreign Language Support
|
|
366
439
|
|
|
367
440
|
The Files.com Python SDK supports localized responses by using the `files_sdk.set_language` configuration method.
|
|
@@ -516,12 +589,16 @@ files_sdk.error.FolderAdminPermissionRequiredError -> files_sdk.error.NotAuthori
|
|
|
516
589
|
|`HistoryPermissionRequiredError`| `NotAuthorizedError` |
|
|
517
590
|
|`InsufficientPermissionForParamsError`| `NotAuthorizedError` |
|
|
518
591
|
|`InsufficientPermissionForSiteError`| `NotAuthorizedError` |
|
|
592
|
+
|`MoverAccessDeniedError`| `NotAuthorizedError` |
|
|
593
|
+
|`MoverPackageRequiredError`| `NotAuthorizedError` |
|
|
519
594
|
|`MustAuthenticateWithApiKeyError`| `NotAuthorizedError` |
|
|
520
595
|
|`NeedAdminPermissionForInboxError`| `NotAuthorizedError` |
|
|
521
596
|
|`NonAdminsMustQueryByFolderOrPathError`| `NotAuthorizedError` |
|
|
522
597
|
|`NotAllowedToCreateBundleError`| `NotAuthorizedError` |
|
|
598
|
+
|`NotEnqueuableSyncError`| `NotAuthorizedError` |
|
|
523
599
|
|`PasswordChangeNotRequiredError`| `NotAuthorizedError` |
|
|
524
600
|
|`PasswordChangeRequiredError`| `NotAuthorizedError` |
|
|
601
|
+
|`PaymentMethodErrorError`| `NotAuthorizedError` |
|
|
525
602
|
|`ReadOnlySessionError`| `NotAuthorizedError` |
|
|
526
603
|
|`ReadPermissionRequiredError`| `NotAuthorizedError` |
|
|
527
604
|
|`ReauthenticationFailedError`| `NotAuthorizedError` |
|
|
@@ -541,13 +618,13 @@ files_sdk.error.FolderAdminPermissionRequiredError -> files_sdk.error.NotAuthori
|
|
|
541
618
|
|`CodeNotFoundError`| `NotFoundError` |
|
|
542
619
|
|`FileNotFoundError`| `NotFoundError` |
|
|
543
620
|
|`FileUploadNotFoundError`| `NotFoundError` |
|
|
544
|
-
|`FolderNotFoundError`| `NotFoundError` |
|
|
545
621
|
|`GroupNotFoundError`| `NotFoundError` |
|
|
546
622
|
|`InboxNotFoundError`| `NotFoundError` |
|
|
547
623
|
|`NestedNotFoundError`| `NotFoundError` |
|
|
548
624
|
|`PlanNotFoundError`| `NotFoundError` |
|
|
549
625
|
|`SiteNotFoundError`| `NotFoundError` |
|
|
550
626
|
|`UserNotFoundError`| `NotFoundError` |
|
|
627
|
+
|`AgentUnavailableError`| `ProcessingFailureError` |
|
|
551
628
|
|`AlreadyCompletedError`| `ProcessingFailureError` |
|
|
552
629
|
|`AutomationCannotBeRunManuallyError`| `ProcessingFailureError` |
|
|
553
630
|
|`BehaviorNotAllowedOnRemoteServerError`| `ProcessingFailureError` |
|
|
@@ -581,6 +658,7 @@ files_sdk.error.FolderAdminPermissionRequiredError -> files_sdk.error.NotAuthori
|
|
|
581
658
|
|`InvalidPriorityColorError`| `ProcessingFailureError` |
|
|
582
659
|
|`InvalidRangeError`| `ProcessingFailureError` |
|
|
583
660
|
|`InvalidSiteError`| `ProcessingFailureError` |
|
|
661
|
+
|`MetadataNotSupportedOnRemotesError`| `ProcessingFailureError` |
|
|
584
662
|
|`ModelSaveErrorError`| `ProcessingFailureError` |
|
|
585
663
|
|`MultipleProcessingErrorsError`| `ProcessingFailureError` |
|
|
586
664
|
|`PathTooLongError`| `ProcessingFailureError` |
|
|
@@ -589,6 +667,7 @@ files_sdk.error.FolderAdminPermissionRequiredError -> files_sdk.error.NotAuthori
|
|
|
589
667
|
|`ResourceBelongsToParentSiteError`| `ProcessingFailureError` |
|
|
590
668
|
|`ResourceLockedError`| `ProcessingFailureError` |
|
|
591
669
|
|`SubfolderLockedError`| `ProcessingFailureError` |
|
|
670
|
+
|`SyncInProgressError`| `ProcessingFailureError` |
|
|
592
671
|
|`TwoFactorAuthenticationCodeAlreadySentError`| `ProcessingFailureError` |
|
|
593
672
|
|`TwoFactorAuthenticationCountryBlacklistedError`| `ProcessingFailureError` |
|
|
594
673
|
|`TwoFactorAuthenticationGeneralErrorError`| `ProcessingFailureError` |
|
|
@@ -602,7 +681,6 @@ files_sdk.error.FolderAdminPermissionRequiredError -> files_sdk.error.NotAuthori
|
|
|
602
681
|
|`TooManyLoginAttemptsError`| `RateLimitedError` |
|
|
603
682
|
|`TooManyRequestsError`| `RateLimitedError` |
|
|
604
683
|
|`TooManySharesError`| `RateLimitedError` |
|
|
605
|
-
|`AgentUnavailableError`| `ServiceUnavailableError` |
|
|
606
684
|
|`AutomationsUnavailableError`| `ServiceUnavailableError` |
|
|
607
685
|
|`MigrationInProgressError`| `ServiceUnavailableError` |
|
|
608
686
|
|`SiteDisabledError`| `ServiceUnavailableError` |
|
|
@@ -660,22 +738,6 @@ except files_sdk.error.Error as err:
|
|
|
660
738
|
print(f"Unknown Error Occurred ({type(err).__name__}):", err)
|
|
661
739
|
```
|
|
662
740
|
|
|
663
|
-
## Case Sensitivity
|
|
664
|
-
|
|
665
|
-
The Files.com API compares files and paths in a case-insensitive manner. For related documentation see [Case Sensitivity Documentation](https://www.files.com/docs/files-and-folders/file-system-semantics/case-sensitivity).
|
|
666
|
-
|
|
667
|
-
The `path_util.is_same` function in the Files.com SDK is designed to help you determine if two paths on
|
|
668
|
-
your native file system would be considered the same on Files.com. This is particularly important
|
|
669
|
-
when handling errors related to duplicate file names and when developing tools for folder
|
|
670
|
-
synchronization.
|
|
671
|
-
|
|
672
|
-
```python title="Compare Case-Insensitive Files and Paths"
|
|
673
|
-
import files_sdk
|
|
674
|
-
|
|
675
|
-
if files_sdk.path_util.is_same("Fïłèńämê.Txt", "filename.txt"):
|
|
676
|
-
print("Paths are the same")
|
|
677
|
-
```
|
|
678
|
-
|
|
679
741
|
## Mock Server
|
|
680
742
|
|
|
681
743
|
Files.com publishes a Files.com API server, which is useful for testing your use of the Files.com
|
_VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.6.
|
|
1
|
+
1.6.113
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: files_com
|
|
3
|
-
Version: 1.6.
|
|
3
|
+
Version: 1.6.113
|
|
4
4
|
Summary: Python bindings for the Files.com API
|
|
5
5
|
License: MIT
|
|
6
6
|
Requires-Python: >=3.5
|
|
@@ -12,6 +12,12 @@ Dynamic: license-file
|
|
|
12
12
|
|
|
13
13
|
# Files.com Python Client
|
|
14
14
|
|
|
15
|
+
The Files.com Python Client provides a direct, high performance integration to Files.com from applications written in Python.
|
|
16
|
+
|
|
17
|
+
Files.com is the cloud-native, next-gen MFT, SFTP, and secure file-sharing platform that replaces brittle legacy servers with one always-on, secure fabric. Automate mission-critical file flows—across any cloud, protocol, or partner—while supporting human collaboration and eliminating manual work.
|
|
18
|
+
|
|
19
|
+
With universal SFTP, AS2, HTTPS, and 50+ native connectors backed by military-grade encryption, Files.com unifies governance, visibility, and compliance in a single pane of glass.
|
|
20
|
+
|
|
15
21
|
The content included here should be enough to get started, but please visit our
|
|
16
22
|
[Developer Documentation Website](https://developers.files.com/python/) for the complete documentation.
|
|
17
23
|
|
|
@@ -374,6 +380,73 @@ except files_sdk.error.Error as err:
|
|
|
374
380
|
print(f"Unknown Error Occurred ({type(err).__name__}):", err)
|
|
375
381
|
```
|
|
376
382
|
|
|
383
|
+
## Paths
|
|
384
|
+
|
|
385
|
+
Working with paths in Files.com involves several important considerations. Understanding how path comparisons are applied helps developers ensure consistency and accuracy across all interactions with the platform.
|
|
386
|
+
<div></div>
|
|
387
|
+
|
|
388
|
+
### Capitalization
|
|
389
|
+
|
|
390
|
+
Files.com compares paths in a **case-insensitive** manner. This means path segments are treated as equivalent regardless of letter casing.
|
|
391
|
+
|
|
392
|
+
For example, all of the following resolve to the same internal path:
|
|
393
|
+
|
|
394
|
+
| Path Variant | Interpreted As |
|
|
395
|
+
|---------------------------------------|------------------------------|
|
|
396
|
+
| `Documents/Reports/Q1.pdf` | `documents/reports/q1.pdf` |
|
|
397
|
+
| `documents/reports/q1.PDF` | `documents/reports/q1.pdf` |
|
|
398
|
+
| `DOCUMENTS/REPORTS/Q1.PDF` | `documents/reports/q1.pdf` |
|
|
399
|
+
|
|
400
|
+
This behavior applies across:
|
|
401
|
+
- API requests
|
|
402
|
+
- Folder and file lookup operations
|
|
403
|
+
- Automations and workflows
|
|
404
|
+
|
|
405
|
+
See also: [Case Sensitivity Documentation](https://www.files.com/docs/files-and-folders/case-sensitivity/)
|
|
406
|
+
|
|
407
|
+
The `path_util.is_same` function in the Files.com SDK is designed to help you determine if two paths on
|
|
408
|
+
your native file system would be considered the same on Files.com. This is particularly important
|
|
409
|
+
when handling errors related to duplicate file names and when developing tools for folder
|
|
410
|
+
synchronization.
|
|
411
|
+
|
|
412
|
+
```python title="Compare Case-Insensitive Files and Paths"
|
|
413
|
+
import files_sdk
|
|
414
|
+
|
|
415
|
+
if files_sdk.path_util.is_same("Fïłèńämê.Txt", "filename.txt"):
|
|
416
|
+
print("Paths are the same")
|
|
417
|
+
```
|
|
418
|
+
|
|
419
|
+
### Slashes
|
|
420
|
+
|
|
421
|
+
All path parameters in Files.com (API, SDKs, CLI, automations, integrations) must **omit leading and trailing slashes**. Paths are always treated as **absolute and slash-delimited**, so only internal `/` separators are used and never at the start or end of the string.
|
|
422
|
+
|
|
423
|
+
#### Path Slash Examples
|
|
424
|
+
| Path | Valid? | Notes |
|
|
425
|
+
|-----------------------------------|--------|-------------------------------|
|
|
426
|
+
| `folder/subfolder/file.txt` | ✅ | Correct, internal separators only |
|
|
427
|
+
| `/folder/subfolder/file.txt` | ❌ | Leading slash not allowed |
|
|
428
|
+
| `folder/subfolder/file.txt/` | ❌ | Trailing slash not allowed |
|
|
429
|
+
| `//folder//file.txt` | ❌ | Duplicate separators not allowed |
|
|
430
|
+
|
|
431
|
+
<div></div>
|
|
432
|
+
|
|
433
|
+
### Unicode Normalization
|
|
434
|
+
|
|
435
|
+
Files.com normalizes all paths using [Unicode NFC (Normalization Form C)](https://www.unicode.org/reports/tr15/#Norm_Forms) before comparison. This ensures consistency across different representations of the same characters.
|
|
436
|
+
|
|
437
|
+
For example, the following two paths are treated as equivalent after NFC normalization:
|
|
438
|
+
|
|
439
|
+
| Input | Normalized Form |
|
|
440
|
+
|----------------------------------------|------------------------|
|
|
441
|
+
| `uploads/\u0065\u0301.txt` | `uploads/é.txt` |
|
|
442
|
+
| `docs/Café/Report.txt` | `docs/Café/Report.txt` |
|
|
443
|
+
|
|
444
|
+
- All input must be UTF‑8 encoded.
|
|
445
|
+
- Precomposed and decomposed characters are unified.
|
|
446
|
+
- This affects search, deduplication, and comparisons across SDKs.
|
|
447
|
+
|
|
448
|
+
<div></div>
|
|
449
|
+
|
|
377
450
|
## Foreign Language Support
|
|
378
451
|
|
|
379
452
|
The Files.com Python SDK supports localized responses by using the `files_sdk.set_language` configuration method.
|
|
@@ -528,12 +601,16 @@ files_sdk.error.FolderAdminPermissionRequiredError -> files_sdk.error.NotAuthori
|
|
|
528
601
|
|`HistoryPermissionRequiredError`| `NotAuthorizedError` |
|
|
529
602
|
|`InsufficientPermissionForParamsError`| `NotAuthorizedError` |
|
|
530
603
|
|`InsufficientPermissionForSiteError`| `NotAuthorizedError` |
|
|
604
|
+
|`MoverAccessDeniedError`| `NotAuthorizedError` |
|
|
605
|
+
|`MoverPackageRequiredError`| `NotAuthorizedError` |
|
|
531
606
|
|`MustAuthenticateWithApiKeyError`| `NotAuthorizedError` |
|
|
532
607
|
|`NeedAdminPermissionForInboxError`| `NotAuthorizedError` |
|
|
533
608
|
|`NonAdminsMustQueryByFolderOrPathError`| `NotAuthorizedError` |
|
|
534
609
|
|`NotAllowedToCreateBundleError`| `NotAuthorizedError` |
|
|
610
|
+
|`NotEnqueuableSyncError`| `NotAuthorizedError` |
|
|
535
611
|
|`PasswordChangeNotRequiredError`| `NotAuthorizedError` |
|
|
536
612
|
|`PasswordChangeRequiredError`| `NotAuthorizedError` |
|
|
613
|
+
|`PaymentMethodErrorError`| `NotAuthorizedError` |
|
|
537
614
|
|`ReadOnlySessionError`| `NotAuthorizedError` |
|
|
538
615
|
|`ReadPermissionRequiredError`| `NotAuthorizedError` |
|
|
539
616
|
|`ReauthenticationFailedError`| `NotAuthorizedError` |
|
|
@@ -553,13 +630,13 @@ files_sdk.error.FolderAdminPermissionRequiredError -> files_sdk.error.NotAuthori
|
|
|
553
630
|
|`CodeNotFoundError`| `NotFoundError` |
|
|
554
631
|
|`FileNotFoundError`| `NotFoundError` |
|
|
555
632
|
|`FileUploadNotFoundError`| `NotFoundError` |
|
|
556
|
-
|`FolderNotFoundError`| `NotFoundError` |
|
|
557
633
|
|`GroupNotFoundError`| `NotFoundError` |
|
|
558
634
|
|`InboxNotFoundError`| `NotFoundError` |
|
|
559
635
|
|`NestedNotFoundError`| `NotFoundError` |
|
|
560
636
|
|`PlanNotFoundError`| `NotFoundError` |
|
|
561
637
|
|`SiteNotFoundError`| `NotFoundError` |
|
|
562
638
|
|`UserNotFoundError`| `NotFoundError` |
|
|
639
|
+
|`AgentUnavailableError`| `ProcessingFailureError` |
|
|
563
640
|
|`AlreadyCompletedError`| `ProcessingFailureError` |
|
|
564
641
|
|`AutomationCannotBeRunManuallyError`| `ProcessingFailureError` |
|
|
565
642
|
|`BehaviorNotAllowedOnRemoteServerError`| `ProcessingFailureError` |
|
|
@@ -593,6 +670,7 @@ files_sdk.error.FolderAdminPermissionRequiredError -> files_sdk.error.NotAuthori
|
|
|
593
670
|
|`InvalidPriorityColorError`| `ProcessingFailureError` |
|
|
594
671
|
|`InvalidRangeError`| `ProcessingFailureError` |
|
|
595
672
|
|`InvalidSiteError`| `ProcessingFailureError` |
|
|
673
|
+
|`MetadataNotSupportedOnRemotesError`| `ProcessingFailureError` |
|
|
596
674
|
|`ModelSaveErrorError`| `ProcessingFailureError` |
|
|
597
675
|
|`MultipleProcessingErrorsError`| `ProcessingFailureError` |
|
|
598
676
|
|`PathTooLongError`| `ProcessingFailureError` |
|
|
@@ -601,6 +679,7 @@ files_sdk.error.FolderAdminPermissionRequiredError -> files_sdk.error.NotAuthori
|
|
|
601
679
|
|`ResourceBelongsToParentSiteError`| `ProcessingFailureError` |
|
|
602
680
|
|`ResourceLockedError`| `ProcessingFailureError` |
|
|
603
681
|
|`SubfolderLockedError`| `ProcessingFailureError` |
|
|
682
|
+
|`SyncInProgressError`| `ProcessingFailureError` |
|
|
604
683
|
|`TwoFactorAuthenticationCodeAlreadySentError`| `ProcessingFailureError` |
|
|
605
684
|
|`TwoFactorAuthenticationCountryBlacklistedError`| `ProcessingFailureError` |
|
|
606
685
|
|`TwoFactorAuthenticationGeneralErrorError`| `ProcessingFailureError` |
|
|
@@ -614,7 +693,6 @@ files_sdk.error.FolderAdminPermissionRequiredError -> files_sdk.error.NotAuthori
|
|
|
614
693
|
|`TooManyLoginAttemptsError`| `RateLimitedError` |
|
|
615
694
|
|`TooManyRequestsError`| `RateLimitedError` |
|
|
616
695
|
|`TooManySharesError`| `RateLimitedError` |
|
|
617
|
-
|`AgentUnavailableError`| `ServiceUnavailableError` |
|
|
618
696
|
|`AutomationsUnavailableError`| `ServiceUnavailableError` |
|
|
619
697
|
|`MigrationInProgressError`| `ServiceUnavailableError` |
|
|
620
698
|
|`SiteDisabledError`| `ServiceUnavailableError` |
|
|
@@ -672,22 +750,6 @@ except files_sdk.error.Error as err:
|
|
|
672
750
|
print(f"Unknown Error Occurred ({type(err).__name__}):", err)
|
|
673
751
|
```
|
|
674
752
|
|
|
675
|
-
## Case Sensitivity
|
|
676
|
-
|
|
677
|
-
The Files.com API compares files and paths in a case-insensitive manner. For related documentation see [Case Sensitivity Documentation](https://www.files.com/docs/files-and-folders/file-system-semantics/case-sensitivity).
|
|
678
|
-
|
|
679
|
-
The `path_util.is_same` function in the Files.com SDK is designed to help you determine if two paths on
|
|
680
|
-
your native file system would be considered the same on Files.com. This is particularly important
|
|
681
|
-
when handling errors related to duplicate file names and when developing tools for folder
|
|
682
|
-
synchronization.
|
|
683
|
-
|
|
684
|
-
```python title="Compare Case-Insensitive Files and Paths"
|
|
685
|
-
import files_sdk
|
|
686
|
-
|
|
687
|
-
if files_sdk.path_util.is_same("Fïłèńämê.Txt", "filename.txt"):
|
|
688
|
-
print("Paths are the same")
|
|
689
|
-
```
|
|
690
|
-
|
|
691
753
|
## Mock Server
|
|
692
754
|
|
|
693
755
|
Files.com publishes a Files.com API server, which is useful for testing your use of the Files.com
|
|
@@ -1,68 +1,70 @@
|
|
|
1
|
-
README.md,sha256=
|
|
2
|
-
_VERSION,sha256=
|
|
3
|
-
files_com-1.6.
|
|
4
|
-
files_sdk/__init__.py,sha256=
|
|
1
|
+
README.md,sha256=k4K3G19zaMy-B-BPFztQzrX8Mq1bSx-cyAvuc80WIfc,32051
|
|
2
|
+
_VERSION,sha256=VpYQF2pWjv6eauSvmJjawuomq63ODI0_XuZV8dSwB9Y,8
|
|
3
|
+
files_com-1.6.113.dist-info/licenses/LICENSE,sha256=ziANl9OTD-5-iE8XYIZNm6IYBDxOCHwQ-mdhci7lNew,1102
|
|
4
|
+
files_sdk/__init__.py,sha256=WHealU_eqxphcKfNsuFSYopgsVWJB427nVVPVKNlhSk,13242
|
|
5
5
|
files_sdk/api.py,sha256=HOLk50HLQCbnHwnAr9OElQEWvdA_BABBSEvvFSt1S4A,1846
|
|
6
6
|
files_sdk/api_client.py,sha256=cfFvm-o4Ao8SWADiJv7t7qnJfG_LJmWV3l6ALTC-Opo,11264
|
|
7
|
-
files_sdk/error.py,sha256=
|
|
7
|
+
files_sdk/error.py,sha256=1Nrfq2AuyTf86XH1Pwx-ykzIKpPGSUibCGs-QF6_9LI,66643
|
|
8
8
|
files_sdk/list_obj.py,sha256=MWgmESLAmfh1uaSw76PWxmnf9f6_08TLUHe8_mCYKL4,1157
|
|
9
9
|
files_sdk/path_util.py,sha256=7x8X3JLoMkcqNefCaBeHYXD8MGvPby4AOy-xnBX_LNk,1694
|
|
10
10
|
files_sdk/util.py,sha256=6aA4N0Wq_ykINW7eMrs2ntFAL2hRLM6IvJf6n_yP34c,962
|
|
11
|
-
files_sdk/models/__init__.py,sha256=
|
|
11
|
+
files_sdk/models/__init__.py,sha256=GDW9PgdDCyUUy3uUgE9gdJD2-qk4wFvbfUGHlBQ0odw,6005
|
|
12
12
|
files_sdk/models/account_line_item.py,sha256=8FLg83Aqpz4y_QYy3fZ_KZsZFWv1f1KGD9T5CH1WSGs,1929
|
|
13
13
|
files_sdk/models/action.py,sha256=M1lyMybE7SKht2nGXtYWp2l8b4oVkeImo6KF8DLiCos,2034
|
|
14
14
|
files_sdk/models/action_notification_export.py,sha256=4cdEo2ZCDV3RH3GLSqHV7RWyJ2ONRSUq0glCEi94zd0,6636
|
|
15
15
|
files_sdk/models/action_notification_export_result.py,sha256=yusHopmVJ9zO5lHG2C4sq4-kDnX3trRdb52SRL-R9Go,4071
|
|
16
|
-
files_sdk/models/api_key.py,sha256=
|
|
17
|
-
files_sdk/models/api_request_log.py,sha256=
|
|
16
|
+
files_sdk/models/api_key.py,sha256=YI8-qL7OJL3buOcKCzgDxtVGADPTKHA_wkts-4yA2UM,17939
|
|
17
|
+
files_sdk/models/api_request_log.py,sha256=B3H8hwo9Qadh3C9q1UI-RcS9Yetx_gYeDQtCxxmykhQ,86447
|
|
18
18
|
files_sdk/models/app.py,sha256=JiK40FW3FOp_sUehb3RCWfkc9-1OcjWai15tn9BtxbU,4678
|
|
19
19
|
files_sdk/models/as2_incoming_message.py,sha256=VEkva5pSbXo_mM4UWQLcaL3EZSgBWIPqNY8PMLTMn2o,7153
|
|
20
20
|
files_sdk/models/as2_outgoing_message.py,sha256=7mSM2Ce-9HUsk7klRmS30kBBPMJBRWsXmWCI7Uz85MQ,6696
|
|
21
|
-
files_sdk/models/as2_partner.py,sha256=
|
|
22
|
-
files_sdk/models/as2_station.py,sha256=
|
|
21
|
+
files_sdk/models/as2_partner.py,sha256=e7gPlPqTYZorX7XZSA8iSaDAkV9U12ANAFKCviw3T3U,22467
|
|
22
|
+
files_sdk/models/as2_station.py,sha256=XKgf0t8HVPevF1nkx8IrvGb00leahz-LSU9RG6Rn2Y4,11003
|
|
23
23
|
files_sdk/models/auto.py,sha256=nODYUPqEsTw7suz0s6zDTsFd8j5yeSIzBELTiaXxzRE,995
|
|
24
|
-
files_sdk/models/automation.py,sha256=
|
|
25
|
-
files_sdk/models/automation_log.py,sha256=
|
|
24
|
+
files_sdk/models/automation.py,sha256=DuuBQxVVwRtldonVveDIZO-zZ1oHqOEt7oPSk9vzO5g,50784
|
|
25
|
+
files_sdk/models/automation_log.py,sha256=jFaFfDJTTpY9Jsy1lVRjFtIHYTzbmxuFTTBp4aVEq8E,20922
|
|
26
26
|
files_sdk/models/automation_run.py,sha256=ThDA_5inLYaunKOcNgXFD9QLlhndJXC2TOl7-GqK098,5341
|
|
27
27
|
files_sdk/models/bandwidth_snapshot.py,sha256=IBcRP5r_iFl86lhHOb5o5UZdsT8_-cBrAjKyPAc7OBw,4722
|
|
28
|
-
files_sdk/models/behavior.py,sha256=
|
|
29
|
-
files_sdk/models/bundle.py,sha256=
|
|
30
|
-
files_sdk/models/bundle_action.py,sha256=
|
|
28
|
+
files_sdk/models/behavior.py,sha256=nwXTUYZar64CE2lWaGIoWp-DWhXKgbXhU7ebQ1AOfZ8,17791
|
|
29
|
+
files_sdk/models/bundle.py,sha256=tLuHkazuBwU3sg44zBjUwdK3x1CIZBTg7lj3-GPRX_I,36244
|
|
30
|
+
files_sdk/models/bundle_action.py,sha256=Ze0A2n0EyzSxNHO_joS9fOYuQ7fmlOX_RJwC5FWSwyQ,5430
|
|
31
31
|
files_sdk/models/bundle_download.py,sha256=ZSjf6R0kCiFGgjQq7bu5nsFAtaW0sE72IZhCx2g5D10,4832
|
|
32
32
|
files_sdk/models/bundle_notification.py,sha256=tMauRH6qmejEisqsneVeprh4rb6UIjB43i6GY022NK8,10081
|
|
33
33
|
files_sdk/models/bundle_path.py,sha256=UQc3Y1zD6s2AWEoFZ1H5_FuXr3cuNoLw18XGHxauMVA,1249
|
|
34
34
|
files_sdk/models/bundle_recipient.py,sha256=cOn-pPcT5xzQAcSxMYN5RtfdkZ5c5T7yI9J8gVBNmx0,6398
|
|
35
|
-
files_sdk/models/bundle_registration.py,sha256=
|
|
35
|
+
files_sdk/models/bundle_registration.py,sha256=Mj0yD5CxrQNVJrOmrDQK4VYRMTm-xJmceUr8ywPRW5c,3927
|
|
36
|
+
files_sdk/models/child_site_management_policy.py,sha256=vG71W_fO7bDfvlo8gskVaau6L1YyMkoSvJqve1zB7fk,12309
|
|
36
37
|
files_sdk/models/clickwrap.py,sha256=6xCBvo38zlA2s7U0lIH1nmbEjv2U2A_FL_5pAtbjkGE,11563
|
|
37
38
|
files_sdk/models/dns_record.py,sha256=iXrDPyaovMmPopCGaiPcK1hcuKCYaqnhnsj0Olxjq8g,2370
|
|
38
39
|
files_sdk/models/email_incoming_message.py,sha256=ciP9FI3wxfC7vqzZ0Cx3-_mszoZKfdFwD1sg6QI7tok,5391
|
|
39
|
-
files_sdk/models/email_log.py,sha256=
|
|
40
|
+
files_sdk/models/email_log.py,sha256=7dJx3PA2S4kZAwxWIFoRDPBPDWlZ-8Er8WJaIxSeiUw,4850
|
|
40
41
|
files_sdk/models/errors.py,sha256=x9hbHLBuLNp-2wq3n8A7nrzRP0QuhKqyQwhtVsgTwpE,1117
|
|
41
|
-
files_sdk/models/exavault_api_request_log.py,sha256=
|
|
42
|
+
files_sdk/models/exavault_api_request_log.py,sha256=SM5dCWSiVqshiWKclhG3FDDKWnRlBW0eoVvFlCBftkI,8090
|
|
42
43
|
files_sdk/models/external_event.py,sha256=4hRg9t9W0QIB8SiJ2LUxwFefR4Odo7ip-bqdignqxpk,7594
|
|
43
|
-
files_sdk/models/file.py,sha256=
|
|
44
|
+
files_sdk/models/file.py,sha256=ipMIcZVBDnfpaR-_MK6bL3Fciu7BerNJWmNsqgCzWq4,35916
|
|
44
45
|
files_sdk/models/file_action.py,sha256=xRUSlnikXt2Y-SbWyuSdG75l0or9Ebl518Jy8btPux4,1231
|
|
45
46
|
files_sdk/models/file_comment.py,sha256=LcfN0FRcGU6xr_Y6ItLWYAkp3Nxg8wvf_JToj-Q9z-c,7160
|
|
46
47
|
files_sdk/models/file_comment_reaction.py,sha256=FHvRIpcV69qwN7WEbUyMZ-8dI2EGZsLMGFDUwKzLMLc,4350
|
|
47
48
|
files_sdk/models/file_migration.py,sha256=s5btcbmfKgxBzKJF60OHmQjtPEev3B04S-IlYzdzua4,2341
|
|
48
|
-
files_sdk/models/file_migration_log.py,sha256=
|
|
49
|
+
files_sdk/models/file_migration_log.py,sha256=6zHvlwhK2_m2pTBtMvmohNpyHDL9E5zeUyJgTOR9F9Q,10019
|
|
49
50
|
files_sdk/models/file_upload_part.py,sha256=Js2XmLdG6lpkMHgehQkoNKQ0yoKpsCbSKOXHKnHWa-8,2584
|
|
50
|
-
files_sdk/models/folder.py,sha256=
|
|
51
|
+
files_sdk/models/folder.py,sha256=jhdSMVeUkCGTj1qIFjO91yFNO4qWbrFFYeQ4iXutKJA,11286
|
|
51
52
|
files_sdk/models/form_field.py,sha256=xaaLnvctZ3Do5lnppn-s6UQguzfsyVpfdmz-Ykij9Nw,1509
|
|
52
53
|
files_sdk/models/form_field_set.py,sha256=7hms9QZNWmSoCdZZUsYoQvTaT5lmDwDGz5YdwBZxOq8,10528
|
|
53
|
-
files_sdk/models/ftp_action_log.py,sha256=
|
|
54
|
-
files_sdk/models/gpg_key.py,sha256=
|
|
54
|
+
files_sdk/models/ftp_action_log.py,sha256=Hcd-cSsDDuqKpWlneQs2rciVl91tdLsSBZO7x6CltFw,168584
|
|
55
|
+
files_sdk/models/gpg_key.py,sha256=mwBUB904a0MESKOLJU7wv5EOz5-aSG9CZ8OBTvcscl4,13932
|
|
55
56
|
files_sdk/models/group.py,sha256=NCWhnhjBK8jAeCgLp2qYLV2lURxuSD1QO4EsmTF_tzw,16062
|
|
56
57
|
files_sdk/models/group_user.py,sha256=ZVl2vQ2FuPFC9YW5Geo9iST438eLvs6Pc_BlQRGg9Sg,10087
|
|
57
58
|
files_sdk/models/history.py,sha256=Elc04ji3rWWhEc68KzPzcEeCqfMSA4Jmjb9sAZ4LvKc,14138
|
|
58
|
-
files_sdk/models/history_export.py,sha256=
|
|
59
|
-
files_sdk/models/history_export_result.py,sha256=
|
|
59
|
+
files_sdk/models/history_export.py,sha256=yaHqn1ogmd_t9J_OSb1O6iMvykdLA88EYuxnO_Ns_R8,14466
|
|
60
|
+
files_sdk/models/history_export_result.py,sha256=Wnw1Rmz9TPduYdG6ExM4cai3poK0QhufHHU4OvR7f9E,6391
|
|
61
|
+
files_sdk/models/holiday_region.py,sha256=WJyvwskMxRf3WwGgxH0bndf04xTnf1cwNEpnjZs0QUQ,2259
|
|
60
62
|
files_sdk/models/image.py,sha256=xGDz4VULw5EkYGS0h6cmsRkpYv-c1qi5bhOgiyLA3mM,1052
|
|
61
63
|
files_sdk/models/inbox_recipient.py,sha256=_iUVVsBJLmAU2GatfjxYNBTEiv4D-DoJ0vbBKAwbG1I,5762
|
|
62
|
-
files_sdk/models/inbox_registration.py,sha256=
|
|
64
|
+
files_sdk/models/inbox_registration.py,sha256=SwX7B2JDjmhAJnvVUOJiRtS9KGvtN8wCW4eqOb6q9UQ,3391
|
|
63
65
|
files_sdk/models/inbox_upload.py,sha256=37SxR8JX_eMn9wJQMeAfDDhqEl-_1o6nCJMHzMGW8no,4484
|
|
64
66
|
files_sdk/models/invoice.py,sha256=W5fGwC5s53PZsEu_SzGXsIdxN1Pw7MQ0wGZq4brMZ1c,3753
|
|
65
|
-
files_sdk/models/invoice_line_item.py,sha256=
|
|
67
|
+
files_sdk/models/invoice_line_item.py,sha256=EXuvWqQyNgLBs4KLNLzatStBdJpniyn_K5dUgmUewbM,2011
|
|
66
68
|
files_sdk/models/ip_address.py,sha256=Uyqd0-8gpbv2Nlt1ttTLH9ylDSTdw1dcrmRjtwDgkIw,5783
|
|
67
69
|
files_sdk/models/lock.py,sha256=RjMPVJJsWOKJ8ll3YwalC64NHDtq5GIBIh9A1w3bM7o,7229
|
|
68
70
|
files_sdk/models/message.py,sha256=Lp2CHdf2AyXNjSF0giOdozvch-_sdC8FlemSPJMOZLs,10192
|
|
@@ -70,45 +72,50 @@ files_sdk/models/message_comment.py,sha256=6Y0k_uRCKExD-0g9NobqTp22lprrwpZndrmKY
|
|
|
70
72
|
files_sdk/models/message_comment_reaction.py,sha256=h9Kuk1Y2ztqMG7XkyP-ufGQyS7OdxqXtgNMh0VwbVBw,6790
|
|
71
73
|
files_sdk/models/message_reaction.py,sha256=ZGir-4Qj9k_FRC_X3Av7Yek-SZzFBK-IbvPn5HmaG5g,6288
|
|
72
74
|
files_sdk/models/notification.py,sha256=HEPLDynR4lCF_vZ7-RJD8hoxaWMl3BrrkGEIbQk6-yg,21993
|
|
73
|
-
files_sdk/models/outbound_connection_log.py,sha256=
|
|
75
|
+
files_sdk/models/outbound_connection_log.py,sha256=RJbcCNDZnbEX4aywguA6Rm4ddYtqOfQdJRHur5LXozs,45923
|
|
76
|
+
files_sdk/models/partner.py,sha256=eao0fMooiPmoqJ236lO50-TL2ES9Nap0w9_U5RMiWN8,13848
|
|
74
77
|
files_sdk/models/payment.py,sha256=UUWxK3x2RVYQdRAWeA-WA_Oegh5TDXYPQA_m3BYd0bQ,3753
|
|
75
78
|
files_sdk/models/payment_line_item.py,sha256=x97h4kBtul5S1EqI_jskhbebnucwA-EOnQn1oV8Hid0,1284
|
|
76
|
-
files_sdk/models/permission.py,sha256
|
|
79
|
+
files_sdk/models/permission.py,sha256=llVIdqsQjP7xcTPN-GuaP17hQ0GvQhKHIQhcafyg9mk,9410
|
|
77
80
|
files_sdk/models/preview.py,sha256=XaKqSEC0RPBW87Kt6qlvRLeui5YeA6JUumUoZKMvARU,1347
|
|
78
81
|
files_sdk/models/priority.py,sha256=kByzhOOVwKVSxrMI5xJb1RwUtQdSuFFBLBNEHYzWSm0,2680
|
|
79
82
|
files_sdk/models/project.py,sha256=nDpX0qc7jY6evRprjQ7l4YgjM9WNH0aXaRbE2mpo6zk,7510
|
|
80
|
-
files_sdk/models/public_hosting_request_log.py,sha256=
|
|
83
|
+
files_sdk/models/public_hosting_request_log.py,sha256=YOgcT8NX-x7Ag5ti2KU8npPRIjFItpbTHBo_ARhVtyc,7641
|
|
81
84
|
files_sdk/models/public_ip_address.py,sha256=5VSlJ4PZQilV6tpGRCnyvGJzqRzdSRpwVDZxKwsplcU,1259
|
|
82
|
-
files_sdk/models/public_key.py,sha256=
|
|
85
|
+
files_sdk/models/public_key.py,sha256=3cxoQAD3TdBGgSKHtDeYT1NIKytmPi80jHiNL62jUaY,12809
|
|
83
86
|
files_sdk/models/remote_bandwidth_snapshot.py,sha256=kryNewGqe_ZN4D3JBL26DoVYKDowubUNLXn7NQtEJb8,4476
|
|
84
|
-
files_sdk/models/
|
|
85
|
-
files_sdk/models/
|
|
87
|
+
files_sdk/models/remote_mount_backend.py,sha256=TZ6pLJPLy8se4poHMuREHYNavCOKiznBxPLti008CBY,19360
|
|
88
|
+
files_sdk/models/remote_server.py,sha256=PIIHCW53MkSfFGnkkv2ArYWDkIcgvQ95B7EEBkgMukk,82993
|
|
89
|
+
files_sdk/models/remote_server_configuration_file.py,sha256=So6cK83z_6xwLnHJYgEwzSb9eBkDK5XG2Q4k8kp9nno,3476
|
|
86
90
|
files_sdk/models/request.py,sha256=mWOS36b5pRiAZqDuf1tGidw-FAikYPDqfv5LXdDJA9Q,8867
|
|
87
91
|
files_sdk/models/restore.py,sha256=ukXp-fwsuGFhWl2ULAEWiKarIY3DjOIk3x3hHlshjqE,6685
|
|
92
|
+
files_sdk/models/scim_log.py,sha256=4j_IynVzpnSttAUAxTGhT2t56_Mx7KNvZdhVplxLmPM,3747
|
|
88
93
|
files_sdk/models/session.py,sha256=kgRwlDHDtwyMA3U9rk2T37Wfoo8VVr76vwLcZyaJJxM,3790
|
|
89
94
|
files_sdk/models/settings_change.py,sha256=KdcDdnJVPJGRLLx-W_7pTXSJ5TJnjNHADjU9MnSr2tc,3412
|
|
90
|
-
files_sdk/models/sftp_action_log.py,sha256=
|
|
95
|
+
files_sdk/models/sftp_action_log.py,sha256=1TgYvjjySimTiOs4G292F934Fk8kWR03DgP3rp7icoE,169092
|
|
91
96
|
files_sdk/models/sftp_host_key.py,sha256=3r5noHhRg-Hn3TLGBUDQYayKIw_Dn5waB9YmGSfZOWI,7920
|
|
92
97
|
files_sdk/models/share_group.py,sha256=rw-W2x5XFBPc48rvazaro28HfjOli885417i702Mowc,9066
|
|
93
98
|
files_sdk/models/share_group_member.py,sha256=m0BUE4AhClJIoaV-_kU0yryCOwQ5EloZlyHQ4WaCVdU,1248
|
|
94
|
-
files_sdk/models/siem_http_destination.py,sha256=
|
|
95
|
-
files_sdk/models/site.py,sha256=
|
|
99
|
+
files_sdk/models/siem_http_destination.py,sha256=xr_6T1V5SY39LzGXWBtaPYCk_W2_IkmW304p179uDpQ,54672
|
|
100
|
+
files_sdk/models/site.py,sha256=cxXogtBHPPk1ZruEPP-IBcyKP9QKHFzgBGlmH1gwunc,70076
|
|
96
101
|
files_sdk/models/snapshot.py,sha256=zmdQWKR8EhUkF1mFQHFzWfreaEVXG1p_jEtmY4j3cKA,9840
|
|
97
|
-
files_sdk/models/sso_strategy.py,sha256=
|
|
102
|
+
files_sdk/models/sso_strategy.py,sha256=PA_B4cF4XUnzaTjH0Ld0yUNwWCy8Wpea46YuJrrXtXM,9305
|
|
98
103
|
files_sdk/models/status.py,sha256=IIY3RiJ2RZ2yPByAAh8eIq_cgZFTj13eR4UpqHTANQI,1363
|
|
99
104
|
files_sdk/models/style.py,sha256=KZY0fZ4kP4AtwZpCi24EtNXL8WFLhE9a1Jme1gA6Kkw,5201
|
|
100
|
-
files_sdk/models/
|
|
105
|
+
files_sdk/models/sync.py,sha256=dIlmpq4LNwYRMeD5-cQpx6r3XCpF5r8uvzYFGFT17fA,28291
|
|
106
|
+
files_sdk/models/sync_log.py,sha256=DjJaLnCgAE-FINRbkHYQ3JCsERucRy6Hc7zQoKBntRc,18062
|
|
107
|
+
files_sdk/models/sync_run.py,sha256=O-rpqkNWQ8qo8qsPiPcZUmtBiZUrOfRr3qqjbT--4pg,6955
|
|
101
108
|
files_sdk/models/usage_by_top_level_dir.py,sha256=o_dETvzcgEA9lsdES_yzwPVAZVFk4ZcnsCTugR8O8eY,1185
|
|
102
109
|
files_sdk/models/usage_daily_snapshot.py,sha256=rWf6GaTlN9spkUPwfF4IJ0Y6z-JTV9TAWjsFrxI-UFg,5477
|
|
103
110
|
files_sdk/models/usage_snapshot.py,sha256=3GzMIxBjKelgNP7ksWq4XlrRlAFcYxzd_J6vAgb52qc,4005
|
|
104
|
-
files_sdk/models/user.py,sha256=
|
|
105
|
-
files_sdk/models/user_cipher_use.py,sha256=
|
|
106
|
-
files_sdk/models/user_lifecycle_rule.py,sha256=
|
|
111
|
+
files_sdk/models/user.py,sha256=hs0QtLzaGKdJZV1ZhYZHKYBM6OW8VYW8Tk4p_i4LYmk,64862
|
|
112
|
+
files_sdk/models/user_cipher_use.py,sha256=5Mto-oU87rG2jGIq8TQoOdNZgJA4_ViikvOdM9_jdt0,4994
|
|
113
|
+
files_sdk/models/user_lifecycle_rule.py,sha256=cphIpz9lbHh8g1kIeK91N46LVAQRk-1Wbrjs51byOOA,16422
|
|
107
114
|
files_sdk/models/user_request.py,sha256=ykA5Lq0MYB7qTDOMMFBuyKa_R_LgQwGVorC-q-6qxgU,6187
|
|
108
115
|
files_sdk/models/user_sftp_client_use.py,sha256=VnOo3ll6fwSc8grG5ZqGK8o3grYKg5P9b5B_hGS4vCs,2827
|
|
109
|
-
files_sdk/models/web_dav_action_log.py,sha256=
|
|
116
|
+
files_sdk/models/web_dav_action_log.py,sha256=q--_QSmpOhtoJUP2ATx5OQq1tp1eQT5zkzyow8R3B_o,76414
|
|
110
117
|
files_sdk/models/webhook_test.py,sha256=AWGH8ULsgltBJL2YtTYGnAJ80cCVekrjZ2sUP0UlWgc,5018
|
|
111
|
-
files_com-1.6.
|
|
112
|
-
files_com-1.6.
|
|
113
|
-
files_com-1.6.
|
|
114
|
-
files_com-1.6.
|
|
118
|
+
files_com-1.6.113.dist-info/METADATA,sha256=gpZIsQt4wya8qSLd9cLC7LPmfjr0Wy8RaUJVw3xnPgg,32344
|
|
119
|
+
files_com-1.6.113.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
120
|
+
files_com-1.6.113.dist-info/top_level.txt,sha256=p_2P-gluT_8boeXQNixTP3x-tFd1-la2NedKOiln21I,10
|
|
121
|
+
files_com-1.6.113.dist-info/RECORD,,
|
files_sdk/__init__.py
CHANGED
|
@@ -23,6 +23,7 @@ import files_sdk.models.bundle_notification as bundle_notification
|
|
|
23
23
|
import files_sdk.models.bundle_path as bundle_path
|
|
24
24
|
import files_sdk.models.bundle_recipient as bundle_recipient
|
|
25
25
|
import files_sdk.models.bundle_registration as bundle_registration
|
|
26
|
+
import files_sdk.models.child_site_management_policy as child_site_management_policy
|
|
26
27
|
import files_sdk.models.clickwrap as clickwrap
|
|
27
28
|
import files_sdk.models.dns_record as dns_record
|
|
28
29
|
import files_sdk.models.email_incoming_message as email_incoming_message
|
|
@@ -47,6 +48,7 @@ import files_sdk.models.group_user as group_user
|
|
|
47
48
|
import files_sdk.models.history as history
|
|
48
49
|
import files_sdk.models.history_export as history_export
|
|
49
50
|
import files_sdk.models.history_export_result as history_export_result
|
|
51
|
+
import files_sdk.models.holiday_region as holiday_region
|
|
50
52
|
import files_sdk.models.image as image
|
|
51
53
|
import files_sdk.models.inbox_recipient as inbox_recipient
|
|
52
54
|
import files_sdk.models.inbox_registration as inbox_registration
|
|
@@ -61,6 +63,7 @@ import files_sdk.models.message_comment_reaction as message_comment_reaction
|
|
|
61
63
|
import files_sdk.models.message_reaction as message_reaction
|
|
62
64
|
import files_sdk.models.notification as notification
|
|
63
65
|
import files_sdk.models.outbound_connection_log as outbound_connection_log
|
|
66
|
+
import files_sdk.models.partner as partner
|
|
64
67
|
import files_sdk.models.payment as payment
|
|
65
68
|
import files_sdk.models.payment_line_item as payment_line_item
|
|
66
69
|
import files_sdk.models.permission as permission
|
|
@@ -71,10 +74,12 @@ import files_sdk.models.public_hosting_request_log as public_hosting_request_log
|
|
|
71
74
|
import files_sdk.models.public_ip_address as public_ip_address
|
|
72
75
|
import files_sdk.models.public_key as public_key
|
|
73
76
|
import files_sdk.models.remote_bandwidth_snapshot as remote_bandwidth_snapshot
|
|
77
|
+
import files_sdk.models.remote_mount_backend as remote_mount_backend
|
|
74
78
|
import files_sdk.models.remote_server as remote_server
|
|
75
79
|
import files_sdk.models.remote_server_configuration_file as remote_server_configuration_file
|
|
76
80
|
import files_sdk.models.request as request
|
|
77
81
|
import files_sdk.models.restore as restore
|
|
82
|
+
import files_sdk.models.scim_log as scim_log
|
|
78
83
|
import files_sdk.models.session as session
|
|
79
84
|
import files_sdk.models.settings_change as settings_change
|
|
80
85
|
import files_sdk.models.sftp_action_log as sftp_action_log
|
|
@@ -87,7 +92,9 @@ import files_sdk.models.snapshot as snapshot
|
|
|
87
92
|
import files_sdk.models.sso_strategy as sso_strategy
|
|
88
93
|
import files_sdk.models.status as status
|
|
89
94
|
import files_sdk.models.style as style
|
|
95
|
+
import files_sdk.models.sync as sync
|
|
90
96
|
import files_sdk.models.sync_log as sync_log
|
|
97
|
+
import files_sdk.models.sync_run as sync_run
|
|
91
98
|
import files_sdk.models.usage_by_top_level_dir as usage_by_top_level_dir
|
|
92
99
|
import files_sdk.models.usage_daily_snapshot as usage_daily_snapshot
|
|
93
100
|
import files_sdk.models.usage_snapshot as usage_snapshot
|
|
@@ -127,6 +134,9 @@ from files_sdk.models.bundle_notification import BundleNotification
|
|
|
127
134
|
from files_sdk.models.bundle_path import BundlePath
|
|
128
135
|
from files_sdk.models.bundle_recipient import BundleRecipient
|
|
129
136
|
from files_sdk.models.bundle_registration import BundleRegistration
|
|
137
|
+
from files_sdk.models.child_site_management_policy import (
|
|
138
|
+
ChildSiteManagementPolicy,
|
|
139
|
+
)
|
|
130
140
|
from files_sdk.models.clickwrap import Clickwrap
|
|
131
141
|
from files_sdk.models.dns_record import DnsRecord
|
|
132
142
|
from files_sdk.models.email_incoming_message import EmailIncomingMessage
|
|
@@ -151,6 +161,7 @@ from files_sdk.models.group_user import GroupUser
|
|
|
151
161
|
from files_sdk.models.history import History
|
|
152
162
|
from files_sdk.models.history_export import HistoryExport
|
|
153
163
|
from files_sdk.models.history_export_result import HistoryExportResult
|
|
164
|
+
from files_sdk.models.holiday_region import HolidayRegion
|
|
154
165
|
from files_sdk.models.image import Image
|
|
155
166
|
from files_sdk.models.inbox_recipient import InboxRecipient
|
|
156
167
|
from files_sdk.models.inbox_registration import InboxRegistration
|
|
@@ -165,6 +176,7 @@ from files_sdk.models.message_comment_reaction import MessageCommentReaction
|
|
|
165
176
|
from files_sdk.models.message_reaction import MessageReaction
|
|
166
177
|
from files_sdk.models.notification import Notification
|
|
167
178
|
from files_sdk.models.outbound_connection_log import OutboundConnectionLog
|
|
179
|
+
from files_sdk.models.partner import Partner
|
|
168
180
|
from files_sdk.models.payment import Payment
|
|
169
181
|
from files_sdk.models.payment_line_item import PaymentLineItem
|
|
170
182
|
from files_sdk.models.permission import Permission
|
|
@@ -175,12 +187,14 @@ from files_sdk.models.public_hosting_request_log import PublicHostingRequestLog
|
|
|
175
187
|
from files_sdk.models.public_ip_address import PublicIpAddress
|
|
176
188
|
from files_sdk.models.public_key import PublicKey
|
|
177
189
|
from files_sdk.models.remote_bandwidth_snapshot import RemoteBandwidthSnapshot
|
|
190
|
+
from files_sdk.models.remote_mount_backend import RemoteMountBackend
|
|
178
191
|
from files_sdk.models.remote_server import RemoteServer
|
|
179
192
|
from files_sdk.models.remote_server_configuration_file import (
|
|
180
193
|
RemoteServerConfigurationFile,
|
|
181
194
|
)
|
|
182
195
|
from files_sdk.models.request import Request
|
|
183
196
|
from files_sdk.models.restore import Restore
|
|
197
|
+
from files_sdk.models.scim_log import ScimLog
|
|
184
198
|
from files_sdk.models.session import Session
|
|
185
199
|
from files_sdk.models.settings_change import SettingsChange
|
|
186
200
|
from files_sdk.models.sftp_action_log import SftpActionLog
|
|
@@ -193,7 +207,9 @@ from files_sdk.models.snapshot import Snapshot
|
|
|
193
207
|
from files_sdk.models.sso_strategy import SsoStrategy
|
|
194
208
|
from files_sdk.models.status import Status
|
|
195
209
|
from files_sdk.models.style import Style
|
|
210
|
+
from files_sdk.models.sync import Sync
|
|
196
211
|
from files_sdk.models.sync_log import SyncLog
|
|
212
|
+
from files_sdk.models.sync_run import SyncRun
|
|
197
213
|
from files_sdk.models.usage_by_top_level_dir import UsageByTopLevelDir
|
|
198
214
|
from files_sdk.models.usage_daily_snapshot import UsageDailySnapshot
|
|
199
215
|
from files_sdk.models.usage_snapshot import UsageSnapshot
|
|
@@ -215,7 +231,7 @@ session_id = None
|
|
|
215
231
|
source_ip = None
|
|
216
232
|
base_url = "https://app.files.com"
|
|
217
233
|
base_path = "api/rest/v1"
|
|
218
|
-
version = "1.6.
|
|
234
|
+
version = "1.6.113"
|
|
219
235
|
|
|
220
236
|
__version__ = version
|
|
221
237
|
|