files-com 1.6.32__py3-none-any.whl → 1.6.101__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.
- README.md +80 -18
- _VERSION +1 -1
- {files_com-1.6.32.dist-info → files_com-1.6.101.dist-info}/METADATA +81 -19
- {files_com-1.6.32.dist-info → files_com-1.6.101.dist-info}/RECORD +50 -47
- files_sdk/__init__.py +9 -1
- files_sdk/error.py +98 -23
- files_sdk/models/__init__.py +5 -0
- files_sdk/models/api_key.py +10 -0
- files_sdk/models/api_request_log.py +6 -6
- files_sdk/models/automation.py +48 -5
- files_sdk/models/automation_log.py +6 -6
- files_sdk/models/behavior.py +2 -2
- 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 +6 -6
- files_sdk/models/exavault_api_request_log.py +6 -6
- files_sdk/models/file.py +8 -0
- files_sdk/models/file_migration_log.py +6 -6
- files_sdk/models/folder.py +11 -1
- files_sdk/models/ftp_action_log.py +6 -6
- files_sdk/models/gpg_key.py +29 -9
- files_sdk/models/history_export.py +4 -4
- files_sdk/models/history_export_result.py +2 -2
- files_sdk/models/inbox_registration.py +1 -1
- files_sdk/models/invoice_line_item.py +5 -0
- files_sdk/models/outbound_connection_log.py +6 -6
- files_sdk/models/partner.py +296 -0
- files_sdk/models/permission.py +10 -2
- files_sdk/models/public_hosting_request_log.py +6 -6
- files_sdk/models/public_key.py +7 -3
- files_sdk/models/remote_mount_backend.py +1 -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 +6 -6
- files_sdk/models/siem_http_destination.py +16 -16
- files_sdk/models/site.py +29 -12
- files_sdk/models/sso_strategy.py +2 -1
- files_sdk/models/sync.py +74 -10
- files_sdk/models/sync_log.py +8 -7
- files_sdk/models/sync_run.py +31 -17
- files_sdk/models/user.py +80 -3
- files_sdk/models/user_cipher_use.py +24 -1
- files_sdk/models/user_lifecycle_rule.py +81 -40
- files_sdk/models/web_dav_action_log.py +6 -6
- {files_com-1.6.32.dist-info → files_com-1.6.101.dist-info}/WHEEL +0 -0
- {files_com-1.6.32.dist-info → files_com-1.6.101.dist-info}/licenses/LICENSE +0 -0
- {files_com-1.6.32.dist-info → files_com-1.6.101.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.101
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: files_com
|
|
3
|
-
Version: 1.6.
|
|
3
|
+
Version: 1.6.101
|
|
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,69 +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=uLABCqZSvi08tVYKDXD55JrF-qah2jTvnp1Z0dRjEuo,8
|
|
3
|
+
files_com-1.6.101.dist-info/licenses/LICENSE,sha256=ziANl9OTD-5-iE8XYIZNm6IYBDxOCHwQ-mdhci7lNew,1102
|
|
4
|
+
files_sdk/__init__.py,sha256=HhdkGeT--_Xm4_tN3h0vhXeRZiudbT85fRth_LXMTtY,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
21
|
files_sdk/models/as2_partner.py,sha256=e7gPlPqTYZorX7XZSA8iSaDAkV9U12ANAFKCviw3T3U,22467
|
|
22
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=mW0uFgh9XjLhtahvPpXxeh8VyXXIONGEV0tG9HQlLV8,20947
|
|
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=Mg8q2Np7pqocKflgjkAhc_LY6QYRdN5rmkeWSuoBlE8,5283
|
|
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=x_6trTMHWGXV7X4mXN-1swdV0Zx9e0MHP56mIlo3qQQ,11492
|
|
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=ozCEqTrOEfzBrvlIPuhsVLaVSRj8MhtThVHjsJUog54,168594
|
|
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
|
|
60
61
|
files_sdk/models/holiday_region.py,sha256=WJyvwskMxRf3WwGgxH0bndf04xTnf1cwNEpnjZs0QUQ,2259
|
|
61
62
|
files_sdk/models/image.py,sha256=xGDz4VULw5EkYGS0h6cmsRkpYv-c1qi5bhOgiyLA3mM,1052
|
|
62
63
|
files_sdk/models/inbox_recipient.py,sha256=_iUVVsBJLmAU2GatfjxYNBTEiv4D-DoJ0vbBKAwbG1I,5762
|
|
63
|
-
files_sdk/models/inbox_registration.py,sha256=
|
|
64
|
+
files_sdk/models/inbox_registration.py,sha256=SwX7B2JDjmhAJnvVUOJiRtS9KGvtN8wCW4eqOb6q9UQ,3391
|
|
64
65
|
files_sdk/models/inbox_upload.py,sha256=37SxR8JX_eMn9wJQMeAfDDhqEl-_1o6nCJMHzMGW8no,4484
|
|
65
66
|
files_sdk/models/invoice.py,sha256=W5fGwC5s53PZsEu_SzGXsIdxN1Pw7MQ0wGZq4brMZ1c,3753
|
|
66
|
-
files_sdk/models/invoice_line_item.py,sha256=
|
|
67
|
+
files_sdk/models/invoice_line_item.py,sha256=EXuvWqQyNgLBs4KLNLzatStBdJpniyn_K5dUgmUewbM,2011
|
|
67
68
|
files_sdk/models/ip_address.py,sha256=Uyqd0-8gpbv2Nlt1ttTLH9ylDSTdw1dcrmRjtwDgkIw,5783
|
|
68
69
|
files_sdk/models/lock.py,sha256=RjMPVJJsWOKJ8ll3YwalC64NHDtq5GIBIh9A1w3bM7o,7229
|
|
69
70
|
files_sdk/models/message.py,sha256=Lp2CHdf2AyXNjSF0giOdozvch-_sdC8FlemSPJMOZLs,10192
|
|
@@ -71,48 +72,50 @@ files_sdk/models/message_comment.py,sha256=6Y0k_uRCKExD-0g9NobqTp22lprrwpZndrmKY
|
|
|
71
72
|
files_sdk/models/message_comment_reaction.py,sha256=h9Kuk1Y2ztqMG7XkyP-ufGQyS7OdxqXtgNMh0VwbVBw,6790
|
|
72
73
|
files_sdk/models/message_reaction.py,sha256=ZGir-4Qj9k_FRC_X3Av7Yek-SZzFBK-IbvPn5HmaG5g,6288
|
|
73
74
|
files_sdk/models/notification.py,sha256=HEPLDynR4lCF_vZ7-RJD8hoxaWMl3BrrkGEIbQk6-yg,21993
|
|
74
|
-
files_sdk/models/outbound_connection_log.py,sha256=
|
|
75
|
+
files_sdk/models/outbound_connection_log.py,sha256=tt56csYZrPr3o1hJhbuQ3Rv6j5hsl8TSGF41l086D6A,45948
|
|
76
|
+
files_sdk/models/partner.py,sha256=eao0fMooiPmoqJ236lO50-TL2ES9Nap0w9_U5RMiWN8,13848
|
|
75
77
|
files_sdk/models/payment.py,sha256=UUWxK3x2RVYQdRAWeA-WA_Oegh5TDXYPQA_m3BYd0bQ,3753
|
|
76
78
|
files_sdk/models/payment_line_item.py,sha256=x97h4kBtul5S1EqI_jskhbebnucwA-EOnQn1oV8Hid0,1284
|
|
77
|
-
files_sdk/models/permission.py,sha256
|
|
79
|
+
files_sdk/models/permission.py,sha256=llVIdqsQjP7xcTPN-GuaP17hQ0GvQhKHIQhcafyg9mk,9410
|
|
78
80
|
files_sdk/models/preview.py,sha256=XaKqSEC0RPBW87Kt6qlvRLeui5YeA6JUumUoZKMvARU,1347
|
|
79
81
|
files_sdk/models/priority.py,sha256=kByzhOOVwKVSxrMI5xJb1RwUtQdSuFFBLBNEHYzWSm0,2680
|
|
80
82
|
files_sdk/models/project.py,sha256=nDpX0qc7jY6evRprjQ7l4YgjM9WNH0aXaRbE2mpo6zk,7510
|
|
81
|
-
files_sdk/models/public_hosting_request_log.py,sha256=
|
|
83
|
+
files_sdk/models/public_hosting_request_log.py,sha256=YOgcT8NX-x7Ag5ti2KU8npPRIjFItpbTHBo_ARhVtyc,7641
|
|
82
84
|
files_sdk/models/public_ip_address.py,sha256=5VSlJ4PZQilV6tpGRCnyvGJzqRzdSRpwVDZxKwsplcU,1259
|
|
83
|
-
files_sdk/models/public_key.py,sha256=
|
|
85
|
+
files_sdk/models/public_key.py,sha256=3cxoQAD3TdBGgSKHtDeYT1NIKytmPi80jHiNL62jUaY,12809
|
|
84
86
|
files_sdk/models/remote_bandwidth_snapshot.py,sha256=kryNewGqe_ZN4D3JBL26DoVYKDowubUNLXn7NQtEJb8,4476
|
|
85
|
-
files_sdk/models/remote_mount_backend.py,sha256=
|
|
86
|
-
files_sdk/models/remote_server.py,sha256=
|
|
87
|
-
files_sdk/models/remote_server_configuration_file.py,sha256=
|
|
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
|
|
88
90
|
files_sdk/models/request.py,sha256=mWOS36b5pRiAZqDuf1tGidw-FAikYPDqfv5LXdDJA9Q,8867
|
|
89
91
|
files_sdk/models/restore.py,sha256=ukXp-fwsuGFhWl2ULAEWiKarIY3DjOIk3x3hHlshjqE,6685
|
|
92
|
+
files_sdk/models/scim_log.py,sha256=4j_IynVzpnSttAUAxTGhT2t56_Mx7KNvZdhVplxLmPM,3747
|
|
90
93
|
files_sdk/models/session.py,sha256=kgRwlDHDtwyMA3U9rk2T37Wfoo8VVr76vwLcZyaJJxM,3790
|
|
91
94
|
files_sdk/models/settings_change.py,sha256=KdcDdnJVPJGRLLx-W_7pTXSJ5TJnjNHADjU9MnSr2tc,3412
|
|
92
|
-
files_sdk/models/sftp_action_log.py,sha256=
|
|
95
|
+
files_sdk/models/sftp_action_log.py,sha256=aNEEgou4oAnNybSmscLHYDewqcumEI38OGgFYTgAXZo,169102
|
|
93
96
|
files_sdk/models/sftp_host_key.py,sha256=3r5noHhRg-Hn3TLGBUDQYayKIw_Dn5waB9YmGSfZOWI,7920
|
|
94
97
|
files_sdk/models/share_group.py,sha256=rw-W2x5XFBPc48rvazaro28HfjOli885417i702Mowc,9066
|
|
95
98
|
files_sdk/models/share_group_member.py,sha256=m0BUE4AhClJIoaV-_kU0yryCOwQ5EloZlyHQ4WaCVdU,1248
|
|
96
|
-
files_sdk/models/siem_http_destination.py,sha256=
|
|
97
|
-
files_sdk/models/site.py,sha256=
|
|
99
|
+
files_sdk/models/siem_http_destination.py,sha256=mWgfHro5CObkwTYgiWnrREQX2X6zJR389Zw7DJgMFac,50185
|
|
100
|
+
files_sdk/models/site.py,sha256=cxXogtBHPPk1ZruEPP-IBcyKP9QKHFzgBGlmH1gwunc,70076
|
|
98
101
|
files_sdk/models/snapshot.py,sha256=zmdQWKR8EhUkF1mFQHFzWfreaEVXG1p_jEtmY4j3cKA,9840
|
|
99
|
-
files_sdk/models/sso_strategy.py,sha256=
|
|
102
|
+
files_sdk/models/sso_strategy.py,sha256=PA_B4cF4XUnzaTjH0Ld0yUNwWCy8Wpea46YuJrrXtXM,9305
|
|
100
103
|
files_sdk/models/status.py,sha256=IIY3RiJ2RZ2yPByAAh8eIq_cgZFTj13eR4UpqHTANQI,1363
|
|
101
104
|
files_sdk/models/style.py,sha256=KZY0fZ4kP4AtwZpCi24EtNXL8WFLhE9a1Jme1gA6Kkw,5201
|
|
102
|
-
files_sdk/models/sync.py,sha256=
|
|
103
|
-
files_sdk/models/sync_log.py,sha256=
|
|
104
|
-
files_sdk/models/sync_run.py,sha256=
|
|
105
|
+
files_sdk/models/sync.py,sha256=dIlmpq4LNwYRMeD5-cQpx6r3XCpF5r8uvzYFGFT17fA,28291
|
|
106
|
+
files_sdk/models/sync_log.py,sha256=uWP2p4LiUmV5hqZvaZFIBJIyPmdZ21lP9O81LQuNKS4,21135
|
|
107
|
+
files_sdk/models/sync_run.py,sha256=O-rpqkNWQ8qo8qsPiPcZUmtBiZUrOfRr3qqjbT--4pg,6955
|
|
105
108
|
files_sdk/models/usage_by_top_level_dir.py,sha256=o_dETvzcgEA9lsdES_yzwPVAZVFk4ZcnsCTugR8O8eY,1185
|
|
106
109
|
files_sdk/models/usage_daily_snapshot.py,sha256=rWf6GaTlN9spkUPwfF4IJ0Y6z-JTV9TAWjsFrxI-UFg,5477
|
|
107
110
|
files_sdk/models/usage_snapshot.py,sha256=3GzMIxBjKelgNP7ksWq4XlrRlAFcYxzd_J6vAgb52qc,4005
|
|
108
|
-
files_sdk/models/user.py,sha256=
|
|
109
|
-
files_sdk/models/user_cipher_use.py,sha256=
|
|
110
|
-
files_sdk/models/user_lifecycle_rule.py,sha256=
|
|
111
|
+
files_sdk/models/user.py,sha256=P23CR1pyTSJDltWSH03FLQBSEFbRwbRngx19XeqB94c,64757
|
|
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
|
|
111
114
|
files_sdk/models/user_request.py,sha256=ykA5Lq0MYB7qTDOMMFBuyKa_R_LgQwGVorC-q-6qxgU,6187
|
|
112
115
|
files_sdk/models/user_sftp_client_use.py,sha256=VnOo3ll6fwSc8grG5ZqGK8o3grYKg5P9b5B_hGS4vCs,2827
|
|
113
|
-
files_sdk/models/web_dav_action_log.py,sha256=
|
|
116
|
+
files_sdk/models/web_dav_action_log.py,sha256=uMTIkTgSpW5mgKAEWnCmI4U5eqcAL2g8OHqB-lBir3A,76424
|
|
114
117
|
files_sdk/models/webhook_test.py,sha256=AWGH8ULsgltBJL2YtTYGnAJ80cCVekrjZ2sUP0UlWgc,5018
|
|
115
|
-
files_com-1.6.
|
|
116
|
-
files_com-1.6.
|
|
117
|
-
files_com-1.6.
|
|
118
|
-
files_com-1.6.
|
|
118
|
+
files_com-1.6.101.dist-info/METADATA,sha256=Ud8Funde7atZMTh4eefaDx9zUy-DjBkeUA8OKKiAsjY,32344
|
|
119
|
+
files_com-1.6.101.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
120
|
+
files_com-1.6.101.dist-info/top_level.txt,sha256=p_2P-gluT_8boeXQNixTP3x-tFd1-la2NedKOiln21I,10
|
|
121
|
+
files_com-1.6.101.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
|
|
@@ -62,6 +63,7 @@ import files_sdk.models.message_comment_reaction as message_comment_reaction
|
|
|
62
63
|
import files_sdk.models.message_reaction as message_reaction
|
|
63
64
|
import files_sdk.models.notification as notification
|
|
64
65
|
import files_sdk.models.outbound_connection_log as outbound_connection_log
|
|
66
|
+
import files_sdk.models.partner as partner
|
|
65
67
|
import files_sdk.models.payment as payment
|
|
66
68
|
import files_sdk.models.payment_line_item as payment_line_item
|
|
67
69
|
import files_sdk.models.permission as permission
|
|
@@ -77,6 +79,7 @@ import files_sdk.models.remote_server as remote_server
|
|
|
77
79
|
import files_sdk.models.remote_server_configuration_file as remote_server_configuration_file
|
|
78
80
|
import files_sdk.models.request as request
|
|
79
81
|
import files_sdk.models.restore as restore
|
|
82
|
+
import files_sdk.models.scim_log as scim_log
|
|
80
83
|
import files_sdk.models.session as session
|
|
81
84
|
import files_sdk.models.settings_change as settings_change
|
|
82
85
|
import files_sdk.models.sftp_action_log as sftp_action_log
|
|
@@ -131,6 +134,9 @@ from files_sdk.models.bundle_notification import BundleNotification
|
|
|
131
134
|
from files_sdk.models.bundle_path import BundlePath
|
|
132
135
|
from files_sdk.models.bundle_recipient import BundleRecipient
|
|
133
136
|
from files_sdk.models.bundle_registration import BundleRegistration
|
|
137
|
+
from files_sdk.models.child_site_management_policy import (
|
|
138
|
+
ChildSiteManagementPolicy,
|
|
139
|
+
)
|
|
134
140
|
from files_sdk.models.clickwrap import Clickwrap
|
|
135
141
|
from files_sdk.models.dns_record import DnsRecord
|
|
136
142
|
from files_sdk.models.email_incoming_message import EmailIncomingMessage
|
|
@@ -170,6 +176,7 @@ from files_sdk.models.message_comment_reaction import MessageCommentReaction
|
|
|
170
176
|
from files_sdk.models.message_reaction import MessageReaction
|
|
171
177
|
from files_sdk.models.notification import Notification
|
|
172
178
|
from files_sdk.models.outbound_connection_log import OutboundConnectionLog
|
|
179
|
+
from files_sdk.models.partner import Partner
|
|
173
180
|
from files_sdk.models.payment import Payment
|
|
174
181
|
from files_sdk.models.payment_line_item import PaymentLineItem
|
|
175
182
|
from files_sdk.models.permission import Permission
|
|
@@ -187,6 +194,7 @@ from files_sdk.models.remote_server_configuration_file import (
|
|
|
187
194
|
)
|
|
188
195
|
from files_sdk.models.request import Request
|
|
189
196
|
from files_sdk.models.restore import Restore
|
|
197
|
+
from files_sdk.models.scim_log import ScimLog
|
|
190
198
|
from files_sdk.models.session import Session
|
|
191
199
|
from files_sdk.models.settings_change import SettingsChange
|
|
192
200
|
from files_sdk.models.sftp_action_log import SftpActionLog
|
|
@@ -223,7 +231,7 @@ session_id = None
|
|
|
223
231
|
source_ip = None
|
|
224
232
|
base_url = "https://app.files.com"
|
|
225
233
|
base_path = "api/rest/v1"
|
|
226
|
-
version = "1.6.
|
|
234
|
+
version = "1.6.101"
|
|
227
235
|
|
|
228
236
|
__version__ = version
|
|
229
237
|
|