pulp_container_client 2.26.7 → 2.26.9

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 (33) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +4 -4
  3. data/docs/ContainerContainerDistribution.md +8 -8
  4. data/docs/ContainerContainerDistributionResponse.md +16 -16
  5. data/docs/ContainerContainerPullThroughDistribution.md +8 -8
  6. data/docs/ContainerContainerPullThroughDistributionResponse.md +16 -16
  7. data/docs/ContainerContainerPushRepository.md +7 -7
  8. data/docs/ContainerContainerPushRepositoryResponse.md +17 -17
  9. data/docs/DistributionsContainerApi.md +2 -2
  10. data/docs/DistributionsPullThroughApi.md +2 -2
  11. data/docs/PatchedcontainerContainerDistribution.md +8 -8
  12. data/docs/PatchedcontainerContainerPullThroughDistribution.md +8 -8
  13. data/docs/PatchedcontainerContainerPushRepository.md +7 -7
  14. data/lib/pulp_container_client/models/container_container_distribution.rb +63 -63
  15. data/lib/pulp_container_client/models/container_container_distribution_response.rb +72 -72
  16. data/lib/pulp_container_client/models/container_container_pull_through_distribution.rb +63 -63
  17. data/lib/pulp_container_client/models/container_container_pull_through_distribution_response.rb +72 -72
  18. data/lib/pulp_container_client/models/container_container_push_repository.rb +48 -48
  19. data/lib/pulp_container_client/models/container_container_push_repository_response.rb +65 -65
  20. data/lib/pulp_container_client/models/patchedcontainer_container_distribution.rb +56 -56
  21. data/lib/pulp_container_client/models/patchedcontainer_container_pull_through_distribution.rb +56 -56
  22. data/lib/pulp_container_client/models/patchedcontainer_container_push_repository.rb +46 -46
  23. data/lib/pulp_container_client/version.rb +1 -1
  24. data/spec/models/container_container_distribution_response_spec.rb +10 -10
  25. data/spec/models/container_container_distribution_spec.rb +6 -6
  26. data/spec/models/container_container_pull_through_distribution_response_spec.rb +10 -10
  27. data/spec/models/container_container_pull_through_distribution_spec.rb +6 -6
  28. data/spec/models/container_container_push_repository_response_spec.rb +11 -11
  29. data/spec/models/container_container_push_repository_spec.rb +5 -5
  30. data/spec/models/patchedcontainer_container_distribution_spec.rb +6 -6
  31. data/spec/models/patchedcontainer_container_pull_through_distribution_spec.rb +6 -6
  32. data/spec/models/patchedcontainer_container_push_repository_spec.rb +5 -5
  33. metadata +60 -60
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fcef76b675425522529c3b95e1494b23f1843b426182f54f12db16b5481baf6d
4
- data.tar.gz: f9ecc28a8efd819812af3bbe22ce514643484b4c7f4b9f328278c63b39e213af
3
+ metadata.gz: 2e5fc00ab389f9205979409261fad009906738f766c6211165cd70a230ce70ef
4
+ data.tar.gz: 58e9ee32224c7eb35f0a92f294d736ba67a119cd9739a24625b06b8a53250172
5
5
  SHA512:
6
- metadata.gz: 22bb9274476416f3b59dbcd063ef098d69207bb475f6f3fb9ffd7ca309e2ccc8d56b1570cbc4c5ceec7b40cde262740ada76589a641d2dbd2d3f745a1efebe51
7
- data.tar.gz: 91478ec4dc689bf047ece682b270672a04ea24617d912e5dbf8ca817efb8ab2c84dbc7b007220aecffab913e178126158531676eca306d0a47ffa434d02a1b47
6
+ metadata.gz: 3af6614fbfc3d6b79dc86f76e66fa10ae033ed46dd943bfa1f05bbbddb3b49d72aca8d22c839ac1f4a2919d426ddc7da68a153182f48063b761cebcf646c7310
7
+ data.tar.gz: 7bb5cc268682ac8eed3e7a5e7327999801e4f8f6d7c1190a30c5ec1440aa089261d552a567ed00dfa7b6d07856d6bb3c53601ffe08c1d7cff032dce6c86e1575
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: 2.26.7
10
+ - Package version: 2.26.9
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_container_client.gemspec
25
25
  Then either install the gem locally:
26
26
 
27
27
  ```shell
28
- gem install ./pulp_container_client-2.26.7.gem
28
+ gem install ./pulp_container_client-2.26.9.gem
29
29
  ```
30
30
 
31
- (for development, run `gem install --dev ./pulp_container_client-2.26.7.gem` to install the development dependencies)
31
+ (for development, run `gem install --dev ./pulp_container_client-2.26.9.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_container_client', '~> 2.26.7'
37
+ gem 'pulp_container_client', '~> 2.26.9'
38
38
 
39
39
  ### Install from Git
40
40
 
@@ -4,12 +4,12 @@
4
4
 
5
5
  | Name | Type | Description | Notes |
6
6
  | ---- | ---- | ----------- | ----- |
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
- | **content_guard** | **String** | An optional content-guard. If none is specified, a default one will be used. | [optional] |
9
- | **pulp_labels** | **Hash<String, String>** | | [optional] |
10
- | **hidden** | **Boolean** | Whether this distribution should be shown in the content app. | [optional][default to false] |
11
7
  | **name** | **String** | A unique name. Ex, `rawhide` and `stable`. | |
8
+ | **hidden** | **Boolean** | Whether this distribution should be shown in the content app. | [optional][default to false] |
12
9
  | **repository** | **String** | The latest RepositoryVersion for this Repository will be served. | [optional] |
10
+ | **pulp_labels** | **Hash<String, String>** | | [optional] |
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\") | |
12
+ | **content_guard** | **String** | An optional content-guard. If none is specified, a default one will be used. | [optional] |
13
13
  | **repository_version** | **String** | RepositoryVersion to be served | [optional] |
14
14
  | **private** | **Boolean** | Restrict pull access to explicitly authorized users. Defaults to unrestricted pull access. | [optional] |
15
15
  | **description** | **String** | An optional description. | [optional] |
@@ -20,12 +20,12 @@
20
20
  require 'pulp_container_client'
21
21
 
22
22
  instance = PulpContainerClient::ContainerContainerDistribution.new(
23
- base_path: null,
24
- content_guard: null,
25
- pulp_labels: null,
26
- hidden: null,
27
23
  name: null,
24
+ hidden: null,
28
25
  repository: null,
26
+ pulp_labels: null,
27
+ base_path: null,
28
+ content_guard: null,
29
29
  repository_version: null,
30
30
  private: null,
31
31
  description: null
@@ -4,17 +4,17 @@
4
4
 
5
5
  | Name | Type | Description | Notes |
6
6
  | ---- | ---- | ----------- | ----- |
7
- | **pulp_href** | **String** | | [optional][readonly] |
8
- | **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\") | |
7
+ | **name** | **String** | A unique name. Ex, `rawhide` and `stable`. | |
8
+ | **hidden** | **Boolean** | Whether this distribution should be shown in the content app. | [optional][default to false] |
9
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
- | **pulp_created** | **Time** | Timestamp of creation. | [optional][readonly] |
11
- | **content_guard** | **String** | An optional content-guard. If none is specified, a default one will be used. | [optional] |
12
- | **pulp_labels** | **Hash<String, String>** | | [optional] |
13
10
  | **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] |
14
- | **prn** | **String** | The Pulp Resource Name (PRN). | [optional][readonly] |
15
- | **hidden** | **Boolean** | Whether this distribution should be shown in the content app. | [optional][default to false] |
16
- | **name** | **String** | A unique name. Ex, `rawhide` and `stable`. | |
17
11
  | **repository** | **String** | The latest RepositoryVersion for this Repository will be served. | [optional] |
12
+ | **prn** | **String** | The Pulp Resource Name (PRN). | [optional][readonly] |
13
+ | **pulp_labels** | **Hash<String, String>** | | [optional] |
14
+ | **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\") | |
15
+ | **pulp_created** | **Time** | Timestamp of creation. | [optional][readonly] |
16
+ | **pulp_href** | **String** | | [optional][readonly] |
17
+ | **content_guard** | **String** | An optional content-guard. If none is specified, a default one will be used. | [optional] |
18
18
  | **repository_version** | **String** | RepositoryVersion to be served | [optional] |
19
19
  | **registry_path** | **String** | The Registry hostname/name/ to use with docker pull command defined by this distribution. | [optional][readonly] |
20
20
  | **remote** | **String** | Remote that can be used to fetch content when using pull-through caching. | [optional][readonly] |
@@ -28,17 +28,17 @@
28
28
  require 'pulp_container_client'
29
29
 
30
30
  instance = PulpContainerClient::ContainerContainerDistributionResponse.new(
31
- pulp_href: null,
32
- base_path: null,
31
+ name: null,
32
+ hidden: null,
33
33
  pulp_last_updated: null,
34
- pulp_created: null,
35
- content_guard: null,
36
- pulp_labels: null,
37
34
  no_content_change_since: null,
38
- prn: null,
39
- hidden: null,
40
- name: null,
41
35
  repository: null,
36
+ prn: null,
37
+ pulp_labels: null,
38
+ base_path: null,
39
+ pulp_created: null,
40
+ pulp_href: null,
41
+ content_guard: null,
42
42
  repository_version: null,
43
43
  registry_path: null,
44
44
  remote: null,
@@ -4,12 +4,12 @@
4
4
 
5
5
  | Name | Type | Description | Notes |
6
6
  | ---- | ---- | ----------- | ----- |
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
- | **content_guard** | **String** | An optional content-guard. If none is specified, a default one will be used. | [optional] |
9
- | **pulp_labels** | **Hash<String, String>** | | [optional] |
10
- | **hidden** | **Boolean** | Whether this distribution should be shown in the content app. | [optional][default to false] |
11
7
  | **name** | **String** | A unique name. Ex, `rawhide` and `stable`. | |
8
+ | **hidden** | **Boolean** | Whether this distribution should be shown in the content app. | [optional][default to false] |
12
9
  | **repository** | **String** | The latest RepositoryVersion for this Repository will be served. | [optional] |
10
+ | **pulp_labels** | **Hash<String, String>** | | [optional] |
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\") | |
12
+ | **content_guard** | **String** | An optional content-guard. If none is specified, a default one will be used. | [optional] |
13
13
  | **remote** | **String** | Remote that can be used to fetch content when using pull-through caching. | |
14
14
  | **distributions** | **Array<String>** | Distributions created after pulling content through cache | [optional] |
15
15
  | **private** | **Boolean** | Restrict pull access to explicitly authorized users. Related distributions inherit this value. Defaults to unrestricted pull access. | [optional] |
@@ -21,12 +21,12 @@
21
21
  require 'pulp_container_client'
22
22
 
23
23
  instance = PulpContainerClient::ContainerContainerPullThroughDistribution.new(
24
- base_path: null,
25
- content_guard: null,
26
- pulp_labels: null,
27
- hidden: null,
28
24
  name: null,
25
+ hidden: null,
29
26
  repository: null,
27
+ pulp_labels: null,
28
+ base_path: null,
29
+ content_guard: null,
30
30
  remote: null,
31
31
  distributions: null,
32
32
  private: null,
@@ -4,17 +4,17 @@
4
4
 
5
5
  | Name | Type | Description | Notes |
6
6
  | ---- | ---- | ----------- | ----- |
7
- | **pulp_href** | **String** | | [optional][readonly] |
8
- | **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\") | |
7
+ | **name** | **String** | A unique name. Ex, `rawhide` and `stable`. | |
8
+ | **hidden** | **Boolean** | Whether this distribution should be shown in the content app. | [optional][default to false] |
9
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
- | **pulp_created** | **Time** | Timestamp of creation. | [optional][readonly] |
11
- | **content_guard** | **String** | An optional content-guard. If none is specified, a default one will be used. | [optional] |
12
- | **pulp_labels** | **Hash<String, String>** | | [optional] |
13
10
  | **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] |
14
- | **prn** | **String** | The Pulp Resource Name (PRN). | [optional][readonly] |
15
- | **hidden** | **Boolean** | Whether this distribution should be shown in the content app. | [optional][default to false] |
16
- | **name** | **String** | A unique name. Ex, `rawhide` and `stable`. | |
17
11
  | **repository** | **String** | The latest RepositoryVersion for this Repository will be served. | [optional] |
12
+ | **prn** | **String** | The Pulp Resource Name (PRN). | [optional][readonly] |
13
+ | **pulp_labels** | **Hash<String, String>** | | [optional] |
14
+ | **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\") | |
15
+ | **pulp_created** | **Time** | Timestamp of creation. | [optional][readonly] |
16
+ | **pulp_href** | **String** | | [optional][readonly] |
17
+ | **content_guard** | **String** | An optional content-guard. If none is specified, a default one will be used. | [optional] |
18
18
  | **remote** | **String** | Remote that can be used to fetch content when using pull-through caching. | |
19
19
  | **distributions** | **Array<String>** | Distributions created after pulling content through cache | [optional] |
20
20
  | **namespace** | **String** | Namespace this distribution belongs to. | [optional][readonly] |
@@ -27,17 +27,17 @@
27
27
  require 'pulp_container_client'
28
28
 
29
29
  instance = PulpContainerClient::ContainerContainerPullThroughDistributionResponse.new(
30
- pulp_href: null,
31
- base_path: null,
30
+ name: null,
31
+ hidden: null,
32
32
  pulp_last_updated: null,
33
- pulp_created: null,
34
- content_guard: null,
35
- pulp_labels: null,
36
33
  no_content_change_since: null,
37
- prn: null,
38
- hidden: null,
39
- name: null,
40
34
  repository: null,
35
+ prn: null,
36
+ pulp_labels: null,
37
+ base_path: null,
38
+ pulp_created: null,
39
+ pulp_href: null,
40
+ content_guard: null,
41
41
  remote: null,
42
42
  distributions: null,
43
43
  namespace: null,
@@ -4,11 +4,11 @@
4
4
 
5
5
  | Name | Type | Description | Notes |
6
6
  | ---- | ---- | ----------- | ----- |
7
- | **pulp_labels** | **Hash<String, String>** | | [optional] |
8
- | **description** | **String** | An optional description. | [optional] |
9
7
  | **name** | **String** | A unique name for this repository. | |
10
- | **retain_repo_versions** | **Integer** | Retain X versions of the repository. Default is null which retains all versions. | [optional] |
11
8
  | **manifest_signing_service** | **String** | A reference to an associated signing service. | [optional] |
9
+ | **description** | **String** | An optional description. | [optional] |
10
+ | **pulp_labels** | **Hash<String, String>** | | [optional] |
11
+ | **retain_repo_versions** | **Integer** | Retain X versions of the repository. Default is null which retains all versions. | [optional] |
12
12
 
13
13
  ## Example
14
14
 
@@ -16,11 +16,11 @@
16
16
  require 'pulp_container_client'
17
17
 
18
18
  instance = PulpContainerClient::ContainerContainerPushRepository.new(
19
- pulp_labels: null,
20
- description: null,
21
19
  name: null,
22
- retain_repo_versions: null,
23
- manifest_signing_service: null
20
+ manifest_signing_service: null,
21
+ description: null,
22
+ pulp_labels: null,
23
+ retain_repo_versions: null
24
24
  )
25
25
  ```
26
26
 
@@ -4,17 +4,17 @@
4
4
 
5
5
  | Name | Type | Description | Notes |
6
6
  | ---- | ---- | ----------- | ----- |
7
- | **pulp_href** | **String** | | [optional][readonly] |
8
- | **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
- | **pulp_created** | **Time** | Timestamp of creation. | [optional][readonly] |
7
+ | **name** | **String** | A unique name for this repository. | |
10
8
  | **latest_version_href** | **String** | | [optional][readonly] |
11
- | **pulp_labels** | **Hash<String, String>** | | [optional] |
12
- | **prn** | **String** | The Pulp Resource Name (PRN). | [optional][readonly] |
13
- | **description** | **String** | An optional description. | [optional] |
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
+ | **manifest_signing_service** | **String** | A reference to an associated signing service. | [optional] |
14
11
  | **versions_href** | **String** | | [optional][readonly] |
15
- | **name** | **String** | A unique name for this repository. | |
12
+ | **description** | **String** | An optional description. | [optional] |
13
+ | **prn** | **String** | The Pulp Resource Name (PRN). | [optional][readonly] |
14
+ | **pulp_labels** | **Hash<String, String>** | | [optional] |
15
+ | **pulp_created** | **Time** | Timestamp of creation. | [optional][readonly] |
16
+ | **pulp_href** | **String** | | [optional][readonly] |
16
17
  | **retain_repo_versions** | **Integer** | Retain X versions of the repository. Default is null which retains all versions. | [optional] |
17
- | **manifest_signing_service** | **String** | A reference to an associated signing service. | [optional] |
18
18
 
19
19
  ## Example
20
20
 
@@ -22,17 +22,17 @@
22
22
  require 'pulp_container_client'
23
23
 
24
24
  instance = PulpContainerClient::ContainerContainerPushRepositoryResponse.new(
25
- pulp_href: null,
26
- pulp_last_updated: null,
27
- pulp_created: null,
25
+ name: null,
28
26
  latest_version_href: null,
29
- pulp_labels: null,
30
- prn: null,
31
- description: null,
27
+ pulp_last_updated: null,
28
+ manifest_signing_service: null,
32
29
  versions_href: null,
33
- name: null,
34
- retain_repo_versions: null,
35
- manifest_signing_service: null
30
+ description: null,
31
+ prn: null,
32
+ pulp_labels: null,
33
+ pulp_created: null,
34
+ pulp_href: null,
35
+ retain_repo_versions: null
36
36
  )
37
37
  ```
38
38
 
@@ -115,7 +115,7 @@ PulpContainerClient.configure do |config|
115
115
  end
116
116
 
117
117
  api_instance = PulpContainerClient::DistributionsContainerApi.new
118
- container_container_distribution = PulpContainerClient::ContainerContainerDistribution.new({base_path: 'base_path_example', name: 'name_example'}) # ContainerContainerDistribution |
118
+ container_container_distribution = PulpContainerClient::ContainerContainerDistribution.new({name: 'name_example', base_path: 'base_path_example'}) # ContainerContainerDistribution |
119
119
  opts = {
120
120
  x_task_diagnostics: ['inner_example'] # Array<String> | List of profilers to use on tasks.
121
121
  }
@@ -930,7 +930,7 @@ end
930
930
 
931
931
  api_instance = PulpContainerClient::DistributionsContainerApi.new
932
932
  container_container_distribution_href = 'container_container_distribution_href_example' # String |
933
- container_container_distribution = PulpContainerClient::ContainerContainerDistribution.new({base_path: 'base_path_example', name: 'name_example'}) # ContainerContainerDistribution |
933
+ container_container_distribution = PulpContainerClient::ContainerContainerDistribution.new({name: 'name_example', base_path: 'base_path_example'}) # ContainerContainerDistribution |
934
934
  opts = {
935
935
  x_task_diagnostics: ['inner_example'] # Array<String> | List of profilers to use on tasks.
936
936
  }
@@ -115,7 +115,7 @@ PulpContainerClient.configure do |config|
115
115
  end
116
116
 
117
117
  api_instance = PulpContainerClient::DistributionsPullThroughApi.new
118
- container_container_pull_through_distribution = PulpContainerClient::ContainerContainerPullThroughDistribution.new({base_path: 'base_path_example', name: 'name_example', remote: 'remote_example'}) # ContainerContainerPullThroughDistribution |
118
+ container_container_pull_through_distribution = PulpContainerClient::ContainerContainerPullThroughDistribution.new({name: 'name_example', base_path: 'base_path_example', remote: 'remote_example'}) # ContainerContainerPullThroughDistribution |
119
119
  opts = {
120
120
  x_task_diagnostics: ['inner_example'] # Array<String> | List of profilers to use on tasks.
121
121
  }
@@ -928,7 +928,7 @@ end
928
928
 
929
929
  api_instance = PulpContainerClient::DistributionsPullThroughApi.new
930
930
  container_container_pull_through_distribution_href = 'container_container_pull_through_distribution_href_example' # String |
931
- container_container_pull_through_distribution = PulpContainerClient::ContainerContainerPullThroughDistribution.new({base_path: 'base_path_example', name: 'name_example', remote: 'remote_example'}) # ContainerContainerPullThroughDistribution |
931
+ container_container_pull_through_distribution = PulpContainerClient::ContainerContainerPullThroughDistribution.new({name: 'name_example', base_path: 'base_path_example', remote: 'remote_example'}) # ContainerContainerPullThroughDistribution |
932
932
  opts = {
933
933
  x_task_diagnostics: ['inner_example'] # Array<String> | List of profilers to use on tasks.
934
934
  }
@@ -4,12 +4,12 @@
4
4
 
5
5
  | Name | Type | Description | Notes |
6
6
  | ---- | ---- | ----------- | ----- |
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
- | **content_guard** | **String** | An optional content-guard. If none is specified, a default one will be used. | [optional] |
9
- | **pulp_labels** | **Hash&lt;String, String&gt;** | | [optional] |
10
- | **hidden** | **Boolean** | Whether this distribution should be shown in the content app. | [optional][default to false] |
11
7
  | **name** | **String** | A unique name. Ex, &#x60;rawhide&#x60; and &#x60;stable&#x60;. | [optional] |
8
+ | **hidden** | **Boolean** | Whether this distribution should be shown in the content app. | [optional][default to false] |
12
9
  | **repository** | **String** | The latest RepositoryVersion for this Repository will be served. | [optional] |
10
+ | **pulp_labels** | **Hash&lt;String, String&gt;** | | [optional] |
11
+ | **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] |
12
+ | **content_guard** | **String** | An optional content-guard. If none is specified, a default one will be used. | [optional] |
13
13
  | **repository_version** | **String** | RepositoryVersion to be served | [optional] |
14
14
  | **private** | **Boolean** | Restrict pull access to explicitly authorized users. Defaults to unrestricted pull access. | [optional] |
15
15
  | **description** | **String** | An optional description. | [optional] |
@@ -20,12 +20,12 @@
20
20
  require 'pulp_container_client'
21
21
 
22
22
  instance = PulpContainerClient::PatchedcontainerContainerDistribution.new(
23
- base_path: null,
24
- content_guard: null,
25
- pulp_labels: null,
26
- hidden: null,
27
23
  name: null,
24
+ hidden: null,
28
25
  repository: null,
26
+ pulp_labels: null,
27
+ base_path: null,
28
+ content_guard: null,
29
29
  repository_version: null,
30
30
  private: null,
31
31
  description: null
@@ -4,12 +4,12 @@
4
4
 
5
5
  | Name | Type | Description | Notes |
6
6
  | ---- | ---- | ----------- | ----- |
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
- | **content_guard** | **String** | An optional content-guard. If none is specified, a default one will be used. | [optional] |
9
- | **pulp_labels** | **Hash&lt;String, String&gt;** | | [optional] |
10
- | **hidden** | **Boolean** | Whether this distribution should be shown in the content app. | [optional][default to false] |
11
7
  | **name** | **String** | A unique name. Ex, &#x60;rawhide&#x60; and &#x60;stable&#x60;. | [optional] |
8
+ | **hidden** | **Boolean** | Whether this distribution should be shown in the content app. | [optional][default to false] |
12
9
  | **repository** | **String** | The latest RepositoryVersion for this Repository will be served. | [optional] |
10
+ | **pulp_labels** | **Hash&lt;String, String&gt;** | | [optional] |
11
+ | **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] |
12
+ | **content_guard** | **String** | An optional content-guard. If none is specified, a default one will be used. | [optional] |
13
13
  | **remote** | **String** | Remote that can be used to fetch content when using pull-through caching. | [optional] |
14
14
  | **distributions** | **Array&lt;String&gt;** | Distributions created after pulling content through cache | [optional] |
15
15
  | **private** | **Boolean** | Restrict pull access to explicitly authorized users. Related distributions inherit this value. Defaults to unrestricted pull access. | [optional] |
@@ -21,12 +21,12 @@
21
21
  require 'pulp_container_client'
22
22
 
23
23
  instance = PulpContainerClient::PatchedcontainerContainerPullThroughDistribution.new(
24
- base_path: null,
25
- content_guard: null,
26
- pulp_labels: null,
27
- hidden: null,
28
24
  name: null,
25
+ hidden: null,
29
26
  repository: null,
27
+ pulp_labels: null,
28
+ base_path: null,
29
+ content_guard: null,
30
30
  remote: null,
31
31
  distributions: null,
32
32
  private: null,
@@ -4,11 +4,11 @@
4
4
 
5
5
  | Name | Type | Description | Notes |
6
6
  | ---- | ---- | ----------- | ----- |
7
- | **pulp_labels** | **Hash&lt;String, String&gt;** | | [optional] |
8
- | **description** | **String** | An optional description. | [optional] |
9
7
  | **name** | **String** | A unique name for this repository. | [optional] |
10
- | **retain_repo_versions** | **Integer** | Retain X versions of the repository. Default is null which retains all versions. | [optional] |
11
8
  | **manifest_signing_service** | **String** | A reference to an associated signing service. | [optional] |
9
+ | **description** | **String** | An optional description. | [optional] |
10
+ | **pulp_labels** | **Hash&lt;String, String&gt;** | | [optional] |
11
+ | **retain_repo_versions** | **Integer** | Retain X versions of the repository. Default is null which retains all versions. | [optional] |
12
12
 
13
13
  ## Example
14
14
 
@@ -16,11 +16,11 @@
16
16
  require 'pulp_container_client'
17
17
 
18
18
  instance = PulpContainerClient::PatchedcontainerContainerPushRepository.new(
19
- pulp_labels: null,
20
- description: null,
21
19
  name: null,
22
- retain_repo_versions: null,
23
- manifest_signing_service: null
20
+ manifest_signing_service: null,
21
+ description: null,
22
+ pulp_labels: null,
23
+ retain_repo_versions: null
24
24
  )
25
25
  ```
26
26