@@ -428,12 +428,26 @@ union ExtendedVersionHistoryPolicy
428
428
implicitly_limited
429
429
implicitly_unlimited
430
430
431
+ union ExternalDriveBackupEligibilityStatus
432
+ "External Drive Backup eligibility status"
433
+ exceed_license_cap
434
+ success
435
+
431
436
union ExternalDriveBackupPolicy
432
437
"Policy for controlling team access to external drive backup feature"
433
438
default
434
439
disabled
435
440
enabled
436
441
442
+ union ExternalDriveBackupStatus
443
+ "External Drive Backup status"
444
+ broken
445
+ created
446
+ created_or_broken
447
+ deleted
448
+ empty
449
+ unknown
450
+
437
451
struct FailureDetailsLogInfo
438
452
"Provides details about a failure"
439
453
@@ -2648,6 +2662,36 @@ struct DropboxPasswordsNewDeviceEnrolledDetails
2648
2662
struct EmmRefreshAuthTokenDetails
2649
2663
"Refreshed auth token used for setting up EMM."
2650
2664
2665
+ struct ExternalDriveBackupEligibilityStatusCheckedDetails
2666
+ "Checked external drive backup eligibility status."
2667
+
2668
+ desktop_device_session_info DesktopDeviceSessionLogInfo
2669
+ "Device's session logged information."
2670
+ status ExternalDriveBackupEligibilityStatus
2671
+ "Current eligibility status of external drive backup."
2672
+ number_of_external_drive_backup UInt64
2673
+ "Total number of valid external drive backup for all the team members."
2674
+
2675
+ example default
2676
+ desktop_device_session_info = default
2677
+ status = success
2678
+ number_of_external_drive_backup = 3
2679
+
2680
+ struct ExternalDriveBackupStatusChangedDetails
2681
+ "Modified external drive backup."
2682
+
2683
+ desktop_device_session_info DesktopDeviceSessionLogInfo
2684
+ "Device's session logged information."
2685
+ previous_value ExternalDriveBackupStatus
2686
+ "Previous status of this external drive backup."
2687
+ new_value ExternalDriveBackupStatus
2688
+ "Next status of this external drive backup."
2689
+
2690
+ example default
2691
+ desktop_device_session_info = default
2692
+ previous_value = empty
2693
+ new_value = empty
2694
+
2651
2695
struct AccountCaptureChangeAvailabilityDetails
2652
2696
"Granted/revoked option to enable account capture on team domains."
2653
2697
@@ -6761,6 +6805,8 @@ union EventDetails
6761
6805
dropbox_passwords_exported_details DropboxPasswordsExportedDetails
6762
6806
dropbox_passwords_new_device_enrolled_details DropboxPasswordsNewDeviceEnrolledDetails
6763
6807
emm_refresh_auth_token_details EmmRefreshAuthTokenDetails
6808
+ external_drive_backup_eligibility_status_checked_details ExternalDriveBackupEligibilityStatusCheckedDetails
6809
+ external_drive_backup_status_changed_details ExternalDriveBackupStatusChangedDetails
6764
6810
account_capture_change_availability_details AccountCaptureChangeAvailabilityDetails
6765
6811
account_capture_migrate_account_details AccountCaptureMigrateAccountDetails
6766
6812
account_capture_notification_emails_sent_details AccountCaptureNotificationEmailsSentDetails
@@ -7526,6 +7572,18 @@ struct EmmRefreshAuthTokenType
7526
7572
example default
7527
7573
description = "(devices) Refreshed auth token used for setting up EMM"
7528
7574
7575
+ struct ExternalDriveBackupEligibilityStatusCheckedType
7576
+ description String
7577
+
7578
+ example default
7579
+ description = "(devices) Checked external drive backup eligibility status"
7580
+
7581
+ struct ExternalDriveBackupStatusChangedType
7582
+ description String
7583
+
7584
+ example default
7585
+ description = "(devices) Modified external drive backup"
7586
+
7529
7587
struct AccountCaptureChangeAvailabilityType
7530
7588
description String
7531
7589
@@ -10184,6 +10242,10 @@ union EventType
10184
10242
"(devices) Enrolled new Dropbox Passwords device"
10185
10243
emm_refresh_auth_token EmmRefreshAuthTokenType
10186
10244
"(devices) Refreshed auth token used for setting up EMM"
10245
+ external_drive_backup_eligibility_status_checked ExternalDriveBackupEligibilityStatusCheckedType
10246
+ "(devices) Checked external drive backup eligibility status"
10247
+ external_drive_backup_status_changed ExternalDriveBackupStatusChangedType
10248
+ "(devices) Modified external drive backup"
10187
10249
account_capture_change_availability AccountCaptureChangeAvailabilityType
10188
10250
"(domains) Granted/revoked option to enable account capture on team domains"
10189
10251
account_capture_migrate_account AccountCaptureMigrateAccountType
@@ -11150,6 +11212,10 @@ union EventTypeArg
11150
11212
"(devices) Enrolled new Dropbox Passwords device"
11151
11213
emm_refresh_auth_token
11152
11214
"(devices) Refreshed auth token used for setting up EMM"
11215
+ external_drive_backup_eligibility_status_checked
11216
+ "(devices) Checked external drive backup eligibility status"
11217
+ external_drive_backup_status_changed
11218
+ "(devices) Modified external drive backup"
11153
11219
account_capture_change_availability
11154
11220
"(domains) Granted/revoked option to enable account capture on team domains"
11155
11221
account_capture_migrate_account
0 commit comments