pulp_container_client 2.1.1 → 2.1.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 +13 -13
  3. data/docs/ContainerContainerDistribution.md +3 -3
  4. data/docs/ContainerContainerDistributionResponse.md +6 -6
  5. data/docs/ContentBlobsApi.md +2 -2
  6. data/docs/ContentManifestsApi.md +2 -2
  7. data/docs/ContentTagsApi.md +2 -2
  8. data/docs/ContentguardsContentRedirectApi.md +2 -2
  9. data/docs/DistributionsContainerApi.md +2 -2
  10. data/docs/{PaginatedcontainerBlobResponseList.md → InlineResponse200.md} +4 -4
  11. data/docs/{PaginatedcontainerManifestResponseList.md → InlineResponse2001.md} +4 -4
  12. data/docs/{PaginatedcontainerTagResponseList.md → InlineResponse2002.md} +4 -4
  13. data/docs/{PaginatedcontainerContentRedirectContentGuardResponseList.md → InlineResponse2003.md} +4 -4
  14. data/docs/{PaginatedcontainerContainerDistributionResponseList.md → InlineResponse2004.md} +4 -4
  15. data/docs/{PaginatedcontainerContainerRemoteResponseList.md → InlineResponse2005.md} +4 -4
  16. data/docs/{PaginatedcontainerContainerRepositoryResponseList.md → InlineResponse2006.md} +4 -4
  17. data/docs/{PaginatedcontainerContainerPushRepositoryResponseList.md → InlineResponse2007.md} +4 -4
  18. data/docs/{PaginatedRepositoryVersionResponseList.md → InlineResponse2008.md} +4 -4
  19. data/docs/PatchedcontainerContainerDistribution.md +3 -3
  20. data/docs/RemotesContainerApi.md +2 -2
  21. data/docs/RepositoriesContainerApi.md +2 -2
  22. data/docs/RepositoriesContainerPushApi.md +2 -2
  23. data/docs/RepositoriesContainerVersionsApi.md +4 -4
  24. data/lib/pulp_container_client.rb +9 -9
  25. data/lib/pulp_container_client/api/content_blobs_api.rb +3 -3
  26. data/lib/pulp_container_client/api/content_manifests_api.rb +3 -3
  27. data/lib/pulp_container_client/api/content_tags_api.rb +3 -3
  28. data/lib/pulp_container_client/api/contentguards_content_redirect_api.rb +3 -3
  29. data/lib/pulp_container_client/api/distributions_container_api.rb +3 -3
  30. data/lib/pulp_container_client/api/remotes_container_api.rb +3 -3
  31. data/lib/pulp_container_client/api/repositories_container_api.rb +3 -3
  32. data/lib/pulp_container_client/api/repositories_container_push_api.rb +3 -3
  33. data/lib/pulp_container_client/api/repositories_container_versions_api.rb +6 -6
  34. data/lib/pulp_container_client/models/container_container_distribution.rb +11 -11
  35. data/lib/pulp_container_client/models/container_container_distribution_response.rb +24 -24
  36. data/lib/pulp_container_client/models/{paginatedcontainer_blob_response_list.rb → inline_response200.rb} +3 -3
  37. data/lib/pulp_container_client/models/{paginatedcontainer_manifest_response_list.rb → inline_response2001.rb} +3 -3
  38. data/lib/pulp_container_client/models/{paginatedcontainer_tag_response_list.rb → inline_response2002.rb} +3 -3
  39. data/lib/pulp_container_client/models/{paginatedcontainer_content_redirect_content_guard_response_list.rb → inline_response2003.rb} +3 -3
  40. data/lib/pulp_container_client/models/{paginatedcontainer_container_distribution_response_list.rb → inline_response2004.rb} +3 -3
  41. data/lib/pulp_container_client/models/{paginatedcontainer_container_remote_response_list.rb → inline_response2005.rb} +3 -3
  42. data/lib/pulp_container_client/models/{paginatedcontainer_container_repository_response_list.rb → inline_response2006.rb} +3 -3
  43. data/lib/pulp_container_client/models/{paginatedcontainer_container_push_repository_response_list.rb → inline_response2007.rb} +3 -3
  44. data/lib/pulp_container_client/models/{paginated_repository_version_response_list.rb → inline_response2008.rb} +3 -3
  45. data/lib/pulp_container_client/models/patchedcontainer_container_distribution.rb +11 -11
  46. data/lib/pulp_container_client/version.rb +1 -1
  47. data/spec/api/content_blobs_api_spec.rb +1 -1
  48. data/spec/api/content_manifests_api_spec.rb +1 -1
  49. data/spec/api/content_tags_api_spec.rb +1 -1
  50. data/spec/api/contentguards_content_redirect_api_spec.rb +1 -1
  51. data/spec/api/distributions_container_api_spec.rb +1 -1
  52. data/spec/api/remotes_container_api_spec.rb +1 -1
  53. data/spec/api/repositories_container_api_spec.rb +1 -1
  54. data/spec/api/repositories_container_push_api_spec.rb +1 -1
  55. data/spec/api/repositories_container_versions_api_spec.rb +2 -2
  56. data/spec/models/container_container_distribution_response_spec.rb +4 -4
  57. data/spec/models/container_container_distribution_spec.rb +3 -3
  58. data/spec/models/{paginatedcontainer_tag_response_list_spec.rb → inline_response2001_spec.rb} +6 -6
  59. data/spec/models/{paginatedcontainer_blob_response_list_spec.rb → inline_response2002_spec.rb} +6 -6
  60. data/spec/models/{paginated_repository_version_response_list_spec.rb → inline_response2003_spec.rb} +6 -6
  61. data/spec/models/{paginatedcontainer_manifest_response_list_spec.rb → inline_response2004_spec.rb} +6 -6
  62. data/spec/models/inline_response2005_spec.rb +59 -0
  63. data/spec/models/inline_response2006_spec.rb +59 -0
  64. data/spec/models/inline_response2007_spec.rb +59 -0
  65. data/spec/models/inline_response2008_spec.rb +59 -0
  66. data/spec/models/inline_response200_spec.rb +59 -0
  67. data/spec/models/patchedcontainer_container_distribution_spec.rb +3 -3
  68. metadata +66 -66
  69. data/spec/models/paginatedcontainer_container_distribution_response_list_spec.rb +0 -59
  70. data/spec/models/paginatedcontainer_container_push_repository_response_list_spec.rb +0 -59
  71. data/spec/models/paginatedcontainer_container_remote_response_list_spec.rb +0 -59
  72. data/spec/models/paginatedcontainer_container_repository_response_list_spec.rb +0 -59
  73. data/spec/models/paginatedcontainer_content_redirect_content_guard_response_list_spec.rb +0 -59
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5b67987100e7e677a7c3db6840609d4ba4229442b3e76836c0a998327b89f727
4
- data.tar.gz: be46b006525eb5f07d9c25557f879264f11f25b8b7c9e08041dd1cc75eea6eb4
3
+ metadata.gz: 8b9e2e9d88594d213d5bc0a0f69319e7fe024790f655cb524e939f91997feead
4
+ data.tar.gz: 71dd1ce7a19505b55a9caf9f61713b1abf1e529021202dd8cbd2f48dbac77ee4
5
5
  SHA512:
6
- metadata.gz: d476a2ecc4c5cb1a15797a9609acdef49e8daa142646585cf71249d9406e95933b990d7a334091fec7a0c2511ffe4c9f42cbb68fe967e2a024117a5aea394932
7
- data.tar.gz: c3f9bc019a693d80ca283992189f70c23a54fba60566045ba4b87409a68fb92a7638cf7af786829cf3d11c23f7db067e5733fe8de0bfce7dc3cf7a2e413f7396
6
+ metadata.gz: 20b62156475d232c5a3cb98becf369cc624e8cc73a3d4ed98fe0006225871d8756b7e05a716633fed555f36af79a2c988ae7657b17023bb0722008f7f376bc8c
7
+ data.tar.gz: db0fc746f1c25844a4419be789bfca5d3feda9705cebe217decd10f9a63e149b1e543e7f642f0b1ed255328aa85c06c7acb6c0b6ca8822b25aeb690210f4a428
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.1.1
10
+ - Package version: 2.1.2
11
11
  - Build package: org.openapitools.codegen.languages.RubyClientCodegen
12
12
  For more information, please visit [https://pulpproject.org](https://pulpproject.org)
13
13
 
@@ -24,16 +24,16 @@ gem build pulp_container_client.gemspec
24
24
  Then either install the gem locally:
25
25
 
26
26
  ```shell
27
- gem install ./pulp_container_client-2.1.1.gem
27
+ gem install ./pulp_container_client-2.1.2.gem
28
28
  ```
29
29
 
30
- (for development, run `gem install --dev ./pulp_container_client-2.1.1.gem` to install the development dependencies)
30
+ (for development, run `gem install --dev ./pulp_container_client-2.1.2.gem` to install the development dependencies)
31
31
 
32
32
  or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
33
33
 
34
34
  Finally add this to the Gemfile:
35
35
 
36
- gem 'pulp_container_client', '~> 2.1.1'
36
+ gem 'pulp_container_client', '~> 2.1.2'
37
37
 
38
38
  ### Install from Git
39
39
 
@@ -166,17 +166,17 @@ Class | Method | HTTP request | Description
166
166
  - [PulpContainerClient::ContainerTagResponse](docs/ContainerTagResponse.md)
167
167
  - [PulpContainerClient::ContentSummary](docs/ContentSummary.md)
168
168
  - [PulpContainerClient::ContentSummaryResponse](docs/ContentSummaryResponse.md)
169
+ - [PulpContainerClient::InlineResponse200](docs/InlineResponse200.md)
170
+ - [PulpContainerClient::InlineResponse2001](docs/InlineResponse2001.md)
171
+ - [PulpContainerClient::InlineResponse2002](docs/InlineResponse2002.md)
172
+ - [PulpContainerClient::InlineResponse2003](docs/InlineResponse2003.md)
173
+ - [PulpContainerClient::InlineResponse2004](docs/InlineResponse2004.md)
174
+ - [PulpContainerClient::InlineResponse2005](docs/InlineResponse2005.md)
175
+ - [PulpContainerClient::InlineResponse2006](docs/InlineResponse2006.md)
176
+ - [PulpContainerClient::InlineResponse2007](docs/InlineResponse2007.md)
177
+ - [PulpContainerClient::InlineResponse2008](docs/InlineResponse2008.md)
169
178
  - [PulpContainerClient::ManifestCopy](docs/ManifestCopy.md)
170
179
  - [PulpContainerClient::OCIBuildImage](docs/OCIBuildImage.md)
171
- - [PulpContainerClient::PaginatedRepositoryVersionResponseList](docs/PaginatedRepositoryVersionResponseList.md)
172
- - [PulpContainerClient::PaginatedcontainerBlobResponseList](docs/PaginatedcontainerBlobResponseList.md)
173
- - [PulpContainerClient::PaginatedcontainerContainerDistributionResponseList](docs/PaginatedcontainerContainerDistributionResponseList.md)
174
- - [PulpContainerClient::PaginatedcontainerContainerPushRepositoryResponseList](docs/PaginatedcontainerContainerPushRepositoryResponseList.md)
175
- - [PulpContainerClient::PaginatedcontainerContainerRemoteResponseList](docs/PaginatedcontainerContainerRemoteResponseList.md)
176
- - [PulpContainerClient::PaginatedcontainerContainerRepositoryResponseList](docs/PaginatedcontainerContainerRepositoryResponseList.md)
177
- - [PulpContainerClient::PaginatedcontainerContentRedirectContentGuardResponseList](docs/PaginatedcontainerContentRedirectContentGuardResponseList.md)
178
- - [PulpContainerClient::PaginatedcontainerManifestResponseList](docs/PaginatedcontainerManifestResponseList.md)
179
- - [PulpContainerClient::PaginatedcontainerTagResponseList](docs/PaginatedcontainerTagResponseList.md)
180
180
  - [PulpContainerClient::PatchedcontainerContainerDistribution](docs/PatchedcontainerContainerDistribution.md)
181
181
  - [PulpContainerClient::PatchedcontainerContainerRemote](docs/PatchedcontainerContainerRemote.md)
182
182
  - [PulpContainerClient::PatchedcontainerContainerRepository](docs/PatchedcontainerContainerRepository.md)
@@ -4,9 +4,9 @@
4
4
 
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
+ **content_guard** | **String** | An optional content-guard. If none is specified, a default one will be used. | [optional]
7
8
  **repository** | **String** | The latest RepositoryVersion for this Repository will be served. | [optional]
8
9
  **name** | **String** | A unique name. Ex, `rawhide` and `stable`. |
9
- **content_guard** | **String** | An optional content-guard. If none is specified, a default one will be used. | [optional]
10
10
  **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\") |
11
11
  **repository_version** | **String** | RepositoryVersion to be served | [optional]
12
12
 
@@ -15,9 +15,9 @@ Name | Type | Description | Notes
15
15
  ```ruby
16
16
  require 'PulpContainerClient'
17
17
 
18
- instance = PulpContainerClient::ContainerContainerDistribution.new(repository: null,
18
+ instance = PulpContainerClient::ContainerContainerDistribution.new(content_guard: null,
19
+ repository: null,
19
20
  name: null,
20
- content_guard: null,
21
21
  base_path: null,
22
22
  repository_version: null)
23
23
  ```
@@ -4,13 +4,13 @@
4
4
 
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
- **pulp_href** | **String** | | [optional] [readonly]
7
+ **content_guard** | **String** | An optional content-guard. If none is specified, a default one will be used. | [optional]
8
8
  **repository** | **String** | The latest RepositoryVersion for this Repository will be served. | [optional]
9
9
  **name** | **String** | A unique name. Ex, `rawhide` and `stable`. |
10
- **content_guard** | **String** | An optional content-guard. If none is specified, a default one will be used. | [optional]
11
10
  **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
- **repository_version** | **String** | RepositoryVersion to be served | [optional]
13
11
  **pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
12
+ **repository_version** | **String** | RepositoryVersion to be served | [optional]
13
+ **pulp_href** | **String** | | [optional] [readonly]
14
14
  **registry_path** | **String** | The Registry hostame/name/ to use with docker pull command defined by this distribution. | [optional] [readonly]
15
15
 
16
16
  ## Code Sample
@@ -18,13 +18,13 @@ Name | Type | Description | Notes
18
18
  ```ruby
19
19
  require 'PulpContainerClient'
20
20
 
21
- instance = PulpContainerClient::ContainerContainerDistributionResponse.new(pulp_href: null,
21
+ instance = PulpContainerClient::ContainerContainerDistributionResponse.new(content_guard: null,
22
22
  repository: null,
23
23
  name: null,
24
- content_guard: null,
25
24
  base_path: null,
26
- repository_version: null,
27
25
  pulp_created: null,
26
+ repository_version: null,
27
+ pulp_href: null,
28
28
  registry_path: null)
29
29
  ```
30
30
 
@@ -11,7 +11,7 @@ Method | HTTP request | Description
11
11
 
12
12
  ## list
13
13
 
14
- > PaginatedcontainerBlobResponseList list(opts)
14
+ > InlineResponse200 list(opts)
15
15
 
16
16
  List blobs
17
17
 
@@ -72,7 +72,7 @@ Name | Type | Description | Notes
72
72
 
73
73
  ### Return type
74
74
 
75
- [**PaginatedcontainerBlobResponseList**](PaginatedcontainerBlobResponseList.md)
75
+ [**InlineResponse200**](InlineResponse200.md)
76
76
 
77
77
  ### Authorization
78
78
 
@@ -11,7 +11,7 @@ Method | HTTP request | Description
11
11
 
12
12
  ## list
13
13
 
14
- > PaginatedcontainerManifestResponseList list(opts)
14
+ > InlineResponse2001 list(opts)
15
15
 
16
16
  List manifests
17
17
 
@@ -72,7 +72,7 @@ Name | Type | Description | Notes
72
72
 
73
73
  ### Return type
74
74
 
75
- [**PaginatedcontainerManifestResponseList**](PaginatedcontainerManifestResponseList.md)
75
+ [**InlineResponse2001**](InlineResponse2001.md)
76
76
 
77
77
  ### Authorization
78
78
 
@@ -11,7 +11,7 @@ Method | HTTP request | Description
11
11
 
12
12
  ## list
13
13
 
14
- > PaginatedcontainerTagResponseList list(opts)
14
+ > InlineResponse2002 list(opts)
15
15
 
16
16
  List tags
17
17
 
@@ -74,7 +74,7 @@ Name | Type | Description | Notes
74
74
 
75
75
  ### Return type
76
76
 
77
- [**PaginatedcontainerTagResponseList**](PaginatedcontainerTagResponseList.md)
77
+ [**InlineResponse2002**](InlineResponse2002.md)
78
78
 
79
79
  ### Authorization
80
80
 
@@ -120,7 +120,7 @@ nil (empty response body)
120
120
 
121
121
  ## list
122
122
 
123
- > PaginatedcontainerContentRedirectContentGuardResponseList list(opts)
123
+ > InlineResponse2003 list(opts)
124
124
 
125
125
  List content redirect content guards
126
126
 
@@ -173,7 +173,7 @@ Name | Type | Description | Notes
173
173
 
174
174
  ### Return type
175
175
 
176
- [**PaginatedcontainerContentRedirectContentGuardResponseList**](PaginatedcontainerContentRedirectContentGuardResponseList.md)
176
+ [**InlineResponse2003**](InlineResponse2003.md)
177
177
 
178
178
  ### Authorization
179
179
 
@@ -121,7 +121,7 @@ Name | Type | Description | Notes
121
121
 
122
122
  ## list
123
123
 
124
- > PaginatedcontainerContainerDistributionResponseList list(opts)
124
+ > InlineResponse2004 list(opts)
125
125
 
126
126
  List container distributions
127
127
 
@@ -182,7 +182,7 @@ Name | Type | Description | Notes
182
182
 
183
183
  ### Return type
184
184
 
185
- [**PaginatedcontainerContainerDistributionResponseList**](PaginatedcontainerContainerDistributionResponseList.md)
185
+ [**InlineResponse2004**](InlineResponse2004.md)
186
186
 
187
187
  ### Authorization
188
188
 
@@ -1,4 +1,4 @@
1
- # PulpContainerClient::PaginatedcontainerBlobResponseList
1
+ # PulpContainerClient::InlineResponse200
2
2
 
3
3
  ## Properties
4
4
 
@@ -14,9 +14,9 @@ Name | Type | Description | Notes
14
14
  ```ruby
15
15
  require 'PulpContainerClient'
16
16
 
17
- instance = PulpContainerClient::PaginatedcontainerBlobResponseList.new(count: 123,
18
- _next: http://api.example.org/accounts/?offset=400&limit=100,
19
- previous: http://api.example.org/accounts/?offset=200&limit=100,
17
+ instance = PulpContainerClient::InlineResponse200.new(count: 123,
18
+ _next: null,
19
+ previous: null,
20
20
  results: null)
21
21
  ```
22
22
 
@@ -1,4 +1,4 @@
1
- # PulpContainerClient::PaginatedcontainerManifestResponseList
1
+ # PulpContainerClient::InlineResponse2001
2
2
 
3
3
  ## Properties
4
4
 
@@ -14,9 +14,9 @@ Name | Type | Description | Notes
14
14
  ```ruby
15
15
  require 'PulpContainerClient'
16
16
 
17
- instance = PulpContainerClient::PaginatedcontainerManifestResponseList.new(count: 123,
18
- _next: http://api.example.org/accounts/?offset=400&limit=100,
19
- previous: http://api.example.org/accounts/?offset=200&limit=100,
17
+ instance = PulpContainerClient::InlineResponse2001.new(count: 123,
18
+ _next: null,
19
+ previous: null,
20
20
  results: null)
21
21
  ```
22
22
 
@@ -1,4 +1,4 @@
1
- # PulpContainerClient::PaginatedcontainerTagResponseList
1
+ # PulpContainerClient::InlineResponse2002
2
2
 
3
3
  ## Properties
4
4
 
@@ -14,9 +14,9 @@ Name | Type | Description | Notes
14
14
  ```ruby
15
15
  require 'PulpContainerClient'
16
16
 
17
- instance = PulpContainerClient::PaginatedcontainerTagResponseList.new(count: 123,
18
- _next: http://api.example.org/accounts/?offset=400&limit=100,
19
- previous: http://api.example.org/accounts/?offset=200&limit=100,
17
+ instance = PulpContainerClient::InlineResponse2002.new(count: 123,
18
+ _next: null,
19
+ previous: null,
20
20
  results: null)
21
21
  ```
22
22
 
@@ -1,4 +1,4 @@
1
- # PulpContainerClient::PaginatedcontainerContentRedirectContentGuardResponseList
1
+ # PulpContainerClient::InlineResponse2003
2
2
 
3
3
  ## Properties
4
4
 
@@ -14,9 +14,9 @@ Name | Type | Description | Notes
14
14
  ```ruby
15
15
  require 'PulpContainerClient'
16
16
 
17
- instance = PulpContainerClient::PaginatedcontainerContentRedirectContentGuardResponseList.new(count: 123,
18
- _next: http://api.example.org/accounts/?offset=400&limit=100,
19
- previous: http://api.example.org/accounts/?offset=200&limit=100,
17
+ instance = PulpContainerClient::InlineResponse2003.new(count: 123,
18
+ _next: null,
19
+ previous: null,
20
20
  results: null)
21
21
  ```
22
22
 
@@ -1,4 +1,4 @@
1
- # PulpContainerClient::PaginatedcontainerContainerDistributionResponseList
1
+ # PulpContainerClient::InlineResponse2004
2
2
 
3
3
  ## Properties
4
4
 
@@ -14,9 +14,9 @@ Name | Type | Description | Notes
14
14
  ```ruby
15
15
  require 'PulpContainerClient'
16
16
 
17
- instance = PulpContainerClient::PaginatedcontainerContainerDistributionResponseList.new(count: 123,
18
- _next: http://api.example.org/accounts/?offset=400&limit=100,
19
- previous: http://api.example.org/accounts/?offset=200&limit=100,
17
+ instance = PulpContainerClient::InlineResponse2004.new(count: 123,
18
+ _next: null,
19
+ previous: null,
20
20
  results: null)
21
21
  ```
22
22
 
@@ -1,4 +1,4 @@
1
- # PulpContainerClient::PaginatedcontainerContainerRemoteResponseList
1
+ # PulpContainerClient::InlineResponse2005
2
2
 
3
3
  ## Properties
4
4
 
@@ -14,9 +14,9 @@ Name | Type | Description | Notes
14
14
  ```ruby
15
15
  require 'PulpContainerClient'
16
16
 
17
- instance = PulpContainerClient::PaginatedcontainerContainerRemoteResponseList.new(count: 123,
18
- _next: http://api.example.org/accounts/?offset=400&limit=100,
19
- previous: http://api.example.org/accounts/?offset=200&limit=100,
17
+ instance = PulpContainerClient::InlineResponse2005.new(count: 123,
18
+ _next: null,
19
+ previous: null,
20
20
  results: null)
21
21
  ```
22
22
 
@@ -1,4 +1,4 @@
1
- # PulpContainerClient::PaginatedcontainerContainerRepositoryResponseList
1
+ # PulpContainerClient::InlineResponse2006
2
2
 
3
3
  ## Properties
4
4
 
@@ -14,9 +14,9 @@ Name | Type | Description | Notes
14
14
  ```ruby
15
15
  require 'PulpContainerClient'
16
16
 
17
- instance = PulpContainerClient::PaginatedcontainerContainerRepositoryResponseList.new(count: 123,
18
- _next: http://api.example.org/accounts/?offset=400&limit=100,
19
- previous: http://api.example.org/accounts/?offset=200&limit=100,
17
+ instance = PulpContainerClient::InlineResponse2006.new(count: 123,
18
+ _next: null,
19
+ previous: null,
20
20
  results: null)
21
21
  ```
22
22
 
@@ -1,4 +1,4 @@
1
- # PulpContainerClient::PaginatedcontainerContainerPushRepositoryResponseList
1
+ # PulpContainerClient::InlineResponse2007
2
2
 
3
3
  ## Properties
4
4
 
@@ -14,9 +14,9 @@ Name | Type | Description | Notes
14
14
  ```ruby
15
15
  require 'PulpContainerClient'
16
16
 
17
- instance = PulpContainerClient::PaginatedcontainerContainerPushRepositoryResponseList.new(count: 123,
18
- _next: http://api.example.org/accounts/?offset=400&limit=100,
19
- previous: http://api.example.org/accounts/?offset=200&limit=100,
17
+ instance = PulpContainerClient::InlineResponse2007.new(count: 123,
18
+ _next: null,
19
+ previous: null,
20
20
  results: null)
21
21
  ```
22
22
 
@@ -1,4 +1,4 @@
1
- # PulpContainerClient::PaginatedRepositoryVersionResponseList
1
+ # PulpContainerClient::InlineResponse2008
2
2
 
3
3
  ## Properties
4
4
 
@@ -14,9 +14,9 @@ Name | Type | Description | Notes
14
14
  ```ruby
15
15
  require 'PulpContainerClient'
16
16
 
17
- instance = PulpContainerClient::PaginatedRepositoryVersionResponseList.new(count: 123,
18
- _next: http://api.example.org/accounts/?offset=400&limit=100,
19
- previous: http://api.example.org/accounts/?offset=200&limit=100,
17
+ instance = PulpContainerClient::InlineResponse2008.new(count: 123,
18
+ _next: null,
19
+ previous: null,
20
20
  results: null)
21
21
  ```
22
22
 
@@ -4,9 +4,9 @@
4
4
 
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
+ **content_guard** | **String** | An optional content-guard. If none is specified, a default one will be used. | [optional]
7
8
  **repository** | **String** | The latest RepositoryVersion for this Repository will be served. | [optional]
8
9
  **name** | **String** | A unique name. Ex, `rawhide` and `stable`. | [optional]
9
- **content_guard** | **String** | An optional content-guard. If none is specified, a default one will be used. | [optional]
10
10
  **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\") | [optional]
11
11
  **repository_version** | **String** | RepositoryVersion to be served | [optional]
12
12
 
@@ -15,9 +15,9 @@ Name | Type | Description | Notes
15
15
  ```ruby
16
16
  require 'PulpContainerClient'
17
17
 
18
- instance = PulpContainerClient::PatchedcontainerContainerDistribution.new(repository: null,
18
+ instance = PulpContainerClient::PatchedcontainerContainerDistribution.new(content_guard: null,
19
+ repository: null,
19
20
  name: null,
20
- content_guard: null,
21
21
  base_path: null,
22
22
  repository_version: null)
23
23
  ```
@@ -121,7 +121,7 @@ Name | Type | Description | Notes
121
121
 
122
122
  ## list
123
123
 
124
- > PaginatedcontainerContainerRemoteResponseList list(opts)
124
+ > InlineResponse2005 list(opts)
125
125
 
126
126
  List container remotes
127
127
 
@@ -186,7 +186,7 @@ Name | Type | Description | Notes
186
186
 
187
187
  ### Return type
188
188
 
189
- [**PaginatedcontainerContainerRemoteResponseList**](PaginatedcontainerContainerRemoteResponseList.md)
189
+ [**InlineResponse2005**](InlineResponse2005.md)
190
190
 
191
191
  ### Authorization
192
192
 
@@ -357,7 +357,7 @@ Name | Type | Description | Notes
357
357
 
358
358
  ## list
359
359
 
360
- > PaginatedcontainerContainerRepositoryResponseList list(opts)
360
+ > InlineResponse2006 list(opts)
361
361
 
362
362
  List container repositorys
363
363
 
@@ -410,7 +410,7 @@ Name | Type | Description | Notes
410
410
 
411
411
  ### Return type
412
412
 
413
- [**PaginatedcontainerContainerRepositoryResponseList**](PaginatedcontainerContainerRepositoryResponseList.md)
413
+ [**InlineResponse2006**](InlineResponse2006.md)
414
414
 
415
415
  ### Authorization
416
416