Include Class
Specifies the datasets to include in the blob list response.
- Inheritance
-
builtins.objectInclude
Constructor
Include(snapshots=False, metadata=False, uncommitted_blobs=False, copy=False, deleted=False, _str=None)
Parameters
Name | Description |
---|---|
snapshots
|
Specifies that snapshots should be included in the enumeration. Default value: False
|
metadata
|
Specifies that metadata be returned in the response. Default value: False
|
uncommitted_blobs
|
Specifies that blobs for which blocks have been uploaded, but which have not been committed using Put Block List, be included in the response. Default value: False
|
copy
|
Specifies that metadata related to any current or previous Copy Blob operation should be included in the response. Default value: False
|
deleted
|
Specifies that deleted blobs should be returned in the response. Default value: False
|
_str
|
A string representing the includes. Default value: None
|
Variables
Name | Description |
---|---|
Include.COPY
|
Specifies that metadata related to any current or previous Copy Blob operation should be included in the response. |
Include.METADATA
|
Specifies that metadata be returned in the response. |
Include.SNAPSHOTS
|
Specifies that snapshots should be included in the enumeration. |
Include.UNCOMMITTED_BLOBS
|
Specifies that blobs for which blocks have been uploaded, but which have not been committed using Put Block List, be included in the response. |
Include.DELETED
|
Specifies that deleted blobs should be returned in the response. |
Attributes
COPY
COPY = <azure.storage.blob.models.Include object>
DELETED
DELETED = <azure.storage.blob.models.Include object>
METADATA
METADATA = <azure.storage.blob.models.Include object>
SNAPSHOTS
SNAPSHOTS = <azure.storage.blob.models.Include object>
UNCOMMITTED_BLOBS
UNCOMMITTED_BLOBS = <azure.storage.blob.models.Include object>
Azure SDK for Python