EncryptionScopeOptions Class
The default encryption scope configuration for a file system.
This scope is used implicitly for all future writes within the file system, but can be overridden per blob operation.
New in version 12.9.0.
- Inheritance
-
azure.storage.blob._models.ContainerEncryptionScopeEncryptionScopeOptions
Constructor
EncryptionScopeOptions(default_encryption_scope: str, **kwargs: Any)
Parameters
Name | Description |
---|---|
default_encryption_scope
Required
|
Specifies the default encryption scope to set on the file system and use for all future writes. |
prevent_encryption_scope_override
Required
|
If true, prevents any request from specifying a different encryption scope than the scope set on the file system. Default value is false. |
Attributes
default_encryption_scope
Specifies the default encryption scope to set on the container and use for all future writes.
default_encryption_scope: str
prevent_encryption_scope_override
If true, prevents any request from specifying a different encryption scope than the scope set on the container.
prevent_encryption_scope_override: bool
Azure SDK for Python