pulp_ansible_client 0.29.7 → 0.29.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (35) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +4 -4
  3. data/docs/AnsibleAnsibleDistribution.md +5 -3
  4. data/docs/AnsibleAnsibleDistributionResponse.md +13 -3
  5. data/docs/AnsibleCollectionVersionResponse.md +8 -8
  6. data/docs/AnsibleGitRemote.md +26 -26
  7. data/docs/AnsibleGitRemoteResponse.md +30 -30
  8. data/docs/AnsibleRole.md +2 -2
  9. data/docs/AnsibleRoleResponse.md +8 -8
  10. data/docs/ContentCollectionVersionsApi.md +8 -8
  11. data/docs/PatchedansibleAnsibleDistribution.md +5 -3
  12. data/docs/PatchedansibleGitRemote.md +26 -26
  13. data/docs/RemotesGitApi.md +2 -2
  14. data/lib/pulp_ansible_client/api/content_collection_versions_api.rb +12 -12
  15. data/lib/pulp_ansible_client/models/ansible_ansible_distribution.rb +28 -16
  16. data/lib/pulp_ansible_client/models/ansible_ansible_distribution_response.rb +67 -15
  17. data/lib/pulp_ansible_client/models/ansible_collection_version_response.rb +31 -31
  18. data/lib/pulp_ansible_client/models/ansible_git_remote.rb +218 -218
  19. data/lib/pulp_ansible_client/models/ansible_git_remote_response.rb +154 -154
  20. data/lib/pulp_ansible_client/models/ansible_role.rb +13 -13
  21. data/lib/pulp_ansible_client/models/ansible_role_response.rb +33 -33
  22. data/lib/pulp_ansible_client/models/patchedansible_ansible_distribution.rb +28 -16
  23. data/lib/pulp_ansible_client/models/patchedansible_git_remote.rb +210 -210
  24. data/lib/pulp_ansible_client/version.rb +1 -1
  25. data/spec/api/content_collection_versions_api_spec.rb +4 -4
  26. data/spec/models/ansible_ansible_distribution_response_spec.rb +35 -5
  27. data/spec/models/ansible_ansible_distribution_spec.rb +10 -4
  28. data/spec/models/ansible_collection_version_response_spec.rb +7 -7
  29. data/spec/models/ansible_git_remote_response_spec.rb +19 -19
  30. data/spec/models/ansible_git_remote_spec.rb +19 -19
  31. data/spec/models/ansible_role_response_spec.rb +7 -7
  32. data/spec/models/ansible_role_spec.rb +3 -3
  33. data/spec/models/patchedansible_ansible_distribution_spec.rb +10 -4
  34. data/spec/models/patchedansible_git_remote_spec.rb +19 -19
  35. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fd736d182aa7e92f8b8853965775ad9c7cf78b0581685c07caf1ae9b94e5d9ce
4
- data.tar.gz: bf95085e0ccef4f5160b621225b81f7926b0682920ab35eaa8dcfaeeae61eb5f
3
+ metadata.gz: d48aca16998f65761eb2bf86fb1b60899b43009d5f05b10e5b05675a6ce63e3d
4
+ data.tar.gz: 6236f1974bab841d48aa1c0f007d120ffa5f962d90bd5f17b6ad6d8ecab9a3fb
5
5
  SHA512:
6
- metadata.gz: 8071d445cf3818c96047c7ac603440c7cf5430e243fefffd04122c404f4eb045439e09cd037ac030a149fbb3f5203bfbb17a997eac5135094f0a5831320de6b0
7
- data.tar.gz: 186ac70d66565147666379ff438f6438253fd47f4a913fd4b3110145a685455b1b529df7ebeca8e8a6bedc499933a0b5b12a0726f579e0eb79cb2a78c54b0674
6
+ metadata.gz: e2a0b2c833e1507d3f30f56dd63e26445f113b9e603f06db49321347531ed792a3161ed31950def5e425add0dff7473f4250192c7cff1c28a9f78bab95a29c6e
7
+ data.tar.gz: 4f57c38b25655c5df6e75257847c8fba6aec094ee05f07cb19e3b15b61aa7de70942a76736fa8e660a7bf86190506fa440a582d1f3dd676693d3dc50ecb2ba09
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.29.7
10
+ - Package version: 0.29.8
11
11
  - Generator version: 7.10.0
12
12
  - Build package: org.openapitools.codegen.languages.RubyClientCodegen
13
13
  For more information, please visit [https://pulpproject.org](https://pulpproject.org)
@@ -25,16 +25,16 @@ gem build pulp_ansible_client.gemspec
25
25
  Then either install the gem locally:
26
26
 
27
27
  ```shell
28
- gem install ./pulp_ansible_client-0.29.7.gem
28
+ gem install ./pulp_ansible_client-0.29.8.gem
29
29
  ```
30
30
 
31
- (for development, run `gem install --dev ./pulp_ansible_client-0.29.7.gem` to install the development dependencies)
31
+ (for development, run `gem install --dev ./pulp_ansible_client-0.29.8.gem` to install the development dependencies)
32
32
 
33
33
  or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
34
34
 
35
35
  Finally add this to the Gemfile:
36
36
 
37
- gem 'pulp_ansible_client', '~> 0.29.7'
37
+ gem 'pulp_ansible_client', '~> 0.29.8'
38
38
 
39
39
  ### Install from Git
40
40
 
@@ -6,10 +6,11 @@
6
6
  | ---- | ---- | ----------- | ----- |
7
7
  | **base_path** | **String** | The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\") | |
8
8
  | **content_guard** | **String** | An optional content-guard. | [optional] |
9
+ | **hidden** | **Boolean** | Whether this distribution should be shown in the content app. | [optional][default to false] |
10
+ | **pulp_labels** | **Hash<String, String>** | | [optional] |
9
11
  | **name** | **String** | A unique name. Ex, `rawhide` and `stable`. | |
10
12
  | **repository** | **String** | The latest RepositoryVersion for this Repository will be served. | [optional] |
11
13
  | **repository_version** | **String** | RepositoryVersion to be served | [optional] |
12
- | **pulp_labels** | **Hash<String, String>** | | [optional] |
13
14
 
14
15
  ## Example
15
16
 
@@ -19,10 +20,11 @@ require 'pulp_ansible_client'
19
20
  instance = PulpAnsibleClient::AnsibleAnsibleDistribution.new(
20
21
  base_path: null,
21
22
  content_guard: null,
23
+ hidden: null,
24
+ pulp_labels: null,
22
25
  name: null,
23
26
  repository: null,
24
- repository_version: null,
25
- pulp_labels: null
27
+ repository_version: null
26
28
  )
27
29
  ```
28
30
 
@@ -5,14 +5,19 @@
5
5
  | Name | Type | Description | Notes |
6
6
  | ---- | ---- | ----------- | ----- |
7
7
  | **pulp_href** | **String** | | [optional][readonly] |
8
+ | **prn** | **String** | The Pulp Resource Name (PRN). | [optional][readonly] |
8
9
  | **pulp_created** | **Time** | Timestamp of creation. | [optional][readonly] |
10
+ | **pulp_last_updated** | **Time** | 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] |
9
11
  | **base_path** | **String** | The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\") | |
10
12
  | **content_guard** | **String** | An optional content-guard. | [optional] |
13
+ | **content_guard_prn** | **String** | The Pulp Resource Name (PRN) of the associated optional content guard. | [optional][readonly] |
14
+ | **no_content_change_since** | **String** | Timestamp since when the distributed content served by this distribution has not changed. If equals to `null`, no guarantee is provided about content changes. | [optional][readonly] |
15
+ | **hidden** | **Boolean** | Whether this distribution should be shown in the content app. | [optional][default to false] |
16
+ | **pulp_labels** | **Hash<String, String>** | | [optional] |
11
17
  | **name** | **String** | A unique name. Ex, `rawhide` and `stable`. | |
12
18
  | **repository** | **String** | The latest RepositoryVersion for this Repository will be served. | [optional] |
13
19
  | **repository_version** | **String** | RepositoryVersion to be served | [optional] |
14
20
  | **client_url** | **String** | The URL of a Collection content source. | [optional][readonly] |
15
- | **pulp_labels** | **Hash<String, String>** | | [optional] |
16
21
 
17
22
  ## Example
18
23
 
@@ -21,14 +26,19 @@ require 'pulp_ansible_client'
21
26
 
22
27
  instance = PulpAnsibleClient::AnsibleAnsibleDistributionResponse.new(
23
28
  pulp_href: null,
29
+ prn: null,
24
30
  pulp_created: null,
31
+ pulp_last_updated: null,
25
32
  base_path: null,
26
33
  content_guard: null,
34
+ content_guard_prn: null,
35
+ no_content_change_since: null,
36
+ hidden: null,
37
+ pulp_labels: null,
27
38
  name: null,
28
39
  repository: null,
29
40
  repository_version: null,
30
- client_url: null,
31
- pulp_labels: null
41
+ client_url: null
32
42
  )
33
43
  ```
34
44
 
@@ -4,13 +4,13 @@
4
4
 
5
5
  | Name | Type | Description | Notes |
6
6
  | ---- | ---- | ----------- | ----- |
7
- | **prn** | **String** | The Pulp Resource Name (PRN). | [optional][readonly] |
7
+ | **vuln_report** | **String** | | [optional][readonly] |
8
+ | **artifact** | **String** | Artifact file representing the physical content | [optional] |
8
9
  | **pulp_created** | **Time** | Timestamp of creation. | [optional][readonly] |
9
- | **pulp_last_updated** | **Time** | 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] |
10
+ | **prn** | **String** | The Pulp Resource Name (PRN). | [optional][readonly] |
10
11
  | **pulp_labels** | **Hash<String, String>** | A dictionary of arbitrary key/value pairs used to describe a specific Content instance. | [optional] |
11
- | **vuln_report** | **String** | | [optional][readonly] |
12
+ | **pulp_last_updated** | **Time** | 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] |
12
13
  | **pulp_href** | **String** | | [optional][readonly] |
13
- | **artifact** | **String** | Artifact file representing the physical content | [optional] |
14
14
  | **sha256** | **String** | The SHA-256 checksum if available. | [optional][readonly] |
15
15
  | **md5** | **String** | The MD5 checksum if available. | [optional][readonly] |
16
16
  | **sha1** | **String** | The SHA-1 checksum if available. | [optional][readonly] |
@@ -38,13 +38,13 @@
38
38
  require 'pulp_ansible_client'
39
39
 
40
40
  instance = PulpAnsibleClient::AnsibleCollectionVersionResponse.new(
41
- prn: null,
41
+ vuln_report: null,
42
+ artifact: null,
42
43
  pulp_created: null,
43
- pulp_last_updated: null,
44
+ prn: null,
44
45
  pulp_labels: null,
45
- vuln_report: null,
46
+ pulp_last_updated: null,
46
47
  pulp_href: null,
47
- artifact: null,
48
48
  sha256: null,
49
49
  md5: null,
50
50
  sha1: null,
@@ -4,26 +4,26 @@
4
4
 
5
5
  | Name | Type | Description | Notes |
6
6
  | ---- | ---- | ----------- | ----- |
7
- | **proxy_username** | **String** | The username to authenticte to the proxy. | [optional] |
8
- | **rate_limit** | **Integer** | Limits requests per second for each concurrent downloader | [optional] |
9
- | **max_retries** | **Integer** | Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used. | [optional] |
10
- | **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] |
11
- | **name** | **String** | A unique name for this remote. | |
7
+ | **url** | **String** | The URL of an external content source. | |
8
+ | **download_concurrency** | **Integer** | Total number of simultaneous connections. If not set then the default value will 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] |
12
10
  | **client_key** | **String** | A PEM encoded private key used for authentication. | [optional] |
11
+ | **tls_validation** | **Boolean** | If True, TLS peer validation must be performed. | [optional] |
12
+ | **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] |
13
13
  | **ca_cert** | **String** | A PEM encoded CA certificate used to validate the server certificate presented by the remote server. | [optional] |
14
- | **download_concurrency** | **Integer** | Total number of simultaneous connections. If not set then the default value will be used. | [optional] |
15
14
  | **proxy_password** | **String** | The password to authenticate to the proxy. Extra leading and trailing whitespace characters are not trimmed. | [optional] |
16
- | **url** | **String** | The URL of an external content source. | |
17
15
  | **password** | **String** | The password to be used for authentication when syncing. Extra leading and trailing whitespace characters are not trimmed. | [optional] |
16
+ | **rate_limit** | **Integer** | Limits requests per second for each concurrent downloader | [optional] |
17
+ | **proxy_username** | **String** | The username to authenticte to the proxy. | [optional] |
18
+ | **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] |
19
+ | **headers** | **Array<Object>** | Headers for aiohttp.Clientsession | [optional] |
20
+ | **max_retries** | **Integer** | Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used. | [optional] |
21
+ | **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] |
18
22
  | **username** | **String** | The username to be used for authentication when syncing. | [optional] |
23
+ | **pulp_labels** | **Hash<String, String>** | | [optional] |
19
24
  | **client_cert** | **String** | A PEM encoded client certificate used for authentication. | [optional] |
20
- | **tls_validation** | **Boolean** | If True, TLS peer validation must be performed. | [optional] |
21
- | **headers** | **Array<Object>** | Headers for aiohttp.Clientsession | [optional] |
22
25
  | **proxy_url** | **String** | The proxy URL. Format: scheme://host:port | [optional] |
23
- | **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] |
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
- | **pulp_labels** | **Hash<String, String>** | | [optional] |
26
- | **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] |
26
+ | **name** | **String** | A unique name for this remote. | |
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
 
@@ -33,26 +33,26 @@
33
33
  require 'pulp_ansible_client'
34
34
 
35
35
  instance = PulpAnsibleClient::AnsibleGitRemote.new(
36
- proxy_username: null,
37
- rate_limit: null,
38
- max_retries: null,
39
- total_timeout: null,
40
- name: null,
36
+ url: null,
37
+ download_concurrency: null,
38
+ sock_connect_timeout: null,
41
39
  client_key: null,
40
+ tls_validation: null,
41
+ total_timeout: null,
42
42
  ca_cert: null,
43
- download_concurrency: null,
44
43
  proxy_password: null,
45
- url: null,
46
44
  password: null,
45
+ rate_limit: null,
46
+ proxy_username: null,
47
+ sock_read_timeout: null,
48
+ headers: null,
49
+ max_retries: null,
50
+ connect_timeout: null,
47
51
  username: null,
52
+ pulp_labels: null,
48
53
  client_cert: null,
49
- tls_validation: null,
50
- headers: null,
51
54
  proxy_url: null,
52
- sock_connect_timeout: null,
53
- sock_read_timeout: null,
54
- pulp_labels: null,
55
- connect_timeout: null,
55
+ name: null,
56
56
  metadata_only: null,
57
57
  git_ref: null
58
58
  )
@@ -4,26 +4,26 @@
4
4
 
5
5
  | Name | Type | Description | Notes |
6
6
  | ---- | ---- | ----------- | ----- |
7
- | **prn** | **String** | The Pulp Resource Name (PRN). | [optional][readonly] |
8
- | **rate_limit** | **Integer** | Limits requests per second for each concurrent downloader | [optional] |
9
- | **max_retries** | **Integer** | Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used. | [optional] |
10
- | **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] |
11
- | **name** | **String** | A unique name for this remote. | |
12
- | **hidden_fields** | [**Array<AnsibleCollectionRemoteResponseHiddenFieldsInner>**](AnsibleCollectionRemoteResponseHiddenFieldsInner.md) | List of hidden (write only) fields | [optional] |
13
- | **ca_cert** | **String** | A PEM encoded CA certificate used to validate the server certificate presented by the remote server. | [optional] |
14
- | **download_concurrency** | **Integer** | Total number of simultaneous connections. If not set then the default value will be used. | [optional] |
15
7
  | **url** | **String** | The URL of an external content source. | |
16
- | **client_cert** | **String** | A PEM encoded client certificate used for authentication. | [optional] |
17
- | **tls_validation** | **Boolean** | If True, TLS peer validation must be performed. | [optional] |
18
- | **headers** | **Array<Object>** | Headers for aiohttp.Clientsession | [optional] |
8
+ | **download_concurrency** | **Integer** | Total number of simultaneous connections. If not set then the default value will 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] |
19
10
  | **pulp_created** | **Time** | Timestamp of creation. | [optional][readonly] |
20
- | **proxy_url** | **String** | The proxy URL. Format: scheme://host:port | [optional] |
11
+ | **tls_validation** | **Boolean** | If True, TLS peer validation must be performed. | [optional] |
12
+ | **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] |
13
+ | **ca_cert** | **String** | A PEM encoded CA certificate used to validate the server certificate presented by the remote server. | [optional] |
21
14
  | **pulp_last_updated** | **Time** | Timestamp of the most recent update of the remote. | [optional][readonly] |
22
- | **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] |
23
- | **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] |
24
- | **pulp_labels** | **Hash<String, String>** | | [optional] |
25
15
  | **pulp_href** | **String** | | [optional][readonly] |
16
+ | **rate_limit** | **Integer** | Limits requests per second for each concurrent downloader | [optional] |
17
+ | **hidden_fields** | [**Array<AnsibleCollectionRemoteResponseHiddenFieldsInner>**](AnsibleCollectionRemoteResponseHiddenFieldsInner.md) | List of hidden (write only) fields | [optional] |
18
+ | **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] |
19
+ | **headers** | **Array<Object>** | Headers for aiohttp.Clientsession | [optional] |
20
+ | **max_retries** | **Integer** | Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used. | [optional] |
26
21
  | **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] |
22
+ | **prn** | **String** | The Pulp Resource Name (PRN). | [optional][readonly] |
23
+ | **pulp_labels** | **Hash<String, String>** | | [optional] |
24
+ | **client_cert** | **String** | A PEM encoded client certificate used for authentication. | [optional] |
25
+ | **proxy_url** | **String** | The proxy URL. Format: scheme://host:port | [optional] |
26
+ | **name** | **String** | A unique name for this remote. | |
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
 
@@ -33,26 +33,26 @@
33
33
  require 'pulp_ansible_client'
34
34
 
35
35
  instance = PulpAnsibleClient::AnsibleGitRemoteResponse.new(
36
- prn: null,
37
- rate_limit: null,
38
- max_retries: null,
39
- total_timeout: null,
40
- name: null,
41
- hidden_fields: null,
42
- ca_cert: null,
43
- download_concurrency: null,
44
36
  url: null,
45
- client_cert: null,
46
- tls_validation: null,
47
- headers: null,
37
+ download_concurrency: null,
38
+ sock_connect_timeout: null,
48
39
  pulp_created: null,
49
- proxy_url: null,
40
+ tls_validation: null,
41
+ total_timeout: null,
42
+ ca_cert: null,
50
43
  pulp_last_updated: null,
51
- sock_connect_timeout: null,
52
- sock_read_timeout: null,
53
- pulp_labels: null,
54
44
  pulp_href: null,
45
+ rate_limit: null,
46
+ hidden_fields: null,
47
+ sock_read_timeout: null,
48
+ headers: null,
49
+ max_retries: null,
55
50
  connect_timeout: null,
51
+ prn: null,
52
+ pulp_labels: null,
53
+ client_cert: null,
54
+ proxy_url: null,
55
+ name: null,
56
56
  metadata_only: null,
57
57
  git_ref: null
58
58
  )
data/docs/AnsibleRole.md CHANGED
@@ -4,9 +4,9 @@
4
4
 
5
5
  | Name | Type | Description | Notes |
6
6
  | ---- | ---- | ----------- | ----- |
7
- | **pulp_labels** | **Hash<String, String>** | A dictionary of arbitrary key/value pairs used to describe a specific Content instance. | [optional] |
8
7
  | **repository** | **String** | A URI of a repository the new content unit should be associated with. | [optional] |
9
8
  | **artifact** | **String** | Artifact file representing the physical content | |
9
+ | **pulp_labels** | **Hash<String, String>** | A dictionary of arbitrary key/value pairs used to describe a specific Content instance. | [optional] |
10
10
  | **version** | **String** | | |
11
11
  | **name** | **String** | | |
12
12
  | **namespace** | **String** | | |
@@ -17,9 +17,9 @@
17
17
  require 'pulp_ansible_client'
18
18
 
19
19
  instance = PulpAnsibleClient::AnsibleRole.new(
20
- pulp_labels: null,
21
20
  repository: null,
22
21
  artifact: null,
22
+ pulp_labels: null,
23
23
  version: null,
24
24
  name: null,
25
25
  namespace: null
@@ -4,13 +4,13 @@
4
4
 
5
5
  | Name | Type | Description | Notes |
6
6
  | ---- | ---- | ----------- | ----- |
7
- | **prn** | **String** | The Pulp Resource Name (PRN). | [optional][readonly] |
7
+ | **vuln_report** | **String** | | [optional][readonly] |
8
+ | **artifact** | **String** | Artifact file representing the physical content | |
8
9
  | **pulp_created** | **Time** | Timestamp of creation. | [optional][readonly] |
9
- | **pulp_last_updated** | **Time** | 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] |
10
+ | **prn** | **String** | The Pulp Resource Name (PRN). | [optional][readonly] |
10
11
  | **pulp_labels** | **Hash<String, String>** | A dictionary of arbitrary key/value pairs used to describe a specific Content instance. | [optional] |
11
- | **vuln_report** | **String** | | [optional][readonly] |
12
+ | **pulp_last_updated** | **Time** | 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] |
12
13
  | **pulp_href** | **String** | | [optional][readonly] |
13
- | **artifact** | **String** | Artifact file representing the physical content | |
14
14
  | **version** | **String** | | |
15
15
  | **name** | **String** | | |
16
16
  | **namespace** | **String** | | |
@@ -21,13 +21,13 @@
21
21
  require 'pulp_ansible_client'
22
22
 
23
23
  instance = PulpAnsibleClient::AnsibleRoleResponse.new(
24
- prn: null,
24
+ vuln_report: null,
25
+ artifact: null,
25
26
  pulp_created: null,
26
- pulp_last_updated: null,
27
+ prn: null,
27
28
  pulp_labels: null,
28
- vuln_report: null,
29
+ pulp_last_updated: null,
29
30
  pulp_href: null,
30
- artifact: null,
31
31
  version: null,
32
32
  name: null,
33
33
  namespace: null
@@ -34,12 +34,12 @@ end
34
34
  api_instance = PulpAnsibleClient::ContentCollectionVersionsApi.new
35
35
  opts = {
36
36
  x_task_diagnostics: ['inner_example'], # Array<String> | List of profilers to use on tasks.
37
- file_url: 'file_url_example', # String | A url that Pulp can download and turn into the content unit.
38
- downloader_config: PulpAnsibleClient::RemoteNetworkConfig.new, # RemoteNetworkConfig | Configuration for the download process (e.g., proxies, auth, timeouts). Only applicable when providing a 'file_url.
39
- file: File.new('/path/to/some/file'), # File | An uploaded file that may be turned into the content unit.
40
- pulp_labels: { key: 'inner_example'}, # Hash<String, String> | A dictionary of arbitrary key/value pairs used to describe a specific Content instance.
41
37
  repository: 'repository_example', # String | A URI of a repository the new content unit should be associated with.
42
38
  artifact: 'artifact_example', # String | Artifact file representing the physical content
39
+ downloader_config: PulpAnsibleClient::RemoteNetworkConfig.new, # RemoteNetworkConfig | Configuration for the download process (e.g., proxies, auth, timeouts). Only applicable when providing a 'file_url.
40
+ pulp_labels: { key: 'inner_example'}, # Hash<String, String> | A dictionary of arbitrary key/value pairs used to describe a specific Content instance.
41
+ file: File.new('/path/to/some/file'), # File | An uploaded file that may be turned into the content unit.
42
+ file_url: 'file_url_example', # String | A url that Pulp can download and turn into the content unit.
43
43
  upload: 'upload_example', # String | An uncommitted upload that may be turned into the content unit.
44
44
  expected_name: 'expected_name_example', # String | The name of the collection.
45
45
  expected_namespace: 'expected_namespace_example', # String | The namespace of the collection.
@@ -78,12 +78,12 @@ end
78
78
  | Name | Type | Description | Notes |
79
79
  | ---- | ---- | ----------- | ----- |
80
80
  | **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md) | List of profilers to use on tasks. | [optional] |
81
- | **file_url** | **String** | A url that Pulp can download and turn into the content unit. | [optional] |
82
- | **downloader_config** | [**RemoteNetworkConfig**](RemoteNetworkConfig.md) | Configuration for the download process (e.g., proxies, auth, timeouts). Only applicable when providing a &#39;file_url. | [optional] |
83
- | **file** | **File** | An uploaded file that may be turned into the content unit. | [optional] |
84
- | **pulp_labels** | [**Hash&lt;String, String&gt;**](Hash.md) | A dictionary of arbitrary key/value pairs used to describe a specific Content instance. | [optional] |
85
81
  | **repository** | **String** | A URI of a repository the new content unit should be associated with. | [optional] |
86
82
  | **artifact** | **String** | Artifact file representing the physical content | [optional] |
83
+ | **downloader_config** | [**RemoteNetworkConfig**](RemoteNetworkConfig.md) | Configuration for the download process (e.g., proxies, auth, timeouts). Only applicable when providing a &#39;file_url. | [optional] |
84
+ | **pulp_labels** | [**Hash&lt;String, String&gt;**](Hash.md) | A dictionary of arbitrary key/value pairs used to describe a specific Content instance. | [optional] |
85
+ | **file** | **File** | An uploaded file that may be turned into the content unit. | [optional] |
86
+ | **file_url** | **String** | A url that Pulp can download and turn into the content unit. | [optional] |
87
87
  | **upload** | **String** | An uncommitted upload that may be turned into the content unit. | [optional] |
88
88
  | **expected_name** | **String** | The name of the collection. | [optional] |
89
89
  | **expected_namespace** | **String** | The namespace of the collection. | [optional] |
@@ -6,10 +6,11 @@
6
6
  | ---- | ---- | ----------- | ----- |
7
7
  | **base_path** | **String** | The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \&quot;foo\&quot; and \&quot;foo/bar\&quot;) | [optional] |
8
8
  | **content_guard** | **String** | An optional content-guard. | [optional] |
9
+ | **hidden** | **Boolean** | Whether this distribution should be shown in the content app. | [optional][default to false] |
10
+ | **pulp_labels** | **Hash&lt;String, String&gt;** | | [optional] |
9
11
  | **name** | **String** | A unique name. Ex, &#x60;rawhide&#x60; and &#x60;stable&#x60;. | [optional] |
10
12
  | **repository** | **String** | The latest RepositoryVersion for this Repository will be served. | [optional] |
11
13
  | **repository_version** | **String** | RepositoryVersion to be served | [optional] |
12
- | **pulp_labels** | **Hash&lt;String, String&gt;** | | [optional] |
13
14
 
14
15
  ## Example
15
16
 
@@ -19,10 +20,11 @@ require 'pulp_ansible_client'
19
20
  instance = PulpAnsibleClient::PatchedansibleAnsibleDistribution.new(
20
21
  base_path: null,
21
22
  content_guard: null,
23
+ hidden: null,
24
+ pulp_labels: null,
22
25
  name: null,
23
26
  repository: null,
24
- repository_version: null,
25
- pulp_labels: null
27
+ repository_version: null
26
28
  )
27
29
  ```
28
30
 
@@ -4,26 +4,26 @@
4
4
 
5
5
  | Name | Type | Description | Notes |
6
6
  | ---- | ---- | ----------- | ----- |
7
- | **proxy_username** | **String** | The username to authenticte to the proxy. | [optional] |
8
- | **rate_limit** | **Integer** | Limits requests per second for each concurrent downloader | [optional] |
9
- | **max_retries** | **Integer** | Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used. | [optional] |
10
- | **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] |
11
- | **name** | **String** | A unique name for this remote. | [optional] |
7
+ | **url** | **String** | The URL of an external content source. | [optional] |
8
+ | **download_concurrency** | **Integer** | Total number of simultaneous connections. If not set then the default value will 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] |
12
10
  | **client_key** | **String** | A PEM encoded private key used for authentication. | [optional] |
11
+ | **tls_validation** | **Boolean** | If True, TLS peer validation must be performed. | [optional] |
12
+ | **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] |
13
13
  | **ca_cert** | **String** | A PEM encoded CA certificate used to validate the server certificate presented by the remote server. | [optional] |
14
- | **download_concurrency** | **Integer** | Total number of simultaneous connections. If not set then the default value will be used. | [optional] |
15
14
  | **proxy_password** | **String** | The password to authenticate to the proxy. Extra leading and trailing whitespace characters are not trimmed. | [optional] |
16
- | **url** | **String** | The URL of an external content source. | [optional] |
17
15
  | **password** | **String** | The password to be used for authentication when syncing. Extra leading and trailing whitespace characters are not trimmed. | [optional] |
16
+ | **rate_limit** | **Integer** | Limits requests per second for each concurrent downloader | [optional] |
17
+ | **proxy_username** | **String** | The username to authenticte to the proxy. | [optional] |
18
+ | **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] |
19
+ | **headers** | **Array&lt;Object&gt;** | Headers for aiohttp.Clientsession | [optional] |
20
+ | **max_retries** | **Integer** | Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used. | [optional] |
21
+ | **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] |
18
22
  | **username** | **String** | The username to be used for authentication when syncing. | [optional] |
23
+ | **pulp_labels** | **Hash&lt;String, String&gt;** | | [optional] |
19
24
  | **client_cert** | **String** | A PEM encoded client certificate used for authentication. | [optional] |
20
- | **tls_validation** | **Boolean** | If True, TLS peer validation must be performed. | [optional] |
21
- | **headers** | **Array&lt;Object&gt;** | Headers for aiohttp.Clientsession | [optional] |
22
25
  | **proxy_url** | **String** | The proxy URL. Format: scheme://host:port | [optional] |
23
- | **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] |
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
- | **pulp_labels** | **Hash&lt;String, String&gt;** | | [optional] |
26
- | **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] |
26
+ | **name** | **String** | A unique name for this remote. | [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
 
@@ -33,26 +33,26 @@
33
33
  require 'pulp_ansible_client'
34
34
 
35
35
  instance = PulpAnsibleClient::PatchedansibleGitRemote.new(
36
- proxy_username: null,
37
- rate_limit: null,
38
- max_retries: null,
39
- total_timeout: null,
40
- name: null,
36
+ url: null,
37
+ download_concurrency: null,
38
+ sock_connect_timeout: null,
41
39
  client_key: null,
40
+ tls_validation: null,
41
+ total_timeout: null,
42
42
  ca_cert: null,
43
- download_concurrency: null,
44
43
  proxy_password: null,
45
- url: null,
46
44
  password: null,
45
+ rate_limit: null,
46
+ proxy_username: null,
47
+ sock_read_timeout: null,
48
+ headers: null,
49
+ max_retries: null,
50
+ connect_timeout: null,
47
51
  username: null,
52
+ pulp_labels: null,
48
53
  client_cert: null,
49
- tls_validation: null,
50
- headers: null,
51
54
  proxy_url: null,
52
- sock_connect_timeout: null,
53
- sock_read_timeout: null,
54
- pulp_labels: null,
55
- connect_timeout: null,
55
+ name: null,
56
56
  metadata_only: null,
57
57
  git_ref: null
58
58
  )
@@ -115,7 +115,7 @@ PulpAnsibleClient.configure do |config|
115
115
  end
116
116
 
117
117
  api_instance = PulpAnsibleClient::RemotesGitApi.new
118
- ansible_git_remote = PulpAnsibleClient::AnsibleGitRemote.new({name: 'name_example', url: 'url_example'}) # AnsibleGitRemote |
118
+ ansible_git_remote = PulpAnsibleClient::AnsibleGitRemote.new({url: 'url_example', name: 'name_example'}) # AnsibleGitRemote |
119
119
  opts = {
120
120
  x_task_diagnostics: ['inner_example'] # Array<String> | List of profilers to use on tasks.
121
121
  }
@@ -926,7 +926,7 @@ end
926
926
 
927
927
  api_instance = PulpAnsibleClient::RemotesGitApi.new
928
928
  ansible_git_remote_href = 'ansible_git_remote_href_example' # String |
929
- ansible_git_remote = PulpAnsibleClient::AnsibleGitRemote.new({name: 'name_example', url: 'url_example'}) # AnsibleGitRemote |
929
+ ansible_git_remote = PulpAnsibleClient::AnsibleGitRemote.new({url: 'url_example', name: 'name_example'}) # AnsibleGitRemote |
930
930
  opts = {
931
931
  x_task_diagnostics: ['inner_example'] # Array<String> | List of profilers to use on tasks.
932
932
  }
@@ -23,12 +23,12 @@ module PulpAnsibleClient
23
23
  # Trigger an asynchronous task to create content,optionally create new repository version.
24
24
  # @param [Hash] opts the optional parameters
25
25
  # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
26
- # @option opts [String] :file_url A url that Pulp can download and turn into the content unit.
27
- # @option opts [RemoteNetworkConfig] :downloader_config Configuration for the download process (e.g., proxies, auth, timeouts). Only applicable when providing a &#39;file_url.
28
- # @option opts [File] :file An uploaded file that may be turned into the content unit.
29
- # @option opts [Hash<String, String>] :pulp_labels A dictionary of arbitrary key/value pairs used to describe a specific Content instance.
30
26
  # @option opts [String] :repository A URI of a repository the new content unit should be associated with.
31
27
  # @option opts [String] :artifact Artifact file representing the physical content
28
+ # @option opts [RemoteNetworkConfig] :downloader_config Configuration for the download process (e.g., proxies, auth, timeouts). Only applicable when providing a &#39;file_url.
29
+ # @option opts [Hash<String, String>] :pulp_labels A dictionary of arbitrary key/value pairs used to describe a specific Content instance.
30
+ # @option opts [File] :file An uploaded file that may be turned into the content unit.
31
+ # @option opts [String] :file_url A url that Pulp can download and turn into the content unit.
32
32
  # @option opts [String] :upload An uncommitted upload that may be turned into the content unit.
33
33
  # @option opts [String] :expected_name The name of the collection.
34
34
  # @option opts [String] :expected_namespace The namespace of the collection.
@@ -43,12 +43,12 @@ module PulpAnsibleClient
43
43
  # Trigger an asynchronous task to create content,optionally create new repository version.
44
44
  # @param [Hash] opts the optional parameters
45
45
  # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
46
- # @option opts [String] :file_url A url that Pulp can download and turn into the content unit.
47
- # @option opts [RemoteNetworkConfig] :downloader_config Configuration for the download process (e.g., proxies, auth, timeouts). Only applicable when providing a &#39;file_url.
48
- # @option opts [File] :file An uploaded file that may be turned into the content unit.
49
- # @option opts [Hash<String, String>] :pulp_labels A dictionary of arbitrary key/value pairs used to describe a specific Content instance.
50
46
  # @option opts [String] :repository A URI of a repository the new content unit should be associated with.
51
47
  # @option opts [String] :artifact Artifact file representing the physical content
48
+ # @option opts [RemoteNetworkConfig] :downloader_config Configuration for the download process (e.g., proxies, auth, timeouts). Only applicable when providing a &#39;file_url.
49
+ # @option opts [Hash<String, String>] :pulp_labels A dictionary of arbitrary key/value pairs used to describe a specific Content instance.
50
+ # @option opts [File] :file An uploaded file that may be turned into the content unit.
51
+ # @option opts [String] :file_url A url that Pulp can download and turn into the content unit.
52
52
  # @option opts [String] :upload An uncommitted upload that may be turned into the content unit.
53
53
  # @option opts [String] :expected_name The name of the collection.
54
54
  # @option opts [String] :expected_namespace The namespace of the collection.
@@ -105,12 +105,12 @@ module PulpAnsibleClient
105
105
 
106
106
  # form parameters
107
107
  form_params = opts[:form_params] || {}
108
- form_params['file_url'] = opts[:'file_url'] if !opts[:'file_url'].nil?
109
- form_params['downloader_config'] = opts[:'downloader_config'] if !opts[:'downloader_config'].nil?
110
- form_params['file'] = opts[:'file'] if !opts[:'file'].nil?
111
- form_params['pulp_labels'] = opts[:'pulp_labels'] if !opts[:'pulp_labels'].nil?
112
108
  form_params['repository'] = opts[:'repository'] if !opts[:'repository'].nil?
113
109
  form_params['artifact'] = opts[:'artifact'] if !opts[:'artifact'].nil?
110
+ form_params['downloader_config'] = opts[:'downloader_config'] if !opts[:'downloader_config'].nil?
111
+ form_params['pulp_labels'] = opts[:'pulp_labels'] if !opts[:'pulp_labels'].nil?
112
+ form_params['file'] = opts[:'file'] if !opts[:'file'].nil?
113
+ form_params['file_url'] = opts[:'file_url'] if !opts[:'file_url'].nil?
114
114
  form_params['upload'] = opts[:'upload'] if !opts[:'upload'].nil?
115
115
  form_params['expected_name'] = opts[:'expected_name'] if !opts[:'expected_name'].nil?
116
116
  form_params['expected_namespace'] = opts[:'expected_namespace'] if !opts[:'expected_namespace'].nil?