docs/AnsibleCollectionVersion.md in pulp_ansible_client-0.15.1 vs docs/AnsibleCollectionVersion.md in pulp_ansible_client-0.15.2
- old
+ new
@@ -2,24 +2,24 @@
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
+**repository** | **String** | A URI of a repository the new content unit should be associated with. | [optional]
**upload** | **String** | An uncommitted upload that may be turned into the artifact of the content unit. | [optional]
**file** | **File** | An uploaded file 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]
**name** | **String** | The name of the collection. |
**namespace** | **String** | The namespace of the collection. |
**version** | **String** | The version of the collection. |
## Code Sample
```ruby
require 'PulpAnsibleClient'
-instance = PulpAnsibleClient::AnsibleCollectionVersion.new(upload: null,
+instance = PulpAnsibleClient::AnsibleCollectionVersion.new(repository: null,
+ upload: null,
file: null,
- repository: null,
name: null,
namespace: null,
version: null)
```