ContentSettings Class 
The content settings of a blob.
Constructor
ContentSettings(content_type: str | None = None, content_encoding: str | None = None, content_language: str | None = None, content_disposition: str | None = None, cache_control: str | None = None, content_md5: bytearray | None = None, **kwargs: Any)Parameters
| 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. Default value: None | 
| content_encoding | If the content_encoding has previously been set for the blob, that value is stored. Default value: None | 
| content_language | If the content_language has previously been set for the blob, that value is stored. Default value: None | 
| 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. Default value: None | 
| cache_control | If the cache_control has previously been set for the blob, that value is stored. Default value: None | 
| 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. Default value: None | 
Methods
| get | |
| has_key | |
| items | |
| keys | |
| update | |
| values | 
get
get(key, default=None)Parameters
| Name | Description | 
|---|---|
| key 
				Required
			 |  | 
| default | Default value: None | 
has_key
has_key(k)Parameters
| Name | Description | 
|---|---|
| k 
				Required
			 |  | 
items
items()keys
keys()update
update(*args, **kwargs)values
values()Attributes
cache_control
The cache control specified for the blob.
cache_control: str | None = Nonecontent_disposition
The content disposition specified for the blob.
content_disposition: str | None = Nonecontent_encoding
The content encoding specified for the blob.
content_encoding: str | None = Nonecontent_language
The content language specified for the blob.
content_language: str | None = Nonecontent_md5
The content md5 specified for the blob.
content_md5: bytearray | None = Nonecontent_type
The content type specified for the blob.
content_type: str | None = None