pulp_ansible_client 0.18.1 → 0.20.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (79) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +6 -7
  3. data/docs/AnsibleAnsibleRepositoryResponse.md +1 -1
  4. data/docs/AnsibleCollectionRemoteResponse.md +1 -1
  5. data/docs/AnsibleCollectionVersion.md +5 -5
  6. data/docs/AnsibleCollectionVersionResponse.md +3 -3
  7. data/docs/AnsibleGitRemote.md +26 -26
  8. data/docs/AnsibleGitRemoteResponse.md +26 -26
  9. data/docs/AnsibleRole.md +3 -3
  10. data/docs/AnsibleRoleResponse.md +3 -3
  11. data/docs/CollectionNamespaceResponse.md +1 -1
  12. data/docs/CollectionResponse.md +5 -3
  13. data/docs/CollectionVersionListResponse.md +1 -1
  14. data/docs/CollectionVersionResponse.md +2 -2
  15. data/docs/CollectionVersionSignatureResponse.md +23 -0
  16. data/docs/ContentCollectionVersionsApi.md +6 -6
  17. data/docs/PatchedCollection.md +17 -0
  18. data/docs/PatchedansibleGitRemote.md +26 -26
  19. data/docs/PulpAnsibleApiV3CollectionsApi.md +4 -4
  20. data/docs/PulpAnsibleApiV3CollectionsVersionsApi.md +2 -2
  21. data/docs/PulpAnsibleApiV3PluginAnsibleContentCollectionsIndexApi.md +4 -4
  22. data/docs/PulpAnsibleApiV3PluginAnsibleContentCollectionsIndexVersionsApi.md +2 -2
  23. data/docs/PulpAnsibleDefaultApiV3CollectionsApi.md +4 -4
  24. data/docs/PulpAnsibleDefaultApiV3CollectionsVersionsApi.md +2 -2
  25. data/docs/PulpAnsibleDefaultApiV3PluginAnsibleContentCollectionsIndexApi.md +4 -4
  26. data/docs/PulpAnsibleDefaultApiV3PluginAnsibleContentCollectionsIndexVersionsApi.md +2 -2
  27. data/docs/UnpaginatedCollectionVersionResponse.md +2 -2
  28. data/lib/pulp_ansible_client/api/content_collection_versions_api.rb +9 -9
  29. data/lib/pulp_ansible_client/api/pulp_ansible_api_v3_collections_api.rb +9 -9
  30. data/lib/pulp_ansible_client/api/pulp_ansible_api_v3_collections_versions_api.rb +3 -3
  31. data/lib/pulp_ansible_client/api/pulp_ansible_api_v3_plugin_ansible_content_collections_index_api.rb +9 -9
  32. data/lib/pulp_ansible_client/api/pulp_ansible_api_v3_plugin_ansible_content_collections_index_versions_api.rb +3 -3
  33. data/lib/pulp_ansible_client/api/pulp_ansible_default_api_v3_collections_api.rb +9 -9
  34. data/lib/pulp_ansible_client/api/pulp_ansible_default_api_v3_collections_versions_api.rb +3 -3
  35. data/lib/pulp_ansible_client/api/pulp_ansible_default_api_v3_plugin_ansible_content_collections_index_api.rb +9 -9
  36. data/lib/pulp_ansible_client/api/pulp_ansible_default_api_v3_plugin_ansible_content_collections_index_versions_api.rb +3 -3
  37. data/lib/pulp_ansible_client/models/ansible_ansible_repository_response.rb +1 -1
  38. data/lib/pulp_ansible_client/models/ansible_collection_remote_response.rb +1 -1
  39. data/lib/pulp_ansible_client/models/ansible_collection_version.rb +18 -18
  40. data/lib/pulp_ansible_client/models/ansible_collection_version_response.rb +10 -10
  41. data/lib/pulp_ansible_client/models/ansible_git_remote.rb +242 -242
  42. data/lib/pulp_ansible_client/models/ansible_git_remote_response.rb +144 -144
  43. data/lib/pulp_ansible_client/models/ansible_role.rb +11 -11
  44. data/lib/pulp_ansible_client/models/ansible_role_response.rb +10 -10
  45. data/lib/pulp_ansible_client/models/collection_namespace_response.rb +1 -0
  46. data/lib/pulp_ansible_client/models/collection_response.rb +19 -6
  47. data/lib/pulp_ansible_client/models/collection_version_list_response.rb +24 -0
  48. data/lib/pulp_ansible_client/models/collection_version_response.rb +33 -2
  49. data/lib/pulp_ansible_client/models/{task.rb → collection_version_signature_response.rb} +49 -56
  50. data/lib/pulp_ansible_client/models/{progress_report_response.rb → patched_collection.rb} +11 -63
  51. data/lib/pulp_ansible_client/models/patchedansible_git_remote.rb +229 -229
  52. data/lib/pulp_ansible_client/models/unpaginated_collection_version_response.rb +33 -2
  53. data/lib/pulp_ansible_client/version.rb +1 -1
  54. data/lib/pulp_ansible_client.rb +2 -3
  55. data/spec/api/content_collection_versions_api_spec.rb +3 -3
  56. data/spec/api/pulp_ansible_api_v3_collections_api_spec.rb +1 -1
  57. data/spec/api/pulp_ansible_api_v3_collections_versions_api_spec.rb +1 -1
  58. data/spec/api/pulp_ansible_api_v3_plugin_ansible_content_collections_index_api_spec.rb +1 -1
  59. data/spec/api/pulp_ansible_api_v3_plugin_ansible_content_collections_index_versions_api_spec.rb +1 -1
  60. data/spec/api/pulp_ansible_default_api_v3_collections_api_spec.rb +1 -1
  61. data/spec/api/pulp_ansible_default_api_v3_collections_versions_api_spec.rb +1 -1
  62. data/spec/api/pulp_ansible_default_api_v3_plugin_ansible_content_collections_index_api_spec.rb +1 -1
  63. data/spec/api/pulp_ansible_default_api_v3_plugin_ansible_content_collections_index_versions_api_spec.rb +1 -1
  64. data/spec/models/ansible_collection_version_response_spec.rb +3 -3
  65. data/spec/models/ansible_collection_version_spec.rb +3 -3
  66. data/spec/models/ansible_git_remote_response_spec.rb +19 -19
  67. data/spec/models/ansible_git_remote_spec.rb +19 -19
  68. data/spec/models/ansible_role_response_spec.rb +3 -3
  69. data/spec/models/ansible_role_spec.rb +2 -2
  70. data/spec/models/collection_response_spec.rb +6 -0
  71. data/spec/models/{progress_report_response_spec.rb → collection_version_signature_response_spec.rb} +10 -22
  72. data/spec/models/{task_spec.rb → patched_collection_spec.rb} +7 -13
  73. data/spec/models/patchedansible_git_remote_spec.rb +19 -19
  74. metadata +10 -14
  75. data/docs/ProgressReportResponse.md +0 -27
  76. data/docs/Task.md +0 -19
  77. data/docs/TaskResponse.md +0 -47
  78. data/lib/pulp_ansible_client/models/task_response.rb +0 -376
  79. data/spec/models/task_response_spec.rb +0 -131
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 40a1b7af04c8fe96c03236b8a551336250394b43a36110775243df66143e0040
4
- data.tar.gz: ae3e72347d39a74e3aeaaff3794ae92e1e8e92b2aa83028417723739b20cd200
3
+ metadata.gz: c8d42d3a81963bc7b190ef606f7b38c0f0813667bbf752a871080d1e1a6e181b
4
+ data.tar.gz: e3187a88c6e60d495dfdd77a5542c18a3fb910bf3a01b17c03b9f981624f29df
5
5
  SHA512:
6
- metadata.gz: 56e9773fbdc415eab01ea84cffdb670a49f8b4e72d0827d871180f0f2f7764233dd12b5c231d095cfc9fdbe879e7cd6b91996967df782c3837099d0bd9fb0af4
7
- data.tar.gz: 7af72ede02672301309508373c4e7a4a90d7d426c1ff97f4dccb25c9284514f20475e0109c497dd1fa73525f1bedc07d9beb67b496bc1c98430943c74b4039a4
6
+ metadata.gz: 2c5ee79c0a88de9a3da372d0e1129aa9ba9b2633e6598e8330557b93dbcc2e7ae788560baa9925ee257116cae8e23f95263c59eeaf81e2bc695a5e18e06311a0
7
+ data.tar.gz: 84dee54c7195c7d62e47bbdcea437514ed554f83382593a772ee08e16a797510fdfbc3088470a6b2ddc416ab591372a95319a2fe7938435b3ceb115454702188
data/README.md CHANGED
@@ -7,7 +7,7 @@ Fetch, Upload, Organize, and Distribute Software Packages
7
7
  This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
8
8
 
9
9
  - API version: v3
10
- - Package version: 0.18.1
10
+ - Package version: 0.20.0
11
11
  - Build package: org.openapitools.codegen.languages.RubyClientCodegen
12
12
  For more information, please visit [https://pulpproject.org](https://pulpproject.org)
13
13
 
@@ -24,16 +24,16 @@ gem build pulp_ansible_client.gemspec
24
24
  Then either install the gem locally:
25
25
 
26
26
  ```shell
27
- gem install ./pulp_ansible_client-0.18.1.gem
27
+ gem install ./pulp_ansible_client-0.20.0.gem
28
28
  ```
29
29
 
30
- (for development, run `gem install --dev ./pulp_ansible_client-0.18.1.gem` to install the development dependencies)
30
+ (for development, run `gem install --dev ./pulp_ansible_client-0.20.0.gem` to install the development dependencies)
31
31
 
32
32
  or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
33
33
 
34
34
  Finally add this to the Gemfile:
35
35
 
36
- gem 'pulp_ansible_client', '~> 0.18.1'
36
+ gem 'pulp_ansible_client', '~> 0.20.0'
37
37
 
38
38
  ### Install from Git
39
39
 
@@ -313,6 +313,7 @@ Class | Method | HTTP request | Description
313
313
  - [PulpAnsibleClient::CollectionVersionResponse](docs/CollectionVersionResponse.md)
314
314
  - [PulpAnsibleClient::CollectionVersionSearchList](docs/CollectionVersionSearchList.md)
315
315
  - [PulpAnsibleClient::CollectionVersionSearchListResponse](docs/CollectionVersionSearchListResponse.md)
316
+ - [PulpAnsibleClient::CollectionVersionSignatureResponse](docs/CollectionVersionSignatureResponse.md)
316
317
  - [PulpAnsibleClient::ContentSummaryResponse](docs/ContentSummaryResponse.md)
317
318
  - [PulpAnsibleClient::Copy](docs/Copy.md)
318
319
  - [PulpAnsibleClient::GalaxyCollection](docs/GalaxyCollection.md)
@@ -348,6 +349,7 @@ Class | Method | HTTP request | Description
348
349
  - [PulpAnsibleClient::PaginatedansibleGitRemoteResponseList](docs/PaginatedansibleGitRemoteResponseList.md)
349
350
  - [PulpAnsibleClient::PaginatedansibleRoleRemoteResponseList](docs/PaginatedansibleRoleRemoteResponseList.md)
350
351
  - [PulpAnsibleClient::PaginatedansibleRoleResponseList](docs/PaginatedansibleRoleResponseList.md)
352
+ - [PulpAnsibleClient::PatchedCollection](docs/PatchedCollection.md)
351
353
  - [PulpAnsibleClient::PatchedansibleAnsibleDistribution](docs/PatchedansibleAnsibleDistribution.md)
352
354
  - [PulpAnsibleClient::PatchedansibleAnsibleNamespaceMetadata](docs/PatchedansibleAnsibleNamespaceMetadata.md)
353
355
  - [PulpAnsibleClient::PatchedansibleAnsibleRepository](docs/PatchedansibleAnsibleRepository.md)
@@ -355,7 +357,6 @@ Class | Method | HTTP request | Description
355
357
  - [PulpAnsibleClient::PatchedansibleGitRemote](docs/PatchedansibleGitRemote.md)
356
358
  - [PulpAnsibleClient::PatchedansibleRoleRemote](docs/PatchedansibleRoleRemote.md)
357
359
  - [PulpAnsibleClient::PolicyEnum](docs/PolicyEnum.md)
358
- - [PulpAnsibleClient::ProgressReportResponse](docs/ProgressReportResponse.md)
359
360
  - [PulpAnsibleClient::Repair](docs/Repair.md)
360
361
  - [PulpAnsibleClient::RepoMetadataResponse](docs/RepoMetadataResponse.md)
361
362
  - [PulpAnsibleClient::Repository](docs/Repository.md)
@@ -365,8 +366,6 @@ Class | Method | HTTP request | Description
365
366
  - [PulpAnsibleClient::SetLabel](docs/SetLabel.md)
366
367
  - [PulpAnsibleClient::SetLabelResponse](docs/SetLabelResponse.md)
367
368
  - [PulpAnsibleClient::TagResponse](docs/TagResponse.md)
368
- - [PulpAnsibleClient::Task](docs/Task.md)
369
- - [PulpAnsibleClient::TaskResponse](docs/TaskResponse.md)
370
369
  - [PulpAnsibleClient::UnpaginatedCollectionVersionResponse](docs/UnpaginatedCollectionVersionResponse.md)
371
370
  - [PulpAnsibleClient::UnsetLabel](docs/UnsetLabel.md)
372
371
  - [PulpAnsibleClient::UnsetLabelResponse](docs/UnsetLabelResponse.md)
@@ -15,7 +15,7 @@ Name | Type | Description | Notes
15
15
  **remote** | **String** | An optional remote to use by default when syncing. | [optional]
16
16
  **last_synced_metadata_time** | **DateTime** | Last synced metadata time. | [optional]
17
17
  **gpgkey** | **String** | Gpg public key to verify collection signatures against | [optional]
18
- **last_sync_task** | [**TaskResponse**](TaskResponse.md) | | [optional] [readonly]
18
+ **last_sync_task** | **String** | | [optional] [readonly]
19
19
  **private** | **Boolean** | | [optional]
20
20
 
21
21
  ## Code Sample
@@ -28,7 +28,7 @@ Name | Type | Description | Notes
28
28
  **auth_url** | **String** | The URL to receive a session token from, e.g. used with Automation Hub. | [optional]
29
29
  **sync_dependencies** | **Boolean** | Sync dependencies for collections specified via requirements file | [optional] [default to true]
30
30
  **signed_only** | **Boolean** | Sync only collections that have a signature | [optional] [default to false]
31
- **last_sync_task** | [**TaskResponse**](TaskResponse.md) | | [optional] [readonly]
31
+ **last_sync_task** | **String** | | [optional] [readonly]
32
32
 
33
33
  ## Code Sample
34
34
 
@@ -4,10 +4,10 @@
4
4
 
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
- **artifact** | **String** | Artifact file representing the physical content | [optional]
8
7
  **upload** | **String** | An uncommitted upload that may be turned into the artifact of the content unit. | [optional]
9
- **file** | **File** | An uploaded file that may be turned into the artifact of the content unit. | [optional]
10
8
  **repository** | **String** | A URI of a repository the new content unit should be associated with. | [optional]
9
+ **file** | **File** | An uploaded file that may be turned into the artifact of the content unit. | [optional]
10
+ **artifact** | **String** | Artifact file representing the physical content | [optional]
11
11
  **expected_name** | **String** | The name of the collection. | [optional]
12
12
  **expected_namespace** | **String** | The namespace of the collection. | [optional]
13
13
  **expected_version** | **String** | The version of the collection. | [optional]
@@ -17,10 +17,10 @@ Name | Type | Description | Notes
17
17
  ```ruby
18
18
  require 'PulpAnsibleClient'
19
19
 
20
- instance = PulpAnsibleClient::AnsibleCollectionVersion.new(artifact: null,
21
- upload: null,
22
- file: null,
20
+ instance = PulpAnsibleClient::AnsibleCollectionVersion.new(upload: null,
23
21
  repository: null,
22
+ file: null,
23
+ artifact: null,
24
24
  expected_name: null,
25
25
  expected_namespace: null,
26
26
  expected_version: null)
@@ -4,9 +4,9 @@
4
4
 
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
+ **pulp_href** | **String** | | [optional] [readonly]
7
8
  **pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
8
9
  **artifact** | **String** | Artifact file representing the physical content | [optional]
9
- **pulp_href** | **String** | | [optional] [readonly]
10
10
  **sha256** | **String** | The SHA-256 checksum if available. | [optional] [readonly]
11
11
  **md5** | **String** | The MD5 checksum if available. | [optional] [readonly]
12
12
  **sha1** | **String** | The SHA-1 checksum if available. | [optional] [readonly]
@@ -37,9 +37,9 @@ Name | Type | Description | Notes
37
37
  ```ruby
38
38
  require 'PulpAnsibleClient'
39
39
 
40
- instance = PulpAnsibleClient::AnsibleCollectionVersionResponse.new(pulp_created: null,
40
+ instance = PulpAnsibleClient::AnsibleCollectionVersionResponse.new(pulp_href: null,
41
+ pulp_created: null,
41
42
  artifact: null,
42
- pulp_href: null,
43
43
  sha256: null,
44
44
  md5: null,
45
45
  sha1: null,
@@ -4,26 +4,26 @@
4
4
 
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
- **sock_read_timeout** | **Float** | aiohttp.ClientTimeout.sock_read (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used. | [optional]
7
+ **rate_limit** | **Integer** | Limits requests per second for each concurrent downloader | [optional]
8
+ **download_concurrency** | **Integer** | Total number of simultaneous connections. If not set then the default value will be used. | [optional]
9
+ **name** | **String** | A unique name for this remote. |
10
+ **proxy_url** | **String** | The proxy URL. Format: scheme://host:port | [optional]
11
+ **max_retries** | **Integer** | Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used. | [optional]
12
+ **url** | **String** | The URL of an external content source. |
8
13
  **sock_connect_timeout** | **Float** | aiohttp.ClientTimeout.sock_connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used. | [optional]
9
14
  **connect_timeout** | **Float** | aiohttp.ClientTimeout.connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used. | [optional]
10
- **ca_cert** | **String** | A PEM encoded CA certificate used to validate the server certificate presented by the remote server. | [optional]
11
- **proxy_url** | **String** | The proxy URL. Format: scheme://host:port | [optional]
12
- **tls_validation** | **Boolean** | If True, TLS peer validation must be performed. | [optional]
13
- **proxy_password** | **String** | The password to authenticate to the proxy. Extra leading and trailing whitespace characters are not trimmed. | [optional]
15
+ **client_key** | **String** | A PEM encoded private key used for authentication. | [optional]
14
16
  **total_timeout** | **Float** | aiohttp.ClientTimeout.total (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used. | [optional]
17
+ **ca_cert** | **String** | A PEM encoded CA certificate used to validate the server certificate presented by the remote server. | [optional]
15
18
  **pulp_labels** | **Hash<String, String>** | | [optional]
19
+ **headers** | **Array<Object>** | Headers for aiohttp.Clientsession | [optional]
20
+ **client_cert** | **String** | A PEM encoded client certificate used for authentication. | [optional]
21
+ **proxy_password** | **String** | The password to authenticate to the proxy. Extra leading and trailing whitespace characters are not trimmed. | [optional]
16
22
  **username** | **String** | The username to be used for authentication when syncing. | [optional]
17
- **url** | **String** | The URL of an external content source. |
18
23
  **password** | **String** | The password to be used for authentication when syncing. Extra leading and trailing whitespace characters are not trimmed. | [optional]
19
- **client_key** | **String** | A PEM encoded private key used for authentication. | [optional]
20
- **download_concurrency** | **Integer** | Total number of simultaneous connections. If not set then the default value will be used. | [optional]
21
- **name** | **String** | A unique name for this remote. |
22
- **client_cert** | **String** | A PEM encoded client certificate used for authentication. | [optional]
23
- **rate_limit** | **Integer** | Limits requests per second for each concurrent downloader | [optional]
24
24
  **proxy_username** | **String** | The username to authenticte to the proxy. | [optional]
25
- **headers** | **Array<Object>** | Headers for aiohttp.Clientsession | [optional]
26
- **max_retries** | **Integer** | Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used. | [optional]
25
+ **sock_read_timeout** | **Float** | aiohttp.ClientTimeout.sock_read (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used. | [optional]
26
+ **tls_validation** | **Boolean** | If True, TLS peer validation must be performed. | [optional]
27
27
  **metadata_only** | **Boolean** | If True, only metadata about the content will be stored in Pulp. Clients will retrieve content from the remote URL. | [optional]
28
28
  **git_ref** | **String** | A git ref. e.g.: branch, tag, or commit sha. | [optional]
29
29
 
@@ -32,26 +32,26 @@ Name | Type | Description | Notes
32
32
  ```ruby
33
33
  require 'PulpAnsibleClient'
34
34
 
35
- instance = PulpAnsibleClient::AnsibleGitRemote.new(sock_read_timeout: null,
35
+ instance = PulpAnsibleClient::AnsibleGitRemote.new(rate_limit: null,
36
+ download_concurrency: null,
37
+ name: null,
38
+ proxy_url: null,
39
+ max_retries: null,
40
+ url: null,
36
41
  sock_connect_timeout: null,
37
42
  connect_timeout: null,
38
- ca_cert: null,
39
- proxy_url: null,
40
- tls_validation: null,
41
- proxy_password: null,
43
+ client_key: null,
42
44
  total_timeout: null,
45
+ ca_cert: null,
43
46
  pulp_labels: null,
47
+ headers: null,
48
+ client_cert: null,
49
+ proxy_password: null,
44
50
  username: null,
45
- url: null,
46
51
  password: null,
47
- client_key: null,
48
- download_concurrency: null,
49
- name: null,
50
- client_cert: null,
51
- rate_limit: null,
52
52
  proxy_username: null,
53
- headers: null,
54
- max_retries: null,
53
+ sock_read_timeout: null,
54
+ tls_validation: null,
55
55
  metadata_only: null,
56
56
  git_ref: null)
57
57
  ```
@@ -4,25 +4,25 @@
4
4
 
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
- **pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
8
- **sock_read_timeout** | **Float** | aiohttp.ClientTimeout.sock_read (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used. | [optional]
9
- **sock_connect_timeout** | **Float** | aiohttp.ClientTimeout.sock_connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used. | [optional]
10
- **connect_timeout** | **Float** | aiohttp.ClientTimeout.connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used. | [optional]
11
- **ca_cert** | **String** | A PEM encoded CA certificate used to validate the server certificate presented by the remote server. | [optional]
7
+ **rate_limit** | **Integer** | Limits requests per second for each concurrent downloader | [optional]
8
+ **download_concurrency** | **Integer** | Total number of simultaneous connections. If not set then the default value will be used. | [optional]
9
+ **name** | **String** | A unique name for this remote. |
12
10
  **proxy_url** | **String** | The proxy URL. Format: scheme://host:port | [optional]
11
+ **max_retries** | **Integer** | Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used. | [optional]
12
+ **url** | **String** | The URL of an external content source. |
13
+ **sock_connect_timeout** | **Float** | aiohttp.ClientTimeout.sock_connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used. | [optional]
13
14
  **pulp_last_updated** | **DateTime** | Timestamp of the most recent update of the remote. | [optional] [readonly]
14
- **tls_validation** | **Boolean** | If True, TLS peer validation must be performed. | [optional]
15
+ **hidden_fields** | [**Array<AnsibleCollectionRemoteResponseHiddenFields>**](AnsibleCollectionRemoteResponseHiddenFields.md) | List of hidden (write only) fields | [optional] [readonly]
16
+ **pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
17
+ **connect_timeout** | **Float** | aiohttp.ClientTimeout.connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used. | [optional]
15
18
  **total_timeout** | **Float** | aiohttp.ClientTimeout.total (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used. | [optional]
19
+ **ca_cert** | **String** | A PEM encoded CA certificate used to validate the server certificate presented by the remote server. | [optional]
16
20
  **pulp_labels** | **Hash<String, String>** | | [optional]
17
- **url** | **String** | The URL of an external content source. |
18
21
  **pulp_href** | **String** | | [optional] [readonly]
19
- **download_concurrency** | **Integer** | Total number of simultaneous connections. If not set then the default value will be used. | [optional]
20
- **name** | **String** | A unique name for this remote. |
21
- **client_cert** | **String** | A PEM encoded client certificate used for authentication. | [optional]
22
- **rate_limit** | **Integer** | Limits requests per second for each concurrent downloader | [optional]
23
22
  **headers** | **Array<Object>** | Headers for aiohttp.Clientsession | [optional]
24
- **max_retries** | **Integer** | Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used. | [optional]
25
- **hidden_fields** | [**Array<AnsibleCollectionRemoteResponseHiddenFields>**](AnsibleCollectionRemoteResponseHiddenFields.md) | List of hidden (write only) fields | [optional] [readonly]
23
+ **client_cert** | **String** | A PEM encoded client certificate used for authentication. | [optional]
24
+ **sock_read_timeout** | **Float** | aiohttp.ClientTimeout.sock_read (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used. | [optional]
25
+ **tls_validation** | **Boolean** | If True, TLS peer validation must be performed. | [optional]
26
26
  **metadata_only** | **Boolean** | If True, only metadata about the content will be stored in Pulp. Clients will retrieve content from the remote URL. | [optional]
27
27
  **git_ref** | **String** | A git ref. e.g.: branch, tag, or commit sha. | [optional]
28
28
 
@@ -31,25 +31,25 @@ Name | Type | Description | Notes
31
31
  ```ruby
32
32
  require 'PulpAnsibleClient'
33
33
 
34
- instance = PulpAnsibleClient::AnsibleGitRemoteResponse.new(pulp_created: null,
35
- sock_read_timeout: null,
36
- sock_connect_timeout: null,
37
- connect_timeout: null,
38
- ca_cert: null,
34
+ instance = PulpAnsibleClient::AnsibleGitRemoteResponse.new(rate_limit: null,
35
+ download_concurrency: null,
36
+ name: null,
39
37
  proxy_url: null,
38
+ max_retries: null,
39
+ url: null,
40
+ sock_connect_timeout: null,
40
41
  pulp_last_updated: null,
41
- tls_validation: null,
42
+ hidden_fields: null,
43
+ pulp_created: null,
44
+ connect_timeout: null,
42
45
  total_timeout: null,
46
+ ca_cert: null,
43
47
  pulp_labels: null,
44
- url: null,
45
48
  pulp_href: null,
46
- download_concurrency: null,
47
- name: null,
48
- client_cert: null,
49
- rate_limit: null,
50
49
  headers: null,
51
- max_retries: null,
52
- hidden_fields: null,
50
+ client_cert: null,
51
+ sock_read_timeout: null,
52
+ tls_validation: null,
53
53
  metadata_only: null,
54
54
  git_ref: null)
55
55
  ```
data/docs/AnsibleRole.md CHANGED
@@ -4,8 +4,8 @@
4
4
 
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
- **artifact** | **String** | Artifact file representing the physical content |
8
7
  **repository** | **String** | A URI of a repository the new content unit should be associated with. | [optional]
8
+ **artifact** | **String** | Artifact file representing the physical content |
9
9
  **version** | **String** | |
10
10
  **name** | **String** | |
11
11
  **namespace** | **String** | |
@@ -15,8 +15,8 @@ Name | Type | Description | Notes
15
15
  ```ruby
16
16
  require 'PulpAnsibleClient'
17
17
 
18
- instance = PulpAnsibleClient::AnsibleRole.new(artifact: null,
19
- repository: null,
18
+ instance = PulpAnsibleClient::AnsibleRole.new(repository: null,
19
+ artifact: null,
20
20
  version: null,
21
21
  name: null,
22
22
  namespace: null)
@@ -4,9 +4,9 @@
4
4
 
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
+ **pulp_href** | **String** | | [optional] [readonly]
7
8
  **pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
8
9
  **artifact** | **String** | Artifact file representing the physical content |
9
- **pulp_href** | **String** | | [optional] [readonly]
10
10
  **version** | **String** | |
11
11
  **name** | **String** | |
12
12
  **namespace** | **String** | |
@@ -16,9 +16,9 @@ Name | Type | Description | Notes
16
16
  ```ruby
17
17
  require 'PulpAnsibleClient'
18
18
 
19
- instance = PulpAnsibleClient::AnsibleRoleResponse.new(pulp_created: null,
19
+ instance = PulpAnsibleClient::AnsibleRoleResponse.new(pulp_href: null,
20
+ pulp_created: null,
20
21
  artifact: null,
21
- pulp_href: null,
22
22
  version: null,
23
23
  name: null,
24
24
  namespace: null)
@@ -5,7 +5,7 @@
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
7
  **name** | **String** | |
8
- **metadata_sha256** | **String** | | [optional] [readonly]
8
+ **metadata_sha256** | **String** | |
9
9
 
10
10
  ## Code Sample
11
11
 
@@ -7,11 +7,12 @@ Name | Type | Description | Notes
7
7
  **href** | **String** | Get href. | [optional] [readonly]
8
8
  **namespace** | **String** | | [optional] [readonly]
9
9
  **name** | **String** | | [optional] [readonly]
10
- **deprecated** | **Boolean** | Get deprecated. | [optional] [readonly]
10
+ **deprecated** | **Boolean** | |
11
11
  **versions_url** | **String** | Get a link to a collection versions list. | [optional] [readonly]
12
12
  **highest_version** | [**Object**](.md) | Get a highest version and its link. | [optional] [readonly]
13
13
  **created_at** | **DateTime** | Get the timestamp of the lowest version CollectionVersion's created timestamp. | [optional] [readonly]
14
- **updated_at** | **DateTime** | Get the timestamp of the highest version CollectionVersion's created timestamp. | [optional] [readonly]
14
+ **updated_at** | **DateTime** | Get the timestamp of the latest version CollectionVersion's created timestamp. | [optional] [readonly]
15
+ **download_count** | **String** | | [optional] [readonly]
15
16
 
16
17
  ## Code Sample
17
18
 
@@ -25,7 +26,8 @@ instance = PulpAnsibleClient::CollectionResponse.new(href: null,
25
26
  versions_url: null,
26
27
  highest_version: null,
27
28
  created_at: null,
28
- updated_at: null)
29
+ updated_at: null,
30
+ download_count: null)
29
31
  ```
30
32
 
31
33
 
@@ -4,7 +4,7 @@
4
4
 
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
- **version** | **String** | | [optional] [readonly]
7
+ **version** | **String** | |
8
8
  **href** | **String** | Get href. | [optional] [readonly]
9
9
  **created_at** | **DateTime** | |
10
10
  **updated_at** | **DateTime** | |
@@ -4,7 +4,7 @@
4
4
 
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
- **version** | **String** | | [optional] [readonly]
7
+ **version** | **String** | |
8
8
  **href** | **String** | Get href. | [optional] [readonly]
9
9
  **created_at** | **DateTime** | |
10
10
  **updated_at** | **DateTime** | |
@@ -15,7 +15,7 @@ Name | Type | Description | Notes
15
15
  **download_url** | **String** | Get artifact download URL. | [optional] [readonly]
16
16
  **name** | **String** | | [optional] [readonly]
17
17
  **namespace** | [**CollectionNamespaceResponse**](CollectionNamespaceResponse.md) | | [optional] [readonly]
18
- **signatures** | **String** | | [optional] [readonly]
18
+ **signatures** | [**Array<CollectionVersionSignatureResponse>**](CollectionVersionSignatureResponse.md) | |
19
19
  **metadata** | [**CollectionMetadataResponse**](CollectionMetadataResponse.md) | | [optional] [readonly]
20
20
  **git_url** | **String** | Get the git URL. | [optional] [readonly]
21
21
  **git_commit_sha** | **String** | Get the git commit sha. | [optional] [readonly]
@@ -0,0 +1,23 @@
1
+ # PulpAnsibleClient::CollectionVersionSignatureResponse
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **signature** | **String** | | [optional] [readonly]
8
+ **pubkey_fingerprint** | **String** | |
9
+ **signing_service** | **String** | | [optional] [readonly]
10
+ **pulp_created** | **DateTime** | | [optional] [readonly]
11
+
12
+ ## Code Sample
13
+
14
+ ```ruby
15
+ require 'PulpAnsibleClient'
16
+
17
+ instance = PulpAnsibleClient::CollectionVersionSignatureResponse.new(signature: null,
18
+ pubkey_fingerprint: null,
19
+ signing_service: null,
20
+ pulp_created: null)
21
+ ```
22
+
23
+
@@ -32,10 +32,10 @@ end
32
32
 
33
33
  api_instance = PulpAnsibleClient::ContentCollectionVersionsApi.new
34
34
  opts = {
35
- artifact: 'artifact_example', # String | Artifact file representing the physical content
36
35
  upload: 'upload_example', # String | An uncommitted upload that may be turned into the artifact of the content unit.
37
- file: File.new('/path/to/file'), # File | An uploaded file that may be turned into the artifact of the content unit.
38
36
  repository: 'repository_example', # String | A URI of a repository the new content unit should be associated with.
37
+ file: File.new('/path/to/file'), # File | An uploaded file that may be turned into the artifact of the content unit.
38
+ artifact: 'artifact_example', # String | Artifact file representing the physical content
39
39
  expected_name: 'expected_name_example', # String | The name of the collection.
40
40
  expected_namespace: 'expected_namespace_example', # String | The namespace of the collection.
41
41
  expected_version: 'expected_version_example' # String | The version of the collection.
@@ -55,10 +55,10 @@ end
55
55
 
56
56
  Name | Type | Description | Notes
57
57
  ------------- | ------------- | ------------- | -------------
58
- **artifact** | **String**| Artifact file representing the physical content | [optional]
59
58
  **upload** | **String**| An uncommitted upload that may be turned into the artifact of the content unit. | [optional]
60
- **file** | **File**| An uploaded file that may be turned into the artifact of the content unit. | [optional]
61
59
  **repository** | **String**| A URI of a repository the new content unit should be associated with. | [optional]
60
+ **file** | **File**| An uploaded file that may be turned into the artifact of the content unit. | [optional]
61
+ **artifact** | **String**| Artifact file representing the physical content | [optional]
62
62
  **expected_name** | **String**| The name of the collection. | [optional]
63
63
  **expected_namespace** | **String**| The namespace of the collection. | [optional]
64
64
  **expected_version** | **String**| The version of the collection. | [optional]
@@ -104,7 +104,7 @@ opts = {
104
104
  name: 'name_example', # String |
105
105
  namespace: 'namespace_example', # String |
106
106
  offset: 56, # Integer | The initial index from which to return the results.
107
- ordering: ['ordering_example'], # Array<String> | Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `upstream_id` - Upstream id * `-upstream_id` - Upstream id (descending) * `timestamp_of_interest` - Timestamp of interest * `-timestamp_of_interest` - Timestamp of interest (descending) * `authors` - Authors * `-authors` - Authors (descending) * `contents` - Contents * `-contents` - Contents (descending) * `dependencies` - Dependencies * `-dependencies` - Dependencies (descending) * `description` - Description * `-description` - Description (descending) * `docs_blob` - Docs blob * `-docs_blob` - Docs blob (descending) * `manifest` - Manifest * `-manifest` - Manifest (descending) * `files` - Files * `-files` - Files (descending) * `documentation` - Documentation * `-documentation` - Documentation (descending) * `homepage` - Homepage * `-homepage` - Homepage (descending) * `issues` - Issues * `-issues` - Issues (descending) * `license` - License * `-license` - License (descending) * `name` - Name * `-name` - Name (descending) * `namespace` - Namespace * `-namespace` - Namespace (descending) * `repository` - Repository * `-repository` - Repository (descending) * `version` - Version * `-version` - Version (descending) * `requires_ansible` - Requires ansible * `-requires_ansible` - Requires ansible (descending) * `is_highest` - Is highest * `-is_highest` - Is highest (descending) * `search_vector` - Search vector * `-search_vector` - Search vector (descending) * `pk` - Pk * `-pk` - Pk (descending)
107
+ ordering: ['ordering_example'], # Array<String> | Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `upstream_id` - Upstream id * `-upstream_id` - Upstream id (descending) * `timestamp_of_interest` - Timestamp of interest * `-timestamp_of_interest` - Timestamp of interest (descending) * `authors` - Authors * `-authors` - Authors (descending) * `contents` - Contents * `-contents` - Contents (descending) * `dependencies` - Dependencies * `-dependencies` - Dependencies (descending) * `description` - Description * `-description` - Description (descending) * `docs_blob` - Docs blob * `-docs_blob` - Docs blob (descending) * `manifest` - Manifest * `-manifest` - Manifest (descending) * `files` - Files * `-files` - Files (descending) * `documentation` - Documentation * `-documentation` - Documentation (descending) * `homepage` - Homepage * `-homepage` - Homepage (descending) * `issues` - Issues * `-issues` - Issues (descending) * `license` - License * `-license` - License (descending) * `name` - Name * `-name` - Name (descending) * `namespace` - Namespace * `-namespace` - Namespace (descending) * `repository` - Repository * `-repository` - Repository (descending) * `requires_ansible` - Requires ansible * `-requires_ansible` - Requires ansible (descending) * `version` - Version * `-version` - Version (descending) * `version_major` - Version major * `-version_major` - Version major (descending) * `version_minor` - Version minor * `-version_minor` - Version minor (descending) * `version_patch` - Version patch * `-version_patch` - Version patch (descending) * `version_prerelease` - Version prerelease * `-version_prerelease` - Version prerelease (descending) * `is_highest` - Is highest * `-is_highest` - Is highest (descending) * `search_vector` - Search vector * `-search_vector` - Search vector (descending) * `pk` - Pk * `-pk` - Pk (descending)
108
108
  pulp_href__in: ['pulp_href__in_example'], # Array<String> | Multiple values may be separated by commas.
109
109
  pulp_id__in: ['pulp_id__in_example'], # Array<String> | Multiple values may be separated by commas.
110
110
  q: 'q_example', # String |
@@ -136,7 +136,7 @@ Name | Type | Description | Notes
136
136
  **name** | **String**| | [optional]
137
137
  **namespace** | **String**| | [optional]
138
138
  **offset** | **Integer**| The initial index from which to return the results. | [optional]
139
- **ordering** | [**Array&lt;String&gt;**](String.md)| Ordering * &#x60;pulp_id&#x60; - Pulp id * &#x60;-pulp_id&#x60; - Pulp id (descending) * &#x60;pulp_created&#x60; - Pulp created * &#x60;-pulp_created&#x60; - Pulp created (descending) * &#x60;pulp_last_updated&#x60; - Pulp last updated * &#x60;-pulp_last_updated&#x60; - Pulp last updated (descending) * &#x60;pulp_type&#x60; - Pulp type * &#x60;-pulp_type&#x60; - Pulp type (descending) * &#x60;upstream_id&#x60; - Upstream id * &#x60;-upstream_id&#x60; - Upstream id (descending) * &#x60;timestamp_of_interest&#x60; - Timestamp of interest * &#x60;-timestamp_of_interest&#x60; - Timestamp of interest (descending) * &#x60;authors&#x60; - Authors * &#x60;-authors&#x60; - Authors (descending) * &#x60;contents&#x60; - Contents * &#x60;-contents&#x60; - Contents (descending) * &#x60;dependencies&#x60; - Dependencies * &#x60;-dependencies&#x60; - Dependencies (descending) * &#x60;description&#x60; - Description * &#x60;-description&#x60; - Description (descending) * &#x60;docs_blob&#x60; - Docs blob * &#x60;-docs_blob&#x60; - Docs blob (descending) * &#x60;manifest&#x60; - Manifest * &#x60;-manifest&#x60; - Manifest (descending) * &#x60;files&#x60; - Files * &#x60;-files&#x60; - Files (descending) * &#x60;documentation&#x60; - Documentation * &#x60;-documentation&#x60; - Documentation (descending) * &#x60;homepage&#x60; - Homepage * &#x60;-homepage&#x60; - Homepage (descending) * &#x60;issues&#x60; - Issues * &#x60;-issues&#x60; - Issues (descending) * &#x60;license&#x60; - License * &#x60;-license&#x60; - License (descending) * &#x60;name&#x60; - Name * &#x60;-name&#x60; - Name (descending) * &#x60;namespace&#x60; - Namespace * &#x60;-namespace&#x60; - Namespace (descending) * &#x60;repository&#x60; - Repository * &#x60;-repository&#x60; - Repository (descending) * &#x60;version&#x60; - Version * &#x60;-version&#x60; - Version (descending) * &#x60;requires_ansible&#x60; - Requires ansible * &#x60;-requires_ansible&#x60; - Requires ansible (descending) * &#x60;is_highest&#x60; - Is highest * &#x60;-is_highest&#x60; - Is highest (descending) * &#x60;search_vector&#x60; - Search vector * &#x60;-search_vector&#x60; - Search vector (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending) | [optional]
139
+ **ordering** | [**Array&lt;String&gt;**](String.md)| Ordering * &#x60;pulp_id&#x60; - Pulp id * &#x60;-pulp_id&#x60; - Pulp id (descending) * &#x60;pulp_created&#x60; - Pulp created * &#x60;-pulp_created&#x60; - Pulp created (descending) * &#x60;pulp_last_updated&#x60; - Pulp last updated * &#x60;-pulp_last_updated&#x60; - Pulp last updated (descending) * &#x60;pulp_type&#x60; - Pulp type * &#x60;-pulp_type&#x60; - Pulp type (descending) * &#x60;upstream_id&#x60; - Upstream id * &#x60;-upstream_id&#x60; - Upstream id (descending) * &#x60;timestamp_of_interest&#x60; - Timestamp of interest * &#x60;-timestamp_of_interest&#x60; - Timestamp of interest (descending) * &#x60;authors&#x60; - Authors * &#x60;-authors&#x60; - Authors (descending) * &#x60;contents&#x60; - Contents * &#x60;-contents&#x60; - Contents (descending) * &#x60;dependencies&#x60; - Dependencies * &#x60;-dependencies&#x60; - Dependencies (descending) * &#x60;description&#x60; - Description * &#x60;-description&#x60; - Description (descending) * &#x60;docs_blob&#x60; - Docs blob * &#x60;-docs_blob&#x60; - Docs blob (descending) * &#x60;manifest&#x60; - Manifest * &#x60;-manifest&#x60; - Manifest (descending) * &#x60;files&#x60; - Files * &#x60;-files&#x60; - Files (descending) * &#x60;documentation&#x60; - Documentation * &#x60;-documentation&#x60; - Documentation (descending) * &#x60;homepage&#x60; - Homepage * &#x60;-homepage&#x60; - Homepage (descending) * &#x60;issues&#x60; - Issues * &#x60;-issues&#x60; - Issues (descending) * &#x60;license&#x60; - License * &#x60;-license&#x60; - License (descending) * &#x60;name&#x60; - Name * &#x60;-name&#x60; - Name (descending) * &#x60;namespace&#x60; - Namespace * &#x60;-namespace&#x60; - Namespace (descending) * &#x60;repository&#x60; - Repository * &#x60;-repository&#x60; - Repository (descending) * &#x60;requires_ansible&#x60; - Requires ansible * &#x60;-requires_ansible&#x60; - Requires ansible (descending) * &#x60;version&#x60; - Version * &#x60;-version&#x60; - Version (descending) * &#x60;version_major&#x60; - Version major * &#x60;-version_major&#x60; - Version major (descending) * &#x60;version_minor&#x60; - Version minor * &#x60;-version_minor&#x60; - Version minor (descending) * &#x60;version_patch&#x60; - Version patch * &#x60;-version_patch&#x60; - Version patch (descending) * &#x60;version_prerelease&#x60; - Version prerelease * &#x60;-version_prerelease&#x60; - Version prerelease (descending) * &#x60;is_highest&#x60; - Is highest * &#x60;-is_highest&#x60; - Is highest (descending) * &#x60;search_vector&#x60; - Search vector * &#x60;-search_vector&#x60; - Search vector (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending) | [optional]
140
140
  **pulp_href__in** | [**Array&lt;String&gt;**](String.md)| Multiple values may be separated by commas. | [optional]
141
141
  **pulp_id__in** | [**Array&lt;String&gt;**](String.md)| Multiple values may be separated by commas. | [optional]
142
142
  **q** | **String**| | [optional]
@@ -0,0 +1,17 @@
1
+ # PulpAnsibleClient::PatchedCollection
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **deprecated** | **Boolean** | | [optional]
8
+
9
+ ## Code Sample
10
+
11
+ ```ruby
12
+ require 'PulpAnsibleClient'
13
+
14
+ instance = PulpAnsibleClient::PatchedCollection.new(deprecated: null)
15
+ ```
16
+
17
+
@@ -4,26 +4,26 @@
4
4
 
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
- **sock_read_timeout** | **Float** | aiohttp.ClientTimeout.sock_read (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used. | [optional]
7
+ **rate_limit** | **Integer** | Limits requests per second for each concurrent downloader | [optional]
8
+ **download_concurrency** | **Integer** | Total number of simultaneous connections. If not set then the default value will be used. | [optional]
9
+ **name** | **String** | A unique name for this remote. | [optional]
10
+ **proxy_url** | **String** | The proxy URL. Format: scheme://host:port | [optional]
11
+ **max_retries** | **Integer** | Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used. | [optional]
12
+ **url** | **String** | The URL of an external content source. | [optional]
8
13
  **sock_connect_timeout** | **Float** | aiohttp.ClientTimeout.sock_connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used. | [optional]
9
14
  **connect_timeout** | **Float** | aiohttp.ClientTimeout.connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used. | [optional]
10
- **ca_cert** | **String** | A PEM encoded CA certificate used to validate the server certificate presented by the remote server. | [optional]
11
- **proxy_url** | **String** | The proxy URL. Format: scheme://host:port | [optional]
12
- **tls_validation** | **Boolean** | If True, TLS peer validation must be performed. | [optional]
13
- **proxy_password** | **String** | The password to authenticate to the proxy. Extra leading and trailing whitespace characters are not trimmed. | [optional]
15
+ **client_key** | **String** | A PEM encoded private key used for authentication. | [optional]
14
16
  **total_timeout** | **Float** | aiohttp.ClientTimeout.total (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used. | [optional]
17
+ **ca_cert** | **String** | A PEM encoded CA certificate used to validate the server certificate presented by the remote server. | [optional]
15
18
  **pulp_labels** | **Hash&lt;String, String&gt;** | | [optional]
19
+ **headers** | **Array&lt;Object&gt;** | Headers for aiohttp.Clientsession | [optional]
20
+ **client_cert** | **String** | A PEM encoded client certificate used for authentication. | [optional]
21
+ **proxy_password** | **String** | The password to authenticate to the proxy. Extra leading and trailing whitespace characters are not trimmed. | [optional]
16
22
  **username** | **String** | The username to be used for authentication when syncing. | [optional]
17
- **url** | **String** | The URL of an external content source. | [optional]
18
23
  **password** | **String** | The password to be used for authentication when syncing. Extra leading and trailing whitespace characters are not trimmed. | [optional]
19
- **client_key** | **String** | A PEM encoded private key used for authentication. | [optional]
20
- **download_concurrency** | **Integer** | Total number of simultaneous connections. If not set then the default value will be used. | [optional]
21
- **name** | **String** | A unique name for this remote. | [optional]
22
- **client_cert** | **String** | A PEM encoded client certificate used for authentication. | [optional]
23
- **rate_limit** | **Integer** | Limits requests per second for each concurrent downloader | [optional]
24
24
  **proxy_username** | **String** | The username to authenticte to the proxy. | [optional]
25
- **headers** | **Array&lt;Object&gt;** | Headers for aiohttp.Clientsession | [optional]
26
- **max_retries** | **Integer** | Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used. | [optional]
25
+ **sock_read_timeout** | **Float** | aiohttp.ClientTimeout.sock_read (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used. | [optional]
26
+ **tls_validation** | **Boolean** | If True, TLS peer validation must be performed. | [optional]
27
27
  **metadata_only** | **Boolean** | If True, only metadata about the content will be stored in Pulp. Clients will retrieve content from the remote URL. | [optional]
28
28
  **git_ref** | **String** | A git ref. e.g.: branch, tag, or commit sha. | [optional]
29
29
 
@@ -32,26 +32,26 @@ Name | Type | Description | Notes
32
32
  ```ruby
33
33
  require 'PulpAnsibleClient'
34
34
 
35
- instance = PulpAnsibleClient::PatchedansibleGitRemote.new(sock_read_timeout: null,
35
+ instance = PulpAnsibleClient::PatchedansibleGitRemote.new(rate_limit: null,
36
+ download_concurrency: null,
37
+ name: null,
38
+ proxy_url: null,
39
+ max_retries: null,
40
+ url: null,
36
41
  sock_connect_timeout: null,
37
42
  connect_timeout: null,
38
- ca_cert: null,
39
- proxy_url: null,
40
- tls_validation: null,
41
- proxy_password: null,
43
+ client_key: null,
42
44
  total_timeout: null,
45
+ ca_cert: null,
43
46
  pulp_labels: null,
47
+ headers: null,
48
+ client_cert: null,
49
+ proxy_password: null,
44
50
  username: null,
45
- url: null,
46
51
  password: null,
47
- client_key: null,
48
- download_concurrency: null,
49
- name: null,
50
- client_cert: null,
51
- rate_limit: null,
52
52
  proxy_username: null,
53
- headers: null,
54
- max_retries: null,
53
+ sock_read_timeout: null,
54
+ tls_validation: null,
55
55
  metadata_only: null,
56
56
  git_ref: null)
57
57
  ```