docs/AnsibleCollectionVersion.md in pulp_ansible_client-0.22.3 vs docs/AnsibleCollectionVersion.md in pulp_ansible_client-0.23.0

- old
+ new

@@ -2,28 +2,28 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**artifact** | **String** | Artifact file representing the physical content | [optional] **file** | **File** | An uploaded file that may be turned into 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_url** | **String** | A url that Pulp can download and turn into the content unit. | [optional] **upload** | **String** | An uncommitted upload that may be turned into the content unit. | [optional] -**repository** | **String** | A URI of a repository the new content unit should be associated with. | [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 ```ruby require 'PulpAnsibleClient' -instance = PulpAnsibleClient::AnsibleCollectionVersion.new(artifact: null, - file: null, +instance = PulpAnsibleClient::AnsibleCollectionVersion.new(file: null, + repository: null, + artifact: null, file_url: null, upload: null, - repository: null, expected_name: null, expected_namespace: null, expected_version: null) ```