docs/ContainerBlobResponse.md in pulp_container_client-2.19.3 vs docs/ContainerBlobResponse.md in pulp_container_client-2.19.4
- old
+ new
@@ -4,19 +4,21 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**pulp_href** | **String** | | [optional] [readonly]
**pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
+**pulp_last_updated** | **DateTime** | Timestamp of the last time this resource was updated. Note: for immutable resources - like content, repository versions, and publication - pulp_created and pulp_last_updated dates will be the same. | [optional] [readonly]
**artifact** | **String** | Artifact file representing the physical content |
**digest** | **String** | sha256 of the Blob file |
## Code Sample
```ruby
require 'PulpContainerClient'
instance = PulpContainerClient::ContainerBlobResponse.new(pulp_href: null,
pulp_created: null,
+ pulp_last_updated: null,
artifact: null,
digest: null)
```