docs/AnsibleCollectionVersion.md in pulp_ansible_client-0.19.0 vs docs/AnsibleCollectionVersion.md in pulp_ansible_client-0.20.0
- old
+ new
@@ -4,12 +4,12 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**upload** | **String** | An uncommitted upload that may be turned into the artifact of the content unit. | [optional]
**repository** | **String** | A URI of a repository the new content unit should be associated with. | [optional]
-**artifact** | **String** | Artifact file representing the physical content | [optional]
**file** | **File** | An uploaded file that may be turned into the artifact of the content unit. | [optional]
+**artifact** | **String** | Artifact file representing the physical content | [optional]
**expected_name** | **String** | The name of the collection. | [optional]
**expected_namespace** | **String** | The namespace of the collection. | [optional]
**expected_version** | **String** | The version of the collection. | [optional]
## Code Sample
@@ -17,11 +17,11 @@
```ruby
require 'PulpAnsibleClient'
instance = PulpAnsibleClient::AnsibleCollectionVersion.new(upload: null,
repository: null,
- artifact: null,
file: null,
+ artifact: null,
expected_name: null,
expected_namespace: null,
expected_version: null)
```