pulp_container_client 2.27.0 → 2.27.2

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 (73) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +7 -7
  3. data/docs/ContainerContainerDistribution.md +4 -4
  4. data/docs/ContainerContainerDistributionResponse.md +14 -14
  5. data/docs/ContainerContainerPullThroughDistribution.md +4 -4
  6. data/docs/ContainerContainerPullThroughDistributionResponse.md +14 -14
  7. data/docs/ContainerContainerPullThroughRemote.md +6 -6
  8. data/docs/ContainerContainerPullThroughRemoteResponse.md +8 -8
  9. data/docs/ContainerContainerPushRepository.md +4 -4
  10. data/docs/ContainerContainerPushRepositoryResponse.md +13 -13
  11. data/docs/ContainerContainerRemote.md +6 -6
  12. data/docs/ContainerContainerRemoteResponse.md +8 -8
  13. data/docs/ContentBlobsApi.md +6 -6
  14. data/docs/ContentManifestsApi.md +6 -6
  15. data/docs/ContentSignaturesApi.md +6 -6
  16. data/docs/ContentTagsApi.md +6 -6
  17. data/docs/DistributionsContainerApi.md +4 -4
  18. data/docs/DistributionsPullThroughApi.md +4 -4
  19. data/docs/PatchedcontainerContainerDistribution.md +4 -4
  20. data/docs/PatchedcontainerContainerPullThroughDistribution.md +4 -4
  21. data/docs/PatchedcontainerContainerPullThroughRemote.md +6 -6
  22. data/docs/PatchedcontainerContainerPushRepository.md +4 -4
  23. data/docs/PatchedcontainerContainerRemote.md +6 -6
  24. data/docs/RepositoriesContainerApi.md +2 -2
  25. data/docs/RepositoriesContainerPushApi.md +2 -2
  26. data/lib/pulp_container_client/api/content_blobs_api.rb +6 -6
  27. data/lib/pulp_container_client/api/content_manifests_api.rb +6 -6
  28. data/lib/pulp_container_client/api/content_signatures_api.rb +6 -6
  29. data/lib/pulp_container_client/api/content_tags_api.rb +6 -6
  30. data/lib/pulp_container_client/api/distributions_container_api.rb +4 -4
  31. data/lib/pulp_container_client/api/distributions_pull_through_api.rb +4 -4
  32. data/lib/pulp_container_client/api/repositories_container_api.rb +2 -2
  33. data/lib/pulp_container_client/api/repositories_container_push_api.rb +2 -2
  34. data/lib/pulp_container_client/models/container_container_distribution.rb +21 -21
  35. data/lib/pulp_container_client/models/container_container_distribution_response.rb +60 -60
  36. data/lib/pulp_container_client/models/container_container_pull_through_distribution.rb +21 -21
  37. data/lib/pulp_container_client/models/container_container_pull_through_distribution_response.rb +60 -60
  38. data/lib/pulp_container_client/models/container_container_pull_through_remote.rb +32 -32
  39. data/lib/pulp_container_client/models/container_container_pull_through_remote_response.rb +44 -44
  40. data/lib/pulp_container_client/models/container_container_push_repository.rb +21 -21
  41. data/lib/pulp_container_client/models/container_container_push_repository_response.rb +59 -59
  42. data/lib/pulp_container_client/models/container_container_remote.rb +33 -33
  43. data/lib/pulp_container_client/models/container_container_remote_response.rb +45 -45
  44. data/lib/pulp_container_client/models/patchedcontainer_container_distribution.rb +21 -21
  45. data/lib/pulp_container_client/models/patchedcontainer_container_pull_through_distribution.rb +21 -21
  46. data/lib/pulp_container_client/models/patchedcontainer_container_pull_through_remote.rb +32 -32
  47. data/lib/pulp_container_client/models/patchedcontainer_container_push_repository.rb +21 -21
  48. data/lib/pulp_container_client/models/patchedcontainer_container_remote.rb +33 -33
  49. data/lib/pulp_container_client/version.rb +1 -1
  50. data/spec/api/content_blobs_api_spec.rb +3 -3
  51. data/spec/api/content_manifests_api_spec.rb +3 -3
  52. data/spec/api/content_signatures_api_spec.rb +3 -3
  53. data/spec/api/content_tags_api_spec.rb +3 -3
  54. data/spec/api/distributions_container_api_spec.rb +2 -2
  55. data/spec/api/distributions_pull_through_api_spec.rb +2 -2
  56. data/spec/api/repositories_container_api_spec.rb +1 -1
  57. data/spec/api/repositories_container_push_api_spec.rb +1 -1
  58. data/spec/models/container_container_distribution_response_spec.rb +11 -11
  59. data/spec/models/container_container_distribution_spec.rb +4 -4
  60. data/spec/models/container_container_pull_through_distribution_response_spec.rb +11 -11
  61. data/spec/models/container_container_pull_through_distribution_spec.rb +4 -4
  62. data/spec/models/container_container_pull_through_remote_response_spec.rb +10 -10
  63. data/spec/models/container_container_pull_through_remote_spec.rb +17 -17
  64. data/spec/models/container_container_push_repository_response_spec.rb +11 -11
  65. data/spec/models/container_container_push_repository_spec.rb +4 -4
  66. data/spec/models/container_container_remote_response_spec.rb +10 -10
  67. data/spec/models/container_container_remote_spec.rb +17 -17
  68. data/spec/models/patchedcontainer_container_distribution_spec.rb +4 -4
  69. data/spec/models/patchedcontainer_container_pull_through_distribution_spec.rb +4 -4
  70. data/spec/models/patchedcontainer_container_pull_through_remote_spec.rb +17 -17
  71. data/spec/models/patchedcontainer_container_push_repository_spec.rb +4 -4
  72. data/spec/models/patchedcontainer_container_remote_spec.rb +17 -17
  73. metadata +2 -2
@@ -288,8 +288,8 @@ opts = {
288
288
  pulp_id__in: ['inner_example'], # Array<String> | Multiple values may be separated by commas.
289
289
  pulp_label_select: 'pulp_label_select_example', # String | Filter labels by search string
290
290
  q: 'q_example', # String | Filter results by using NOT, AND and OR operations on other filters
291
- repository: '38400000-8cf0-11bd-b23e-10b96e4ef00d', # String | Filter results where repository matches value
292
- repository__in: ['inner_example'], # Array<String> | Filter results where repository is in a comma-separated list of values
291
+ repository: 'repository_example', # String |
292
+ repository__in: ['inner_example'], # Array<String> |
293
293
  with_content: 'with_content_example', # String | Filter distributions based on the content served by them
294
294
  fields: ['inner_example'], # Array<String> | A list of fields to include in the response.
295
295
  exclude_fields: ['inner_example'] # Array<String> | A list of fields to exclude from the response.
@@ -350,8 +350,8 @@ end
350
350
  | **pulp_id__in** | [**Array&lt;String&gt;**](String.md) | Multiple values may be separated by commas. | [optional] |
351
351
  | **pulp_label_select** | **String** | Filter labels by search string | [optional] |
352
352
  | **q** | **String** | Filter results by using NOT, AND and OR operations on other filters | [optional] |
353
- | **repository** | **String** | Filter results where repository matches value | [optional] |
354
- | **repository__in** | [**Array&lt;String&gt;**](String.md) | Filter results where repository is in a comma-separated list of values | [optional] |
353
+ | **repository** | **String** | | [optional] |
354
+ | **repository__in** | [**Array&lt;String&gt;**](String.md) | | [optional] |
355
355
  | **with_content** | **String** | Filter distributions based on the content served by them | [optional] |
356
356
  | **fields** | [**Array&lt;String&gt;**](String.md) | A list of fields to include in the response. | [optional] |
357
357
  | **exclude_fields** | [**Array&lt;String&gt;**](String.md) | A list of fields to exclude from the response. | [optional] |
@@ -287,8 +287,8 @@ opts = {
287
287
  pulp_id__in: ['inner_example'], # Array<String> | Multiple values may be separated by commas.
288
288
  pulp_label_select: 'pulp_label_select_example', # String | Filter labels by search string
289
289
  q: 'q_example', # String | Filter results by using NOT, AND and OR operations on other filters
290
- repository: '38400000-8cf0-11bd-b23e-10b96e4ef00d', # String | Filter results where repository matches value
291
- repository__in: ['inner_example'], # Array<String> | Filter results where repository is in a comma-separated list of values
290
+ repository: 'repository_example', # String |
291
+ repository__in: ['inner_example'], # Array<String> |
292
292
  with_content: 'with_content_example', # String | Filter distributions based on the content served by them
293
293
  fields: ['inner_example'], # Array<String> | A list of fields to include in the response.
294
294
  exclude_fields: ['inner_example'] # Array<String> | A list of fields to exclude from the response.
@@ -348,8 +348,8 @@ end
348
348
  | **pulp_id__in** | [**Array&lt;String&gt;**](String.md) | Multiple values may be separated by commas. | [optional] |
349
349
  | **pulp_label_select** | **String** | Filter labels by search string | [optional] |
350
350
  | **q** | **String** | Filter results by using NOT, AND and OR operations on other filters | [optional] |
351
- | **repository** | **String** | Filter results where repository matches value | [optional] |
352
- | **repository__in** | [**Array&lt;String&gt;**](String.md) | Filter results where repository is in a comma-separated list of values | [optional] |
351
+ | **repository** | **String** | | [optional] |
352
+ | **repository__in** | [**Array&lt;String&gt;**](String.md) | | [optional] |
353
353
  | **with_content** | **String** | Filter distributions based on the content served by them | [optional] |
354
354
  | **fields** | [**Array&lt;String&gt;**](String.md) | A list of fields to include in the response. | [optional] |
355
355
  | **exclude_fields** | [**Array&lt;String&gt;**](String.md) | A list of fields to exclude from the response. | [optional] |
@@ -4,10 +4,10 @@
4
4
 
5
5
  | Name | Type | Description | Notes |
6
6
  | ---- | ---- | ----------- | ----- |
7
- | **repository** | **String** | The latest RepositoryVersion for this Repository will be served. | [optional] |
8
7
  | **hidden** | **Boolean** | Whether this distribution should be shown in the content app. | [optional][default to false] |
9
- | **content_guard** | **String** | An optional content-guard. If none is specified, a default one will be used. | [optional] |
10
8
  | **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] |
9
+ | **repository** | **String** | The latest RepositoryVersion for this Repository will be served. | [optional] |
10
+ | **content_guard** | **String** | An optional content-guard. If none is specified, a default one will be used. | [optional] |
11
11
  | **pulp_labels** | **Hash&lt;String, String&gt;** | | [optional] |
12
12
  | **name** | **String** | A unique name. Ex, &#x60;rawhide&#x60; and &#x60;stable&#x60;. | [optional] |
13
13
  | **repository_version** | **String** | RepositoryVersion to be served | [optional] |
@@ -20,10 +20,10 @@
20
20
  require 'pulp_container_client'
21
21
 
22
22
  instance = PulpContainerClient::PatchedcontainerContainerDistribution.new(
23
- repository: null,
24
23
  hidden: null,
25
- content_guard: null,
26
24
  base_path: null,
25
+ repository: null,
26
+ content_guard: null,
27
27
  pulp_labels: null,
28
28
  name: null,
29
29
  repository_version: null,
@@ -4,10 +4,10 @@
4
4
 
5
5
  | Name | Type | Description | Notes |
6
6
  | ---- | ---- | ----------- | ----- |
7
- | **repository** | **String** | The latest RepositoryVersion for this Repository will be served. | [optional] |
8
7
  | **hidden** | **Boolean** | Whether this distribution should be shown in the content app. | [optional][default to false] |
9
- | **content_guard** | **String** | An optional content-guard. If none is specified, a default one will be used. | [optional] |
10
8
  | **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] |
9
+ | **repository** | **String** | The latest RepositoryVersion for this Repository will be served. | [optional] |
10
+ | **content_guard** | **String** | An optional content-guard. If none is specified, a default one will be used. | [optional] |
11
11
  | **pulp_labels** | **Hash&lt;String, String&gt;** | | [optional] |
12
12
  | **name** | **String** | A unique name. Ex, &#x60;rawhide&#x60; and &#x60;stable&#x60;. | [optional] |
13
13
  | **remote** | **String** | Remote that can be used to fetch content when using pull-through caching. | [optional] |
@@ -21,10 +21,10 @@
21
21
  require 'pulp_container_client'
22
22
 
23
23
  instance = PulpContainerClient::PatchedcontainerContainerPullThroughDistribution.new(
24
- repository: null,
25
24
  hidden: null,
26
- content_guard: null,
27
25
  base_path: null,
26
+ repository: null,
27
+ content_guard: null,
28
28
  pulp_labels: null,
29
29
  name: null,
30
30
  remote: null,
@@ -6,6 +6,8 @@
6
6
  | ---- | ---- | ----------- | ----- |
7
7
  | **name** | **String** | A unique name for this remote. | [optional] |
8
8
  | **url** | **String** | The URL of an external content source. | [optional] |
9
+ | **pulp_labels** | **Hash&lt;String, String&gt;** | | [optional] |
10
+ | **policy** | [**Policy7e0Enum**](Policy7e0Enum.md) | | [optional] |
9
11
  | **ca_cert** | **String** | A PEM encoded CA certificate used to validate the server certificate presented by the remote server. | [optional] |
10
12
  | **client_cert** | **String** | A PEM encoded client certificate used for authentication. | [optional] |
11
13
  | **client_key** | **String** | A PEM encoded private key used for authentication. | [optional] |
@@ -15,15 +17,13 @@
15
17
  | **proxy_password** | **String** | The password to authenticate to the proxy. Extra leading and trailing whitespace characters are not trimmed. | [optional] |
16
18
  | **username** | **String** | The username to be used for authentication when syncing. | [optional] |
17
19
  | **password** | **String** | The password to be used for authentication when syncing. Extra leading and trailing whitespace characters are not trimmed. | [optional] |
18
- | **pulp_labels** | **Hash&lt;String, String&gt;** | | [optional] |
19
- | **download_concurrency** | **Integer** | Total number of simultaneous connections. If not set then the default value will be used. | [optional] |
20
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
- | **policy** | [**Policy7e0Enum**](Policy7e0Enum.md) | | [optional] |
22
21
  | **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] |
23
22
  | **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] |
24
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] |
25
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] |
26
25
  | **headers** | **Array&lt;Object&gt;** | Headers for aiohttp.Clientsession | [optional] |
26
+ | **download_concurrency** | **Integer** | Total number of simultaneous connections. If not set then the default value will be used. | [optional] |
27
27
  | **rate_limit** | **Integer** | Limits requests per second for each concurrent downloader | [optional] |
28
28
  | **includes** | **Array&lt;String&gt;** | A list of remotes to include during pull-through caching. Wildcards *, ? are recognized. &#39;includes&#39; is evaluated before &#39;excludes&#39;. | [optional] |
29
29
  | **excludes** | **Array&lt;String&gt;** | A list of remotes to exclude during pull-through caching. Wildcards *, ? are recognized. &#39;excludes&#39; is evaluated after &#39;includes&#39;. | [optional] |
@@ -36,6 +36,8 @@ require 'pulp_container_client'
36
36
  instance = PulpContainerClient::PatchedcontainerContainerPullThroughRemote.new(
37
37
  name: null,
38
38
  url: null,
39
+ pulp_labels: null,
40
+ policy: null,
39
41
  ca_cert: null,
40
42
  client_cert: null,
41
43
  client_key: null,
@@ -45,15 +47,13 @@ instance = PulpContainerClient::PatchedcontainerContainerPullThroughRemote.new(
45
47
  proxy_password: null,
46
48
  username: null,
47
49
  password: null,
48
- pulp_labels: null,
49
- download_concurrency: null,
50
50
  max_retries: null,
51
- policy: null,
52
51
  total_timeout: null,
53
52
  connect_timeout: null,
54
53
  sock_connect_timeout: null,
55
54
  sock_read_timeout: null,
56
55
  headers: null,
56
+ download_concurrency: null,
57
57
  rate_limit: null,
58
58
  includes: null,
59
59
  excludes: null
@@ -4,10 +4,10 @@
4
4
 
5
5
  | Name | Type | Description | Notes |
6
6
  | ---- | ---- | ----------- | ----- |
7
- | **manifest_signing_service** | **String** | A reference to an associated signing service. | [optional] |
8
- | **pulp_labels** | **Hash&lt;String, String&gt;** | | [optional] |
9
7
  | **description** | **String** | An optional description. | [optional] |
10
8
  | **retain_repo_versions** | **Integer** | Retain X versions of the repository. Default is null which retains all versions. | [optional] |
9
+ | **pulp_labels** | **Hash&lt;String, String&gt;** | | [optional] |
10
+ | **manifest_signing_service** | **String** | A reference to an associated signing service. | [optional] |
11
11
  | **name** | **String** | A unique name for this repository. | [optional] |
12
12
 
13
13
  ## Example
@@ -16,10 +16,10 @@
16
16
  require 'pulp_container_client'
17
17
 
18
18
  instance = PulpContainerClient::PatchedcontainerContainerPushRepository.new(
19
- manifest_signing_service: null,
20
- pulp_labels: null,
21
19
  description: null,
22
20
  retain_repo_versions: null,
21
+ pulp_labels: null,
22
+ manifest_signing_service: null,
23
23
  name: null
24
24
  )
25
25
  ```
@@ -6,6 +6,8 @@
6
6
  | ---- | ---- | ----------- | ----- |
7
7
  | **name** | **String** | A unique name for this remote. | [optional] |
8
8
  | **url** | **String** | The URL of an external content source. | [optional] |
9
+ | **pulp_labels** | **Hash&lt;String, String&gt;** | | [optional] |
10
+ | **policy** | [**Policy692Enum**](Policy692Enum.md) | immediate - All manifests and blobs are downloaded and saved during a sync. on_demand - Only tags and manifests are downloaded. Blobs are not downloaded until they are requested for the first time by a client. streamed - Blobs are streamed to the client with every request and never saved. * &#x60;immediate&#x60; - When syncing, download all metadata and content now. * &#x60;on_demand&#x60; - When syncing, download metadata, but do not download content now. Instead, download content as clients request it, and save it in Pulp to be served for future client requests. * &#x60;streamed&#x60; - When syncing, download metadata, but do not download content now. Instead,download content as clients request it, but never save it in Pulp. This causes future requests for that same content to have to be downloaded again. | [optional] |
9
11
  | **ca_cert** | **String** | A PEM encoded CA certificate used to validate the server certificate presented by the remote server. | [optional] |
10
12
  | **client_cert** | **String** | A PEM encoded client certificate used for authentication. | [optional] |
11
13
  | **client_key** | **String** | A PEM encoded private key used for authentication. | [optional] |
@@ -15,15 +17,13 @@
15
17
  | **proxy_password** | **String** | The password to authenticate to the proxy. Extra leading and trailing whitespace characters are not trimmed. | [optional] |
16
18
  | **username** | **String** | The username to be used for authentication when syncing. | [optional] |
17
19
  | **password** | **String** | The password to be used for authentication when syncing. Extra leading and trailing whitespace characters are not trimmed. | [optional] |
18
- | **pulp_labels** | **Hash&lt;String, String&gt;** | | [optional] |
19
- | **download_concurrency** | **Integer** | Total number of simultaneous connections. If not set then the default value will be used. | [optional] |
20
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
- | **policy** | [**Policy692Enum**](Policy692Enum.md) | immediate - All manifests and blobs are downloaded and saved during a sync. on_demand - Only tags and manifests are downloaded. Blobs are not downloaded until they are requested for the first time by a client. streamed - Blobs are streamed to the client with every request and never saved. * &#x60;immediate&#x60; - When syncing, download all metadata and content now. * &#x60;on_demand&#x60; - When syncing, download metadata, but do not download content now. Instead, download content as clients request it, and save it in Pulp to be served for future client requests. * &#x60;streamed&#x60; - When syncing, download metadata, but do not download content now. Instead,download content as clients request it, but never save it in Pulp. This causes future requests for that same content to have to be downloaded again. | [optional] |
22
21
  | **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] |
23
22
  | **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] |
24
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] |
25
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] |
26
25
  | **headers** | **Array&lt;Object&gt;** | Headers for aiohttp.Clientsession | [optional] |
26
+ | **download_concurrency** | **Integer** | Total number of simultaneous connections. If not set then the default value will be used. | [optional] |
27
27
  | **rate_limit** | **Integer** | Limits requests per second for each concurrent downloader | [optional] |
28
28
  | **upstream_name** | **String** | Name of the upstream repository | [optional] |
29
29
  | **include_tags** | **Array&lt;String&gt;** | A list of tags to include during sync. Wildcards *, ? are recognized. &#39;include_tags&#39; is evaluated before &#39;exclude_tags&#39;. | [optional] |
@@ -38,6 +38,8 @@ require 'pulp_container_client'
38
38
  instance = PulpContainerClient::PatchedcontainerContainerRemote.new(
39
39
  name: null,
40
40
  url: null,
41
+ pulp_labels: null,
42
+ policy: null,
41
43
  ca_cert: null,
42
44
  client_cert: null,
43
45
  client_key: null,
@@ -47,15 +49,13 @@ instance = PulpContainerClient::PatchedcontainerContainerRemote.new(
47
49
  proxy_password: null,
48
50
  username: null,
49
51
  password: null,
50
- pulp_labels: null,
51
- download_concurrency: null,
52
52
  max_retries: null,
53
- policy: null,
54
53
  total_timeout: null,
55
54
  connect_timeout: null,
56
55
  sock_connect_timeout: null,
57
56
  sock_read_timeout: null,
58
57
  headers: null,
58
+ download_concurrency: null,
59
59
  rate_limit: null,
60
60
  upstream_name: null,
61
61
  include_tags: null,
@@ -602,7 +602,7 @@ opts = {
602
602
  pulp_id__in: ['inner_example'], # Array<String> | Multiple values may be separated by commas.
603
603
  pulp_label_select: 'pulp_label_select_example', # String | Filter labels by search string
604
604
  q: 'q_example', # String | Filter results by using NOT, AND and OR operations on other filters
605
- remote: '38400000-8cf0-11bd-b23e-10b96e4ef00d', # String | Foreign Key referenced by HREF
605
+ remote: 'remote_example', # String |
606
606
  retain_repo_versions: 56, # Integer | Filter results where retain_repo_versions matches value
607
607
  retain_repo_versions__gt: 56, # Integer | Filter results where retain_repo_versions is greater than value
608
608
  retain_repo_versions__gte: 56, # Integer | Filter results where retain_repo_versions is greater than or equal to value
@@ -666,7 +666,7 @@ end
666
666
  | **pulp_id__in** | [**Array&lt;String&gt;**](String.md) | Multiple values may be separated by commas. | [optional] |
667
667
  | **pulp_label_select** | **String** | Filter labels by search string | [optional] |
668
668
  | **q** | **String** | Filter results by using NOT, AND and OR operations on other filters | [optional] |
669
- | **remote** | **String** | Foreign Key referenced by HREF | [optional] |
669
+ | **remote** | **String** | | [optional] |
670
670
  | **retain_repo_versions** | **Integer** | Filter results where retain_repo_versions matches value | [optional] |
671
671
  | **retain_repo_versions__gt** | **Integer** | Filter results where retain_repo_versions is greater than value | [optional] |
672
672
  | **retain_repo_versions__gte** | **Integer** | Filter results where retain_repo_versions is greater than or equal to value | [optional] |
@@ -136,7 +136,7 @@ opts = {
136
136
  pulp_id__in: ['inner_example'], # Array<String> | Multiple values may be separated by commas.
137
137
  pulp_label_select: 'pulp_label_select_example', # String | Filter labels by search string
138
138
  q: 'q_example', # String | Filter results by using NOT, AND and OR operations on other filters
139
- remote: '38400000-8cf0-11bd-b23e-10b96e4ef00d', # String | Foreign Key referenced by HREF
139
+ remote: 'remote_example', # String |
140
140
  retain_repo_versions: 56, # Integer | Filter results where retain_repo_versions matches value
141
141
  retain_repo_versions__gt: 56, # Integer | Filter results where retain_repo_versions is greater than value
142
142
  retain_repo_versions__gte: 56, # Integer | Filter results where retain_repo_versions is greater than or equal to value
@@ -200,7 +200,7 @@ end
200
200
  | **pulp_id__in** | [**Array&lt;String&gt;**](String.md) | Multiple values may be separated by commas. | [optional] |
201
201
  | **pulp_label_select** | **String** | Filter labels by search string | [optional] |
202
202
  | **q** | **String** | Filter results by using NOT, AND and OR operations on other filters | [optional] |
203
- | **remote** | **String** | Foreign Key referenced by HREF | [optional] |
203
+ | **remote** | **String** | | [optional] |
204
204
  | **retain_repo_versions** | **Integer** | Filter results where retain_repo_versions matches value | [optional] |
205
205
  | **retain_repo_versions__gt** | **Integer** | Filter results where retain_repo_versions is greater than value | [optional] |
206
206
  | **retain_repo_versions__gte** | **Integer** | Filter results where retain_repo_versions is greater than or equal to value | [optional] |
@@ -34,9 +34,9 @@ module PulpContainerClient
34
34
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
35
35
  # @option opts [String] :pulp_label_select Filter labels by search string
36
36
  # @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
37
- # @option opts [String] :repository_version Repository Version referenced by HREF/PRN
38
- # @option opts [String] :repository_version_added Repository Version referenced by HREF/PRN
39
- # @option opts [String] :repository_version_removed Repository Version referenced by HREF/PRN
37
+ # @option opts [String] :repository_version
38
+ # @option opts [String] :repository_version_added
39
+ # @option opts [String] :repository_version_removed
40
40
  # @option opts [Array<String>] :fields A list of fields to include in the response.
41
41
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
42
42
  # @return [PaginatedcontainerBlobResponseList]
@@ -60,9 +60,9 @@ module PulpContainerClient
60
60
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
61
61
  # @option opts [String] :pulp_label_select Filter labels by search string
62
62
  # @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
63
- # @option opts [String] :repository_version Repository Version referenced by HREF/PRN
64
- # @option opts [String] :repository_version_added Repository Version referenced by HREF/PRN
65
- # @option opts [String] :repository_version_removed Repository Version referenced by HREF/PRN
63
+ # @option opts [String] :repository_version
64
+ # @option opts [String] :repository_version_added
65
+ # @option opts [String] :repository_version_removed
66
66
  # @option opts [Array<String>] :fields A list of fields to include in the response.
67
67
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
68
68
  # @return [Array<(PaginatedcontainerBlobResponseList, Integer, Hash)>] PaginatedcontainerBlobResponseList data, response status code and response headers
@@ -37,9 +37,9 @@ module PulpContainerClient
37
37
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
38
38
  # @option opts [String] :pulp_label_select Filter labels by search string
39
39
  # @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
40
- # @option opts [String] :repository_version Repository Version referenced by HREF/PRN
41
- # @option opts [String] :repository_version_added Repository Version referenced by HREF/PRN
42
- # @option opts [String] :repository_version_removed Repository Version referenced by HREF/PRN
40
+ # @option opts [String] :repository_version
41
+ # @option opts [String] :repository_version_added
42
+ # @option opts [String] :repository_version_removed
43
43
  # @option opts [Array<String>] :fields A list of fields to include in the response.
44
44
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
45
45
  # @return [PaginatedcontainerManifestResponseList]
@@ -66,9 +66,9 @@ module PulpContainerClient
66
66
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
67
67
  # @option opts [String] :pulp_label_select Filter labels by search string
68
68
  # @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
69
- # @option opts [String] :repository_version Repository Version referenced by HREF/PRN
70
- # @option opts [String] :repository_version_added Repository Version referenced by HREF/PRN
71
- # @option opts [String] :repository_version_removed Repository Version referenced by HREF/PRN
69
+ # @option opts [String] :repository_version
70
+ # @option opts [String] :repository_version_added
71
+ # @option opts [String] :repository_version_removed
72
72
  # @option opts [Array<String>] :fields A list of fields to include in the response.
73
73
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
74
74
  # @return [Array<(PaginatedcontainerManifestResponseList, Integer, Hash)>] PaginatedcontainerManifestResponseList data, response status code and response headers
@@ -46,9 +46,9 @@ module PulpContainerClient
46
46
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
47
47
  # @option opts [String] :pulp_label_select Filter labels by search string
48
48
  # @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
49
- # @option opts [String] :repository_version Repository Version referenced by HREF/PRN
50
- # @option opts [String] :repository_version_added Repository Version referenced by HREF/PRN
51
- # @option opts [String] :repository_version_removed Repository Version referenced by HREF/PRN
49
+ # @option opts [String] :repository_version
50
+ # @option opts [String] :repository_version_added
51
+ # @option opts [String] :repository_version_removed
52
52
  # @option opts [Array<String>] :fields A list of fields to include in the response.
53
53
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
54
54
  # @return [PaginatedcontainerManifestSignatureResponseList]
@@ -84,9 +84,9 @@ module PulpContainerClient
84
84
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
85
85
  # @option opts [String] :pulp_label_select Filter labels by search string
86
86
  # @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
87
- # @option opts [String] :repository_version Repository Version referenced by HREF/PRN
88
- # @option opts [String] :repository_version_added Repository Version referenced by HREF/PRN
89
- # @option opts [String] :repository_version_removed Repository Version referenced by HREF/PRN
87
+ # @option opts [String] :repository_version
88
+ # @option opts [String] :repository_version_added
89
+ # @option opts [String] :repository_version_removed
90
90
  # @option opts [Array<String>] :fields A list of fields to include in the response.
91
91
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
92
92
  # @return [Array<(PaginatedcontainerManifestSignatureResponseList, Integer, Hash)>] PaginatedcontainerManifestSignatureResponseList data, response status code and response headers
@@ -36,9 +36,9 @@ module PulpContainerClient
36
36
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
37
37
  # @option opts [String] :pulp_label_select Filter labels by search string
38
38
  # @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
39
- # @option opts [String] :repository_version Repository Version referenced by HREF/PRN
40
- # @option opts [String] :repository_version_added Repository Version referenced by HREF/PRN
41
- # @option opts [String] :repository_version_removed Repository Version referenced by HREF/PRN
39
+ # @option opts [String] :repository_version
40
+ # @option opts [String] :repository_version_added
41
+ # @option opts [String] :repository_version_removed
42
42
  # @option opts [Array<String>] :fields A list of fields to include in the response.
43
43
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
44
44
  # @return [PaginatedcontainerTagResponseList]
@@ -64,9 +64,9 @@ module PulpContainerClient
64
64
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
65
65
  # @option opts [String] :pulp_label_select Filter labels by search string
66
66
  # @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
67
- # @option opts [String] :repository_version Repository Version referenced by HREF/PRN
68
- # @option opts [String] :repository_version_added Repository Version referenced by HREF/PRN
69
- # @option opts [String] :repository_version_removed Repository Version referenced by HREF/PRN
67
+ # @option opts [String] :repository_version
68
+ # @option opts [String] :repository_version_added
69
+ # @option opts [String] :repository_version_removed
70
70
  # @option opts [Array<String>] :fields A list of fields to include in the response.
71
71
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
72
72
  # @return [Array<(PaginatedcontainerTagResponseList, Integer, Hash)>] PaginatedcontainerTagResponseList data, response status code and response headers
@@ -260,8 +260,8 @@ module PulpContainerClient
260
260
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
261
261
  # @option opts [String] :pulp_label_select Filter labels by search string
262
262
  # @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
263
- # @option opts [String] :repository Filter results where repository matches value
264
- # @option opts [Array<String>] :repository__in Filter results where repository is in a comma-separated list of values
263
+ # @option opts [String] :repository
264
+ # @option opts [Array<String>] :repository__in
265
265
  # @option opts [String] :with_content Filter distributions based on the content served by them
266
266
  # @option opts [Array<String>] :fields A list of fields to include in the response.
267
267
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
@@ -298,8 +298,8 @@ module PulpContainerClient
298
298
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
299
299
  # @option opts [String] :pulp_label_select Filter labels by search string
300
300
  # @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
301
- # @option opts [String] :repository Filter results where repository matches value
302
- # @option opts [Array<String>] :repository__in Filter results where repository is in a comma-separated list of values
301
+ # @option opts [String] :repository
302
+ # @option opts [Array<String>] :repository__in
303
303
  # @option opts [String] :with_content Filter distributions based on the content served by them
304
304
  # @option opts [Array<String>] :fields A list of fields to include in the response.
305
305
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
@@ -259,8 +259,8 @@ module PulpContainerClient
259
259
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
260
260
  # @option opts [String] :pulp_label_select Filter labels by search string
261
261
  # @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
262
- # @option opts [String] :repository Filter results where repository matches value
263
- # @option opts [Array<String>] :repository__in Filter results where repository is in a comma-separated list of values
262
+ # @option opts [String] :repository
263
+ # @option opts [Array<String>] :repository__in
264
264
  # @option opts [String] :with_content Filter distributions based on the content served by them
265
265
  # @option opts [Array<String>] :fields A list of fields to include in the response.
266
266
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
@@ -296,8 +296,8 @@ module PulpContainerClient
296
296
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
297
297
  # @option opts [String] :pulp_label_select Filter labels by search string
298
298
  # @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
299
- # @option opts [String] :repository Filter results where repository matches value
300
- # @option opts [Array<String>] :repository__in Filter results where repository is in a comma-separated list of values
299
+ # @option opts [String] :repository
300
+ # @option opts [Array<String>] :repository__in
301
301
  # @option opts [String] :with_content Filter distributions based on the content served by them
302
302
  # @option opts [Array<String>] :fields A list of fields to include in the response.
303
303
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
@@ -573,7 +573,7 @@ module PulpContainerClient
573
573
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
574
574
  # @option opts [String] :pulp_label_select Filter labels by search string
575
575
  # @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
576
- # @option opts [String] :remote Foreign Key referenced by HREF
576
+ # @option opts [String] :remote
577
577
  # @option opts [Integer] :retain_repo_versions Filter results where retain_repo_versions matches value
578
578
  # @option opts [Integer] :retain_repo_versions__gt Filter results where retain_repo_versions is greater than value
579
579
  # @option opts [Integer] :retain_repo_versions__gte Filter results where retain_repo_versions is greater than or equal to value
@@ -613,7 +613,7 @@ module PulpContainerClient
613
613
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
614
614
  # @option opts [String] :pulp_label_select Filter labels by search string
615
615
  # @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
616
- # @option opts [String] :remote Foreign Key referenced by HREF
616
+ # @option opts [String] :remote
617
617
  # @option opts [Integer] :retain_repo_versions Filter results where retain_repo_versions matches value
618
618
  # @option opts [Integer] :retain_repo_versions__gt Filter results where retain_repo_versions is greater than value
619
619
  # @option opts [Integer] :retain_repo_versions__gte Filter results where retain_repo_versions is greater than or equal to value
@@ -118,7 +118,7 @@ module PulpContainerClient
118
118
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
119
119
  # @option opts [String] :pulp_label_select Filter labels by search string
120
120
  # @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
121
- # @option opts [String] :remote Foreign Key referenced by HREF
121
+ # @option opts [String] :remote
122
122
  # @option opts [Integer] :retain_repo_versions Filter results where retain_repo_versions matches value
123
123
  # @option opts [Integer] :retain_repo_versions__gt Filter results where retain_repo_versions is greater than value
124
124
  # @option opts [Integer] :retain_repo_versions__gte Filter results where retain_repo_versions is greater than or equal to value
@@ -158,7 +158,7 @@ module PulpContainerClient
158
158
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
159
159
  # @option opts [String] :pulp_label_select Filter labels by search string
160
160
  # @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
161
- # @option opts [String] :remote Foreign Key referenced by HREF
161
+ # @option opts [String] :remote
162
162
  # @option opts [Integer] :retain_repo_versions Filter results where retain_repo_versions matches value
163
163
  # @option opts [Integer] :retain_repo_versions__gt Filter results where retain_repo_versions is greater than value
164
164
  # @option opts [Integer] :retain_repo_versions__gte Filter results where retain_repo_versions is greater than or equal to value
@@ -16,18 +16,18 @@ require 'time'
16
16
  module PulpContainerClient
17
17
  # A serializer for ContainerDistribution.
18
18
  class ContainerContainerDistribution
19
- # The latest RepositoryVersion for this Repository will be served.
20
- attr_accessor :repository
21
-
22
19
  # Whether this distribution should be shown in the content app.
23
20
  attr_accessor :hidden
24
21
 
25
- # An optional content-guard. If none is specified, a default one will be used.
26
- attr_accessor :content_guard
27
-
28
22
  # The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
29
23
  attr_accessor :base_path
30
24
 
25
+ # The latest RepositoryVersion for this Repository will be served.
26
+ attr_accessor :repository
27
+
28
+ # An optional content-guard. If none is specified, a default one will be used.
29
+ attr_accessor :content_guard
30
+
31
31
  attr_accessor :pulp_labels
32
32
 
33
33
  # A unique name. Ex, `rawhide` and `stable`.
@@ -45,10 +45,10 @@ module PulpContainerClient
45
45
  # Attribute mapping from ruby-style variable name to JSON key.
46
46
  def self.attribute_map
47
47
  {
48
- :'repository' => :'repository',
49
48
  :'hidden' => :'hidden',
50
- :'content_guard' => :'content_guard',
51
49
  :'base_path' => :'base_path',
50
+ :'repository' => :'repository',
51
+ :'content_guard' => :'content_guard',
52
52
  :'pulp_labels' => :'pulp_labels',
53
53
  :'name' => :'name',
54
54
  :'repository_version' => :'repository_version',
@@ -65,10 +65,10 @@ module PulpContainerClient
65
65
  # Attribute type mapping.
66
66
  def self.openapi_types
67
67
  {
68
- :'repository' => :'String',
69
68
  :'hidden' => :'Boolean',
70
- :'content_guard' => :'String',
71
69
  :'base_path' => :'String',
70
+ :'repository' => :'String',
71
+ :'content_guard' => :'String',
72
72
  :'pulp_labels' => :'Hash<String, String>',
73
73
  :'name' => :'String',
74
74
  :'repository_version' => :'String',
@@ -101,26 +101,26 @@ module PulpContainerClient
101
101
  h[k.to_sym] = v
102
102
  }
103
103
 
104
- if attributes.key?(:'repository')
105
- self.repository = attributes[:'repository']
106
- end
107
-
108
104
  if attributes.key?(:'hidden')
109
105
  self.hidden = attributes[:'hidden']
110
106
  else
111
107
  self.hidden = false
112
108
  end
113
109
 
114
- if attributes.key?(:'content_guard')
115
- self.content_guard = attributes[:'content_guard']
116
- end
117
-
118
110
  if attributes.key?(:'base_path')
119
111
  self.base_path = attributes[:'base_path']
120
112
  else
121
113
  self.base_path = nil
122
114
  end
123
115
 
116
+ if attributes.key?(:'repository')
117
+ self.repository = attributes[:'repository']
118
+ end
119
+
120
+ if attributes.key?(:'content_guard')
121
+ self.content_guard = attributes[:'content_guard']
122
+ end
123
+
124
124
  if attributes.key?(:'pulp_labels')
125
125
  if (value = attributes[:'pulp_labels']).is_a?(Hash)
126
126
  self.pulp_labels = value
@@ -229,10 +229,10 @@ module PulpContainerClient
229
229
  def ==(o)
230
230
  return true if self.equal?(o)
231
231
  self.class == o.class &&
232
- repository == o.repository &&
233
232
  hidden == o.hidden &&
234
- content_guard == o.content_guard &&
235
233
  base_path == o.base_path &&
234
+ repository == o.repository &&
235
+ content_guard == o.content_guard &&
236
236
  pulp_labels == o.pulp_labels &&
237
237
  name == o.name &&
238
238
  repository_version == o.repository_version &&
@@ -249,7 +249,7 @@ module PulpContainerClient
249
249
  # Calculates hash code according to all attributes.
250
250
  # @return [Integer] Hash code
251
251
  def hash
252
- [repository, hidden, content_guard, base_path, pulp_labels, name, repository_version, private, description].hash
252
+ [hidden, base_path, repository, content_guard, pulp_labels, name, repository_version, private, description].hash
253
253
  end
254
254
 
255
255
  # Builds the object from hash