@@ -8260,6 +8260,8 @@ class SharePathError(bb.Union):
8260
8260
folder inside a Mac OS X package.
8261
8261
:ivar sharing.SharePathError.is_vault: We do not support sharing the Vault
8262
8262
folder.
8263
+ :ivar sharing.SharePathError.is_vault_locked: We do not support sharing a
8264
+ folder inside a locked Vault.
8263
8265
:ivar sharing.SharePathError.is_family: We do not support sharing the Family
8264
8266
folder.
8265
8267
"""
@@ -8292,6 +8294,8 @@ class SharePathError(bb.Union):
8292
8294
# Attribute is overwritten below the class definition
8293
8295
is_vault = None
8294
8296
# Attribute is overwritten below the class definition
8297
+ is_vault_locked = None
8298
+ # Attribute is overwritten below the class definition
8295
8299
is_family = None
8296
8300
# Attribute is overwritten below the class definition
8297
8301
other = None
@@ -8419,6 +8423,14 @@ def is_is_vault(self):
8419
8423
"""
8420
8424
return self ._tag == 'is_vault'
8421
8425
8426
+ def is_is_vault_locked (self ):
8427
+ """
8428
+ Check if the union tag is ``is_vault_locked``.
8429
+
8430
+ :rtype: bool
8431
+ """
8432
+ return self ._tag == 'is_vault_locked'
8433
+
8422
8434
def is_is_family (self ):
8423
8435
"""
8424
8436
Check if the union tag is ``is_family``.
@@ -12793,6 +12805,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor):
12793
12805
SharePathError ._is_osx_package_validator = bv .Void ()
12794
12806
SharePathError ._inside_osx_package_validator = bv .Void ()
12795
12807
SharePathError ._is_vault_validator = bv .Void ()
12808
+ SharePathError ._is_vault_locked_validator = bv .Void ()
12796
12809
SharePathError ._is_family_validator = bv .Void ()
12797
12810
SharePathError ._other_validator = bv .Void ()
12798
12811
SharePathError ._tagmap = {
@@ -12810,6 +12823,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor):
12810
12823
'is_osx_package' : SharePathError ._is_osx_package_validator ,
12811
12824
'inside_osx_package' : SharePathError ._inside_osx_package_validator ,
12812
12825
'is_vault' : SharePathError ._is_vault_validator ,
12826
+ 'is_vault_locked' : SharePathError ._is_vault_locked_validator ,
12813
12827
'is_family' : SharePathError ._is_family_validator ,
12814
12828
'other' : SharePathError ._other_validator ,
12815
12829
}
@@ -12827,6 +12841,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor):
12827
12841
SharePathError .is_osx_package = SharePathError ('is_osx_package' )
12828
12842
SharePathError .inside_osx_package = SharePathError ('inside_osx_package' )
12829
12843
SharePathError .is_vault = SharePathError ('is_vault' )
12844
+ SharePathError .is_vault_locked = SharePathError ('is_vault_locked' )
12830
12845
SharePathError .is_family = SharePathError ('is_family' )
12831
12846
SharePathError .other = SharePathError ('other' )
12832
12847
0 commit comments