docs/AnsibleCollectionVersionSignatureResponse.md in pulp_ansible_client-0.21.6 vs docs/AnsibleCollectionVersionSignatureResponse.md in pulp_ansible_client-0.21.7
- old
+ new
@@ -4,10 +4,11 @@
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]
**signed_collection** | **String** | The content this signature is pointing to. |
**pubkey_fingerprint** | **String** | The fingerprint of the public key. | [optional] [readonly]
**signing_service** | **String** | The signing service used to create the signature. | [optional] [readonly]
## Code Sample
@@ -15,9 +16,10 @@
```ruby
require 'PulpAnsibleClient'
instance = PulpAnsibleClient::AnsibleCollectionVersionSignatureResponse.new(pulp_href: null,
pulp_created: null,
+ pulp_last_updated: null,
signed_collection: null,
pubkey_fingerprint: null,
signing_service: null)
```