ContentSettings Class
Used to store the content settings of a blob.
- Inheritance
-
builtins.objectContentSettings
Constructor
ContentSettings(content_type=None, content_encoding=None, content_language=None, content_disposition=None, cache_control=None, content_md5=None)
Parameters
Name | Description |
---|---|
content_type
|
Default value: None
|
content_encoding
|
Default value: None
|
content_language
|
Default value: None
|
content_disposition
|
Default value: None
|
cache_control
|
Default value: None
|
content_md5
|
Default value: None
|
Variables
Name | Description |
---|---|
content_type
|
The content type specified for the blob. If no content type was specified, the default content type is application/octet-stream. |
content_encoding
|
If the content_encoding has previously been set for the blob, that value is stored. |
content_language
|
If the content_language has previously been set for the blob, that value is stored. |
content_disposition
|
content_disposition conveys additional information about how to process the response payload, and also can be used to attach additional metadata. If content_disposition has previously been set for the blob, that value is stored. |
cache_control
|
If the cache_control has previously been set for the blob, that value is stored. |
content_md5
|
If the content_md5 has been set for the blob, this response header is stored so that the client can check for message content integrity. |
Azure SDK for Python