pulp_container_client 2.16.3 → 2.16.4
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.
- checksums.yaml +4 -4
- data/README.md +4 -4
- data/docs/ContainerContainerDistribution.md +5 -5
- data/docs/ContainerContainerDistributionResponse.md +7 -7
- data/docs/ContainerContainerPushRepository.md +3 -3
- data/docs/ContainerContainerPushRepositoryResponse.md +10 -10
- data/docs/PatchedcontainerContainerDistribution.md +5 -5
- data/docs/PatchedcontainerContainerPushRepository.md +3 -3
- data/lib/pulp_container_client/models/container_container_distribution.rb +21 -21
- data/lib/pulp_container_client/models/container_container_distribution_response.rb +30 -30
- data/lib/pulp_container_client/models/container_container_push_repository.rb +12 -12
- data/lib/pulp_container_client/models/container_container_push_repository_response.rb +38 -38
- data/lib/pulp_container_client/models/patchedcontainer_container_distribution.rb +21 -21
- data/lib/pulp_container_client/models/patchedcontainer_container_push_repository.rb +12 -12
- data/lib/pulp_container_client/version.rb +1 -1
- data/spec/models/container_container_distribution_response_spec.rb +6 -6
- data/spec/models/container_container_distribution_spec.rb +4 -4
- data/spec/models/container_container_push_repository_response_spec.rb +6 -6
- data/spec/models/container_container_push_repository_spec.rb +3 -3
- data/spec/models/patchedcontainer_container_distribution_spec.rb +4 -4
- data/spec/models/patchedcontainer_container_push_repository_spec.rb +3 -3
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bf5f2a9eec9ed42a424c80cd87beb14c1425c1e0fa522d1c1e7a5e2c09e0a4a1
|
4
|
+
data.tar.gz: 5687b325d49c377662c836aeb6d72efa67ee03b0d42a39d7fb86a451454b53ae
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 13f77432905bd895d3e8b16aed882c004b147d0ae31dbe048deee5ae1d3c842387c22fb9ce9eb5a362a343456f2b3feaa6357c4d74afe4d3b3e24ba6a4dfc559
|
7
|
+
data.tar.gz: 478446d0d1de04c4fc875dde5388166ea4cc4d3fbca7c63759e8356915f6f4286ec83ddef45eb4a5d9cf7656daaa4de360d1e09ec0ad5b283d0538b15b6c2e8a
|
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.16.
|
10
|
+
- Package version: 2.16.4
|
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.16.
|
27
|
+
gem install ./pulp_container_client-2.16.4.gem
|
28
28
|
```
|
29
29
|
|
30
|
-
(for development, run `gem install --dev ./pulp_container_client-2.16.
|
30
|
+
(for development, run `gem install --dev ./pulp_container_client-2.16.4.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.16.
|
36
|
+
gem 'pulp_container_client', '~> 2.16.4'
|
37
37
|
|
38
38
|
### Install from Git
|
39
39
|
|
@@ -4,10 +4,10 @@
|
|
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]
|
8
|
-
**hidden** | **Boolean** | Whether this distribution should be shown in the content app. | [optional] [default to false]
|
9
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\") |
|
10
8
|
**repository** | **String** | The latest RepositoryVersion for this Repository will be served. | [optional]
|
9
|
+
**hidden** | **Boolean** | Whether this distribution should be shown in the content app. | [optional] [default to false]
|
10
|
+
**content_guard** | **String** | An optional content-guard. If none is specified, a default one will be used. | [optional]
|
11
11
|
**name** | **String** | A unique name. Ex, `rawhide` and `stable`. |
|
12
12
|
**pulp_labels** | **Hash<String, String>** | | [optional]
|
13
13
|
**repository_version** | **String** | RepositoryVersion to be served | [optional]
|
@@ -19,10 +19,10 @@ Name | Type | Description | Notes
|
|
19
19
|
```ruby
|
20
20
|
require 'PulpContainerClient'
|
21
21
|
|
22
|
-
instance = PulpContainerClient::ContainerContainerDistribution.new(
|
23
|
-
hidden: null,
|
24
|
-
base_path: null,
|
22
|
+
instance = PulpContainerClient::ContainerContainerDistribution.new(base_path: null,
|
25
23
|
repository: null,
|
24
|
+
hidden: null,
|
25
|
+
content_guard: null,
|
26
26
|
name: null,
|
27
27
|
pulp_labels: null,
|
28
28
|
repository_version: null,
|
@@ -4,12 +4,12 @@
|
|
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]
|
8
|
-
**pulp_href** | **String** | | [optional] [readonly]
|
9
|
-
**hidden** | **Boolean** | Whether this distribution should be shown in the content app. | [optional] [default to false]
|
10
7
|
**pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
|
11
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\") |
|
9
|
+
**pulp_href** | **String** | | [optional] [readonly]
|
12
10
|
**repository** | **String** | The latest RepositoryVersion for this Repository will be served. | [optional]
|
11
|
+
**hidden** | **Boolean** | Whether this distribution should be shown in the content app. | [optional] [default to false]
|
12
|
+
**content_guard** | **String** | An optional content-guard. If none is specified, a default one will be used. | [optional]
|
13
13
|
**name** | **String** | A unique name. Ex, `rawhide` and `stable`. |
|
14
14
|
**pulp_labels** | **Hash<String, String>** | | [optional]
|
15
15
|
**repository_version** | **String** | RepositoryVersion to be served | [optional]
|
@@ -23,12 +23,12 @@ Name | Type | Description | Notes
|
|
23
23
|
```ruby
|
24
24
|
require 'PulpContainerClient'
|
25
25
|
|
26
|
-
instance = PulpContainerClient::ContainerContainerDistributionResponse.new(
|
27
|
-
pulp_href: null,
|
28
|
-
hidden: null,
|
29
|
-
pulp_created: null,
|
26
|
+
instance = PulpContainerClient::ContainerContainerDistributionResponse.new(pulp_created: null,
|
30
27
|
base_path: null,
|
28
|
+
pulp_href: null,
|
31
29
|
repository: null,
|
30
|
+
hidden: null,
|
31
|
+
content_guard: null,
|
32
32
|
name: null,
|
33
33
|
pulp_labels: null,
|
34
34
|
repository_version: null,
|
@@ -4,9 +4,9 @@
|
|
4
4
|
|
5
5
|
Name | Type | Description | Notes
|
6
6
|
------------ | ------------- | ------------- | -------------
|
7
|
-
**manifest_signing_service** | **String** | A reference to an associated signing service. | [optional]
|
8
7
|
**description** | **String** | An optional description. | [optional]
|
9
8
|
**retain_repo_versions** | **Integer** | Retain X versions of the repository. Default is null which retains all versions. | [optional]
|
9
|
+
**manifest_signing_service** | **String** | A reference to an associated signing service. | [optional]
|
10
10
|
**name** | **String** | A unique name for this repository. |
|
11
11
|
**pulp_labels** | **Hash<String, String>** | | [optional]
|
12
12
|
|
@@ -15,9 +15,9 @@ Name | Type | Description | Notes
|
|
15
15
|
```ruby
|
16
16
|
require 'PulpContainerClient'
|
17
17
|
|
18
|
-
instance = PulpContainerClient::ContainerContainerPushRepository.new(
|
19
|
-
description: null,
|
18
|
+
instance = PulpContainerClient::ContainerContainerPushRepository.new(description: null,
|
20
19
|
retain_repo_versions: null,
|
20
|
+
manifest_signing_service: null,
|
21
21
|
name: null,
|
22
22
|
pulp_labels: null)
|
23
23
|
```
|
@@ -4,13 +4,13 @@
|
|
4
4
|
|
5
5
|
Name | Type | Description | Notes
|
6
6
|
------------ | ------------- | ------------- | -------------
|
7
|
-
**
|
8
|
-
**versions_href** | **String** | | [optional] [readonly]
|
7
|
+
**pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
|
9
8
|
**description** | **String** | An optional description. | [optional]
|
10
|
-
**
|
11
|
-
**pulp_href** | **String** | | [optional] [readonly]
|
9
|
+
**versions_href** | **String** | | [optional] [readonly]
|
12
10
|
**retain_repo_versions** | **Integer** | Retain X versions of the repository. Default is null which retains all versions. | [optional]
|
13
|
-
**
|
11
|
+
**pulp_href** | **String** | | [optional] [readonly]
|
12
|
+
**latest_version_href** | **String** | | [optional] [readonly]
|
13
|
+
**manifest_signing_service** | **String** | A reference to an associated signing service. | [optional]
|
14
14
|
**name** | **String** | A unique name for this repository. |
|
15
15
|
**pulp_labels** | **Hash<String, String>** | | [optional]
|
16
16
|
|
@@ -19,13 +19,13 @@ Name | Type | Description | Notes
|
|
19
19
|
```ruby
|
20
20
|
require 'PulpContainerClient'
|
21
21
|
|
22
|
-
instance = PulpContainerClient::ContainerContainerPushRepositoryResponse.new(
|
23
|
-
versions_href: null,
|
22
|
+
instance = PulpContainerClient::ContainerContainerPushRepositoryResponse.new(pulp_created: null,
|
24
23
|
description: null,
|
25
|
-
|
26
|
-
pulp_href: null,
|
24
|
+
versions_href: null,
|
27
25
|
retain_repo_versions: null,
|
28
|
-
|
26
|
+
pulp_href: null,
|
27
|
+
latest_version_href: null,
|
28
|
+
manifest_signing_service: null,
|
29
29
|
name: null,
|
30
30
|
pulp_labels: null)
|
31
31
|
```
|
@@ -4,10 +4,10 @@
|
|
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]
|
8
|
-
**hidden** | **Boolean** | Whether this distribution should be shown in the content app. | [optional] [default to false]
|
9
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\") | [optional]
|
10
8
|
**repository** | **String** | The latest RepositoryVersion for this Repository will be served. | [optional]
|
9
|
+
**hidden** | **Boolean** | Whether this distribution should be shown in the content app. | [optional] [default to false]
|
10
|
+
**content_guard** | **String** | An optional content-guard. If none is specified, a default one will be used. | [optional]
|
11
11
|
**name** | **String** | A unique name. Ex, `rawhide` and `stable`. | [optional]
|
12
12
|
**pulp_labels** | **Hash<String, String>** | | [optional]
|
13
13
|
**repository_version** | **String** | RepositoryVersion to be served | [optional]
|
@@ -19,10 +19,10 @@ Name | Type | Description | Notes
|
|
19
19
|
```ruby
|
20
20
|
require 'PulpContainerClient'
|
21
21
|
|
22
|
-
instance = PulpContainerClient::PatchedcontainerContainerDistribution.new(
|
23
|
-
hidden: null,
|
24
|
-
base_path: null,
|
22
|
+
instance = PulpContainerClient::PatchedcontainerContainerDistribution.new(base_path: null,
|
25
23
|
repository: null,
|
24
|
+
hidden: null,
|
25
|
+
content_guard: null,
|
26
26
|
name: null,
|
27
27
|
pulp_labels: null,
|
28
28
|
repository_version: null,
|
@@ -4,9 +4,9 @@
|
|
4
4
|
|
5
5
|
Name | Type | Description | Notes
|
6
6
|
------------ | ------------- | ------------- | -------------
|
7
|
-
**manifest_signing_service** | **String** | A reference to an associated signing service. | [optional]
|
8
7
|
**description** | **String** | An optional description. | [optional]
|
9
8
|
**retain_repo_versions** | **Integer** | Retain X versions of the repository. Default is null which retains all versions. | [optional]
|
9
|
+
**manifest_signing_service** | **String** | A reference to an associated signing service. | [optional]
|
10
10
|
**name** | **String** | A unique name for this repository. | [optional]
|
11
11
|
**pulp_labels** | **Hash<String, String>** | | [optional]
|
12
12
|
|
@@ -15,9 +15,9 @@ Name | Type | Description | Notes
|
|
15
15
|
```ruby
|
16
16
|
require 'PulpContainerClient'
|
17
17
|
|
18
|
-
instance = PulpContainerClient::PatchedcontainerContainerPushRepository.new(
|
19
|
-
description: null,
|
18
|
+
instance = PulpContainerClient::PatchedcontainerContainerPushRepository.new(description: null,
|
20
19
|
retain_repo_versions: null,
|
20
|
+
manifest_signing_service: null,
|
21
21
|
name: null,
|
22
22
|
pulp_labels: null)
|
23
23
|
```
|
@@ -15,18 +15,18 @@ require 'date'
|
|
15
15
|
module PulpContainerClient
|
16
16
|
# A serializer for ContainerDistribution.
|
17
17
|
class ContainerContainerDistribution
|
18
|
-
# An optional content-guard. If none is specified, a default one will be used.
|
19
|
-
attr_accessor :content_guard
|
20
|
-
|
21
|
-
# Whether this distribution should be shown in the content app.
|
22
|
-
attr_accessor :hidden
|
23
|
-
|
24
18
|
# The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
|
25
19
|
attr_accessor :base_path
|
26
20
|
|
27
21
|
# The latest RepositoryVersion for this Repository will be served.
|
28
22
|
attr_accessor :repository
|
29
23
|
|
24
|
+
# Whether this distribution should be shown in the content app.
|
25
|
+
attr_accessor :hidden
|
26
|
+
|
27
|
+
# An optional content-guard. If none is specified, a default one will be used.
|
28
|
+
attr_accessor :content_guard
|
29
|
+
|
30
30
|
# A unique name. Ex, `rawhide` and `stable`.
|
31
31
|
attr_accessor :name
|
32
32
|
|
@@ -44,10 +44,10 @@ module PulpContainerClient
|
|
44
44
|
# Attribute mapping from ruby-style variable name to JSON key.
|
45
45
|
def self.attribute_map
|
46
46
|
{
|
47
|
-
:'content_guard' => :'content_guard',
|
48
|
-
:'hidden' => :'hidden',
|
49
47
|
:'base_path' => :'base_path',
|
50
48
|
:'repository' => :'repository',
|
49
|
+
:'hidden' => :'hidden',
|
50
|
+
:'content_guard' => :'content_guard',
|
51
51
|
:'name' => :'name',
|
52
52
|
:'pulp_labels' => :'pulp_labels',
|
53
53
|
:'repository_version' => :'repository_version',
|
@@ -59,10 +59,10 @@ module PulpContainerClient
|
|
59
59
|
# Attribute type mapping.
|
60
60
|
def self.openapi_types
|
61
61
|
{
|
62
|
-
:'content_guard' => :'String',
|
63
|
-
:'hidden' => :'Boolean',
|
64
62
|
:'base_path' => :'String',
|
65
63
|
:'repository' => :'String',
|
64
|
+
:'hidden' => :'Boolean',
|
65
|
+
:'content_guard' => :'String',
|
66
66
|
:'name' => :'String',
|
67
67
|
:'pulp_labels' => :'Hash<String, String>',
|
68
68
|
:'repository_version' => :'String',
|
@@ -95,8 +95,12 @@ module PulpContainerClient
|
|
95
95
|
h[k.to_sym] = v
|
96
96
|
}
|
97
97
|
|
98
|
-
if attributes.key?(:'
|
99
|
-
self.
|
98
|
+
if attributes.key?(:'base_path')
|
99
|
+
self.base_path = attributes[:'base_path']
|
100
|
+
end
|
101
|
+
|
102
|
+
if attributes.key?(:'repository')
|
103
|
+
self.repository = attributes[:'repository']
|
100
104
|
end
|
101
105
|
|
102
106
|
if attributes.key?(:'hidden')
|
@@ -105,12 +109,8 @@ module PulpContainerClient
|
|
105
109
|
self.hidden = false
|
106
110
|
end
|
107
111
|
|
108
|
-
if attributes.key?(:'
|
109
|
-
self.
|
110
|
-
end
|
111
|
-
|
112
|
-
if attributes.key?(:'repository')
|
113
|
-
self.repository = attributes[:'repository']
|
112
|
+
if attributes.key?(:'content_guard')
|
113
|
+
self.content_guard = attributes[:'content_guard']
|
114
114
|
end
|
115
115
|
|
116
116
|
if attributes.key?(:'name')
|
@@ -217,10 +217,10 @@ module PulpContainerClient
|
|
217
217
|
def ==(o)
|
218
218
|
return true if self.equal?(o)
|
219
219
|
self.class == o.class &&
|
220
|
-
content_guard == o.content_guard &&
|
221
|
-
hidden == o.hidden &&
|
222
220
|
base_path == o.base_path &&
|
223
221
|
repository == o.repository &&
|
222
|
+
hidden == o.hidden &&
|
223
|
+
content_guard == o.content_guard &&
|
224
224
|
name == o.name &&
|
225
225
|
pulp_labels == o.pulp_labels &&
|
226
226
|
repository_version == o.repository_version &&
|
@@ -237,7 +237,7 @@ module PulpContainerClient
|
|
237
237
|
# Calculates hash code according to all attributes.
|
238
238
|
# @return [Integer] Hash code
|
239
239
|
def hash
|
240
|
-
[
|
240
|
+
[base_path, repository, hidden, content_guard, name, pulp_labels, repository_version, private, description].hash
|
241
241
|
end
|
242
242
|
|
243
243
|
# Builds the object from hash
|
@@ -15,23 +15,23 @@ require 'date'
|
|
15
15
|
module PulpContainerClient
|
16
16
|
# A serializer for ContainerDistribution.
|
17
17
|
class ContainerContainerDistributionResponse
|
18
|
-
# An optional content-guard. If none is specified, a default one will be used.
|
19
|
-
attr_accessor :content_guard
|
20
|
-
|
21
|
-
attr_accessor :pulp_href
|
22
|
-
|
23
|
-
# Whether this distribution should be shown in the content app.
|
24
|
-
attr_accessor :hidden
|
25
|
-
|
26
18
|
# Timestamp of creation.
|
27
19
|
attr_accessor :pulp_created
|
28
20
|
|
29
21
|
# The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
|
30
22
|
attr_accessor :base_path
|
31
23
|
|
24
|
+
attr_accessor :pulp_href
|
25
|
+
|
32
26
|
# The latest RepositoryVersion for this Repository will be served.
|
33
27
|
attr_accessor :repository
|
34
28
|
|
29
|
+
# Whether this distribution should be shown in the content app.
|
30
|
+
attr_accessor :hidden
|
31
|
+
|
32
|
+
# An optional content-guard. If none is specified, a default one will be used.
|
33
|
+
attr_accessor :content_guard
|
34
|
+
|
35
35
|
# A unique name. Ex, `rawhide` and `stable`.
|
36
36
|
attr_accessor :name
|
37
37
|
|
@@ -55,12 +55,12 @@ module PulpContainerClient
|
|
55
55
|
# Attribute mapping from ruby-style variable name to JSON key.
|
56
56
|
def self.attribute_map
|
57
57
|
{
|
58
|
-
:'content_guard' => :'content_guard',
|
59
|
-
:'pulp_href' => :'pulp_href',
|
60
|
-
:'hidden' => :'hidden',
|
61
58
|
:'pulp_created' => :'pulp_created',
|
62
59
|
:'base_path' => :'base_path',
|
60
|
+
:'pulp_href' => :'pulp_href',
|
63
61
|
:'repository' => :'repository',
|
62
|
+
:'hidden' => :'hidden',
|
63
|
+
:'content_guard' => :'content_guard',
|
64
64
|
:'name' => :'name',
|
65
65
|
:'pulp_labels' => :'pulp_labels',
|
66
66
|
:'repository_version' => :'repository_version',
|
@@ -74,12 +74,12 @@ module PulpContainerClient
|
|
74
74
|
# Attribute type mapping.
|
75
75
|
def self.openapi_types
|
76
76
|
{
|
77
|
-
:'content_guard' => :'String',
|
78
|
-
:'pulp_href' => :'String',
|
79
|
-
:'hidden' => :'Boolean',
|
80
77
|
:'pulp_created' => :'DateTime',
|
81
78
|
:'base_path' => :'String',
|
79
|
+
:'pulp_href' => :'String',
|
82
80
|
:'repository' => :'String',
|
81
|
+
:'hidden' => :'Boolean',
|
82
|
+
:'content_guard' => :'String',
|
83
83
|
:'name' => :'String',
|
84
84
|
:'pulp_labels' => :'Hash<String, String>',
|
85
85
|
:'repository_version' => :'String',
|
@@ -114,30 +114,30 @@ module PulpContainerClient
|
|
114
114
|
h[k.to_sym] = v
|
115
115
|
}
|
116
116
|
|
117
|
-
if attributes.key?(:'
|
118
|
-
self.
|
117
|
+
if attributes.key?(:'pulp_created')
|
118
|
+
self.pulp_created = attributes[:'pulp_created']
|
119
|
+
end
|
120
|
+
|
121
|
+
if attributes.key?(:'base_path')
|
122
|
+
self.base_path = attributes[:'base_path']
|
119
123
|
end
|
120
124
|
|
121
125
|
if attributes.key?(:'pulp_href')
|
122
126
|
self.pulp_href = attributes[:'pulp_href']
|
123
127
|
end
|
124
128
|
|
129
|
+
if attributes.key?(:'repository')
|
130
|
+
self.repository = attributes[:'repository']
|
131
|
+
end
|
132
|
+
|
125
133
|
if attributes.key?(:'hidden')
|
126
134
|
self.hidden = attributes[:'hidden']
|
127
135
|
else
|
128
136
|
self.hidden = false
|
129
137
|
end
|
130
138
|
|
131
|
-
if attributes.key?(:'
|
132
|
-
self.
|
133
|
-
end
|
134
|
-
|
135
|
-
if attributes.key?(:'base_path')
|
136
|
-
self.base_path = attributes[:'base_path']
|
137
|
-
end
|
138
|
-
|
139
|
-
if attributes.key?(:'repository')
|
140
|
-
self.repository = attributes[:'repository']
|
139
|
+
if attributes.key?(:'content_guard')
|
140
|
+
self.content_guard = attributes[:'content_guard']
|
141
141
|
end
|
142
142
|
|
143
143
|
if attributes.key?(:'name')
|
@@ -199,12 +199,12 @@ module PulpContainerClient
|
|
199
199
|
def ==(o)
|
200
200
|
return true if self.equal?(o)
|
201
201
|
self.class == o.class &&
|
202
|
-
content_guard == o.content_guard &&
|
203
|
-
pulp_href == o.pulp_href &&
|
204
|
-
hidden == o.hidden &&
|
205
202
|
pulp_created == o.pulp_created &&
|
206
203
|
base_path == o.base_path &&
|
204
|
+
pulp_href == o.pulp_href &&
|
207
205
|
repository == o.repository &&
|
206
|
+
hidden == o.hidden &&
|
207
|
+
content_guard == o.content_guard &&
|
208
208
|
name == o.name &&
|
209
209
|
pulp_labels == o.pulp_labels &&
|
210
210
|
repository_version == o.repository_version &&
|
@@ -223,7 +223,7 @@ module PulpContainerClient
|
|
223
223
|
# Calculates hash code according to all attributes.
|
224
224
|
# @return [Integer] Hash code
|
225
225
|
def hash
|
226
|
-
[
|
226
|
+
[pulp_created, base_path, pulp_href, repository, hidden, content_guard, name, pulp_labels, repository_version, registry_path, namespace, private, description].hash
|
227
227
|
end
|
228
228
|
|
229
229
|
# Builds the object from hash
|
@@ -15,15 +15,15 @@ require 'date'
|
|
15
15
|
module PulpContainerClient
|
16
16
|
# Serializer for Container Push Repositories.
|
17
17
|
class ContainerContainerPushRepository
|
18
|
-
# A reference to an associated signing service.
|
19
|
-
attr_accessor :manifest_signing_service
|
20
|
-
|
21
18
|
# An optional description.
|
22
19
|
attr_accessor :description
|
23
20
|
|
24
21
|
# Retain X versions of the repository. Default is null which retains all versions.
|
25
22
|
attr_accessor :retain_repo_versions
|
26
23
|
|
24
|
+
# A reference to an associated signing service.
|
25
|
+
attr_accessor :manifest_signing_service
|
26
|
+
|
27
27
|
# A unique name for this repository.
|
28
28
|
attr_accessor :name
|
29
29
|
|
@@ -32,9 +32,9 @@ module PulpContainerClient
|
|
32
32
|
# Attribute mapping from ruby-style variable name to JSON key.
|
33
33
|
def self.attribute_map
|
34
34
|
{
|
35
|
-
:'manifest_signing_service' => :'manifest_signing_service',
|
36
35
|
:'description' => :'description',
|
37
36
|
:'retain_repo_versions' => :'retain_repo_versions',
|
37
|
+
:'manifest_signing_service' => :'manifest_signing_service',
|
38
38
|
:'name' => :'name',
|
39
39
|
:'pulp_labels' => :'pulp_labels'
|
40
40
|
}
|
@@ -43,9 +43,9 @@ module PulpContainerClient
|
|
43
43
|
# Attribute type mapping.
|
44
44
|
def self.openapi_types
|
45
45
|
{
|
46
|
-
:'manifest_signing_service' => :'String',
|
47
46
|
:'description' => :'String',
|
48
47
|
:'retain_repo_versions' => :'Integer',
|
48
|
+
:'manifest_signing_service' => :'String',
|
49
49
|
:'name' => :'String',
|
50
50
|
:'pulp_labels' => :'Hash<String, String>'
|
51
51
|
}
|
@@ -54,9 +54,9 @@ module PulpContainerClient
|
|
54
54
|
# List of attributes with nullable: true
|
55
55
|
def self.openapi_nullable
|
56
56
|
Set.new([
|
57
|
-
:'manifest_signing_service',
|
58
57
|
:'description',
|
59
58
|
:'retain_repo_versions',
|
59
|
+
:'manifest_signing_service',
|
60
60
|
])
|
61
61
|
end
|
62
62
|
|
@@ -75,10 +75,6 @@ module PulpContainerClient
|
|
75
75
|
h[k.to_sym] = v
|
76
76
|
}
|
77
77
|
|
78
|
-
if attributes.key?(:'manifest_signing_service')
|
79
|
-
self.manifest_signing_service = attributes[:'manifest_signing_service']
|
80
|
-
end
|
81
|
-
|
82
78
|
if attributes.key?(:'description')
|
83
79
|
self.description = attributes[:'description']
|
84
80
|
end
|
@@ -87,6 +83,10 @@ module PulpContainerClient
|
|
87
83
|
self.retain_repo_versions = attributes[:'retain_repo_versions']
|
88
84
|
end
|
89
85
|
|
86
|
+
if attributes.key?(:'manifest_signing_service')
|
87
|
+
self.manifest_signing_service = attributes[:'manifest_signing_service']
|
88
|
+
end
|
89
|
+
|
90
90
|
if attributes.key?(:'name')
|
91
91
|
self.name = attributes[:'name']
|
92
92
|
end
|
@@ -170,9 +170,9 @@ module PulpContainerClient
|
|
170
170
|
def ==(o)
|
171
171
|
return true if self.equal?(o)
|
172
172
|
self.class == o.class &&
|
173
|
-
manifest_signing_service == o.manifest_signing_service &&
|
174
173
|
description == o.description &&
|
175
174
|
retain_repo_versions == o.retain_repo_versions &&
|
175
|
+
manifest_signing_service == o.manifest_signing_service &&
|
176
176
|
name == o.name &&
|
177
177
|
pulp_labels == o.pulp_labels
|
178
178
|
end
|
@@ -186,7 +186,7 @@ module PulpContainerClient
|
|
186
186
|
# Calculates hash code according to all attributes.
|
187
187
|
# @return [Integer] Hash code
|
188
188
|
def hash
|
189
|
-
[
|
189
|
+
[description, retain_repo_versions, manifest_signing_service, name, pulp_labels].hash
|
190
190
|
end
|
191
191
|
|
192
192
|
# Builds the object from hash
|
@@ -15,23 +15,23 @@ require 'date'
|
|
15
15
|
module PulpContainerClient
|
16
16
|
# Serializer for Container Push Repositories.
|
17
17
|
class ContainerContainerPushRepositoryResponse
|
18
|
-
#
|
19
|
-
attr_accessor :
|
20
|
-
|
21
|
-
attr_accessor :versions_href
|
18
|
+
# Timestamp of creation.
|
19
|
+
attr_accessor :pulp_created
|
22
20
|
|
23
21
|
# An optional description.
|
24
22
|
attr_accessor :description
|
25
23
|
|
26
|
-
attr_accessor :
|
27
|
-
|
28
|
-
attr_accessor :pulp_href
|
24
|
+
attr_accessor :versions_href
|
29
25
|
|
30
26
|
# Retain X versions of the repository. Default is null which retains all versions.
|
31
27
|
attr_accessor :retain_repo_versions
|
32
28
|
|
33
|
-
|
34
|
-
|
29
|
+
attr_accessor :pulp_href
|
30
|
+
|
31
|
+
attr_accessor :latest_version_href
|
32
|
+
|
33
|
+
# A reference to an associated signing service.
|
34
|
+
attr_accessor :manifest_signing_service
|
35
35
|
|
36
36
|
# A unique name for this repository.
|
37
37
|
attr_accessor :name
|
@@ -41,13 +41,13 @@ module PulpContainerClient
|
|
41
41
|
# Attribute mapping from ruby-style variable name to JSON key.
|
42
42
|
def self.attribute_map
|
43
43
|
{
|
44
|
-
:'
|
45
|
-
:'versions_href' => :'versions_href',
|
44
|
+
:'pulp_created' => :'pulp_created',
|
46
45
|
:'description' => :'description',
|
47
|
-
:'
|
48
|
-
:'pulp_href' => :'pulp_href',
|
46
|
+
:'versions_href' => :'versions_href',
|
49
47
|
:'retain_repo_versions' => :'retain_repo_versions',
|
50
|
-
:'
|
48
|
+
:'pulp_href' => :'pulp_href',
|
49
|
+
:'latest_version_href' => :'latest_version_href',
|
50
|
+
:'manifest_signing_service' => :'manifest_signing_service',
|
51
51
|
:'name' => :'name',
|
52
52
|
:'pulp_labels' => :'pulp_labels'
|
53
53
|
}
|
@@ -56,13 +56,13 @@ module PulpContainerClient
|
|
56
56
|
# Attribute type mapping.
|
57
57
|
def self.openapi_types
|
58
58
|
{
|
59
|
-
:'
|
60
|
-
:'versions_href' => :'String',
|
59
|
+
:'pulp_created' => :'DateTime',
|
61
60
|
:'description' => :'String',
|
62
|
-
:'
|
63
|
-
:'pulp_href' => :'String',
|
61
|
+
:'versions_href' => :'String',
|
64
62
|
:'retain_repo_versions' => :'Integer',
|
65
|
-
:'
|
63
|
+
:'pulp_href' => :'String',
|
64
|
+
:'latest_version_href' => :'String',
|
65
|
+
:'manifest_signing_service' => :'String',
|
66
66
|
:'name' => :'String',
|
67
67
|
:'pulp_labels' => :'Hash<String, String>'
|
68
68
|
}
|
@@ -71,9 +71,9 @@ module PulpContainerClient
|
|
71
71
|
# List of attributes with nullable: true
|
72
72
|
def self.openapi_nullable
|
73
73
|
Set.new([
|
74
|
-
:'manifest_signing_service',
|
75
74
|
:'description',
|
76
75
|
:'retain_repo_versions',
|
76
|
+
:'manifest_signing_service',
|
77
77
|
])
|
78
78
|
end
|
79
79
|
|
@@ -92,32 +92,32 @@ module PulpContainerClient
|
|
92
92
|
h[k.to_sym] = v
|
93
93
|
}
|
94
94
|
|
95
|
-
if attributes.key?(:'
|
96
|
-
self.
|
97
|
-
end
|
98
|
-
|
99
|
-
if attributes.key?(:'versions_href')
|
100
|
-
self.versions_href = attributes[:'versions_href']
|
95
|
+
if attributes.key?(:'pulp_created')
|
96
|
+
self.pulp_created = attributes[:'pulp_created']
|
101
97
|
end
|
102
98
|
|
103
99
|
if attributes.key?(:'description')
|
104
100
|
self.description = attributes[:'description']
|
105
101
|
end
|
106
102
|
|
107
|
-
if attributes.key?(:'
|
108
|
-
self.
|
103
|
+
if attributes.key?(:'versions_href')
|
104
|
+
self.versions_href = attributes[:'versions_href']
|
105
|
+
end
|
106
|
+
|
107
|
+
if attributes.key?(:'retain_repo_versions')
|
108
|
+
self.retain_repo_versions = attributes[:'retain_repo_versions']
|
109
109
|
end
|
110
110
|
|
111
111
|
if attributes.key?(:'pulp_href')
|
112
112
|
self.pulp_href = attributes[:'pulp_href']
|
113
113
|
end
|
114
114
|
|
115
|
-
if attributes.key?(:'
|
116
|
-
self.
|
115
|
+
if attributes.key?(:'latest_version_href')
|
116
|
+
self.latest_version_href = attributes[:'latest_version_href']
|
117
117
|
end
|
118
118
|
|
119
|
-
if attributes.key?(:'
|
120
|
-
self.
|
119
|
+
if attributes.key?(:'manifest_signing_service')
|
120
|
+
self.manifest_signing_service = attributes[:'manifest_signing_service']
|
121
121
|
end
|
122
122
|
|
123
123
|
if attributes.key?(:'name')
|
@@ -169,13 +169,13 @@ module PulpContainerClient
|
|
169
169
|
def ==(o)
|
170
170
|
return true if self.equal?(o)
|
171
171
|
self.class == o.class &&
|
172
|
-
|
173
|
-
versions_href == o.versions_href &&
|
172
|
+
pulp_created == o.pulp_created &&
|
174
173
|
description == o.description &&
|
175
|
-
|
176
|
-
pulp_href == o.pulp_href &&
|
174
|
+
versions_href == o.versions_href &&
|
177
175
|
retain_repo_versions == o.retain_repo_versions &&
|
178
|
-
|
176
|
+
pulp_href == o.pulp_href &&
|
177
|
+
latest_version_href == o.latest_version_href &&
|
178
|
+
manifest_signing_service == o.manifest_signing_service &&
|
179
179
|
name == o.name &&
|
180
180
|
pulp_labels == o.pulp_labels
|
181
181
|
end
|
@@ -189,7 +189,7 @@ module PulpContainerClient
|
|
189
189
|
# Calculates hash code according to all attributes.
|
190
190
|
# @return [Integer] Hash code
|
191
191
|
def hash
|
192
|
-
[
|
192
|
+
[pulp_created, description, versions_href, retain_repo_versions, pulp_href, latest_version_href, manifest_signing_service, name, pulp_labels].hash
|
193
193
|
end
|
194
194
|
|
195
195
|
# Builds the object from hash
|
@@ -15,18 +15,18 @@ require 'date'
|
|
15
15
|
module PulpContainerClient
|
16
16
|
# A serializer for ContainerDistribution.
|
17
17
|
class PatchedcontainerContainerDistribution
|
18
|
-
# An optional content-guard. If none is specified, a default one will be used.
|
19
|
-
attr_accessor :content_guard
|
20
|
-
|
21
|
-
# Whether this distribution should be shown in the content app.
|
22
|
-
attr_accessor :hidden
|
23
|
-
|
24
18
|
# The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
|
25
19
|
attr_accessor :base_path
|
26
20
|
|
27
21
|
# The latest RepositoryVersion for this Repository will be served.
|
28
22
|
attr_accessor :repository
|
29
23
|
|
24
|
+
# Whether this distribution should be shown in the content app.
|
25
|
+
attr_accessor :hidden
|
26
|
+
|
27
|
+
# An optional content-guard. If none is specified, a default one will be used.
|
28
|
+
attr_accessor :content_guard
|
29
|
+
|
30
30
|
# A unique name. Ex, `rawhide` and `stable`.
|
31
31
|
attr_accessor :name
|
32
32
|
|
@@ -44,10 +44,10 @@ module PulpContainerClient
|
|
44
44
|
# Attribute mapping from ruby-style variable name to JSON key.
|
45
45
|
def self.attribute_map
|
46
46
|
{
|
47
|
-
:'content_guard' => :'content_guard',
|
48
|
-
:'hidden' => :'hidden',
|
49
47
|
:'base_path' => :'base_path',
|
50
48
|
:'repository' => :'repository',
|
49
|
+
:'hidden' => :'hidden',
|
50
|
+
:'content_guard' => :'content_guard',
|
51
51
|
:'name' => :'name',
|
52
52
|
:'pulp_labels' => :'pulp_labels',
|
53
53
|
:'repository_version' => :'repository_version',
|
@@ -59,10 +59,10 @@ module PulpContainerClient
|
|
59
59
|
# Attribute type mapping.
|
60
60
|
def self.openapi_types
|
61
61
|
{
|
62
|
-
:'content_guard' => :'String',
|
63
|
-
:'hidden' => :'Boolean',
|
64
62
|
:'base_path' => :'String',
|
65
63
|
:'repository' => :'String',
|
64
|
+
:'hidden' => :'Boolean',
|
65
|
+
:'content_guard' => :'String',
|
66
66
|
:'name' => :'String',
|
67
67
|
:'pulp_labels' => :'Hash<String, String>',
|
68
68
|
:'repository_version' => :'String',
|
@@ -95,8 +95,12 @@ module PulpContainerClient
|
|
95
95
|
h[k.to_sym] = v
|
96
96
|
}
|
97
97
|
|
98
|
-
if attributes.key?(:'
|
99
|
-
self.
|
98
|
+
if attributes.key?(:'base_path')
|
99
|
+
self.base_path = attributes[:'base_path']
|
100
|
+
end
|
101
|
+
|
102
|
+
if attributes.key?(:'repository')
|
103
|
+
self.repository = attributes[:'repository']
|
100
104
|
end
|
101
105
|
|
102
106
|
if attributes.key?(:'hidden')
|
@@ -105,12 +109,8 @@ module PulpContainerClient
|
|
105
109
|
self.hidden = false
|
106
110
|
end
|
107
111
|
|
108
|
-
if attributes.key?(:'
|
109
|
-
self.
|
110
|
-
end
|
111
|
-
|
112
|
-
if attributes.key?(:'repository')
|
113
|
-
self.repository = attributes[:'repository']
|
112
|
+
if attributes.key?(:'content_guard')
|
113
|
+
self.content_guard = attributes[:'content_guard']
|
114
114
|
end
|
115
115
|
|
116
116
|
if attributes.key?(:'name')
|
@@ -199,10 +199,10 @@ module PulpContainerClient
|
|
199
199
|
def ==(o)
|
200
200
|
return true if self.equal?(o)
|
201
201
|
self.class == o.class &&
|
202
|
-
content_guard == o.content_guard &&
|
203
|
-
hidden == o.hidden &&
|
204
202
|
base_path == o.base_path &&
|
205
203
|
repository == o.repository &&
|
204
|
+
hidden == o.hidden &&
|
205
|
+
content_guard == o.content_guard &&
|
206
206
|
name == o.name &&
|
207
207
|
pulp_labels == o.pulp_labels &&
|
208
208
|
repository_version == o.repository_version &&
|
@@ -219,7 +219,7 @@ module PulpContainerClient
|
|
219
219
|
# Calculates hash code according to all attributes.
|
220
220
|
# @return [Integer] Hash code
|
221
221
|
def hash
|
222
|
-
[
|
222
|
+
[base_path, repository, hidden, content_guard, name, pulp_labels, repository_version, private, description].hash
|
223
223
|
end
|
224
224
|
|
225
225
|
# Builds the object from hash
|
@@ -15,15 +15,15 @@ require 'date'
|
|
15
15
|
module PulpContainerClient
|
16
16
|
# Serializer for Container Push Repositories.
|
17
17
|
class PatchedcontainerContainerPushRepository
|
18
|
-
# A reference to an associated signing service.
|
19
|
-
attr_accessor :manifest_signing_service
|
20
|
-
|
21
18
|
# An optional description.
|
22
19
|
attr_accessor :description
|
23
20
|
|
24
21
|
# Retain X versions of the repository. Default is null which retains all versions.
|
25
22
|
attr_accessor :retain_repo_versions
|
26
23
|
|
24
|
+
# A reference to an associated signing service.
|
25
|
+
attr_accessor :manifest_signing_service
|
26
|
+
|
27
27
|
# A unique name for this repository.
|
28
28
|
attr_accessor :name
|
29
29
|
|
@@ -32,9 +32,9 @@ module PulpContainerClient
|
|
32
32
|
# Attribute mapping from ruby-style variable name to JSON key.
|
33
33
|
def self.attribute_map
|
34
34
|
{
|
35
|
-
:'manifest_signing_service' => :'manifest_signing_service',
|
36
35
|
:'description' => :'description',
|
37
36
|
:'retain_repo_versions' => :'retain_repo_versions',
|
37
|
+
:'manifest_signing_service' => :'manifest_signing_service',
|
38
38
|
:'name' => :'name',
|
39
39
|
:'pulp_labels' => :'pulp_labels'
|
40
40
|
}
|
@@ -43,9 +43,9 @@ module PulpContainerClient
|
|
43
43
|
# Attribute type mapping.
|
44
44
|
def self.openapi_types
|
45
45
|
{
|
46
|
-
:'manifest_signing_service' => :'String',
|
47
46
|
:'description' => :'String',
|
48
47
|
:'retain_repo_versions' => :'Integer',
|
48
|
+
:'manifest_signing_service' => :'String',
|
49
49
|
:'name' => :'String',
|
50
50
|
:'pulp_labels' => :'Hash<String, String>'
|
51
51
|
}
|
@@ -54,9 +54,9 @@ module PulpContainerClient
|
|
54
54
|
# List of attributes with nullable: true
|
55
55
|
def self.openapi_nullable
|
56
56
|
Set.new([
|
57
|
-
:'manifest_signing_service',
|
58
57
|
:'description',
|
59
58
|
:'retain_repo_versions',
|
59
|
+
:'manifest_signing_service',
|
60
60
|
])
|
61
61
|
end
|
62
62
|
|
@@ -75,10 +75,6 @@ module PulpContainerClient
|
|
75
75
|
h[k.to_sym] = v
|
76
76
|
}
|
77
77
|
|
78
|
-
if attributes.key?(:'manifest_signing_service')
|
79
|
-
self.manifest_signing_service = attributes[:'manifest_signing_service']
|
80
|
-
end
|
81
|
-
|
82
78
|
if attributes.key?(:'description')
|
83
79
|
self.description = attributes[:'description']
|
84
80
|
end
|
@@ -87,6 +83,10 @@ module PulpContainerClient
|
|
87
83
|
self.retain_repo_versions = attributes[:'retain_repo_versions']
|
88
84
|
end
|
89
85
|
|
86
|
+
if attributes.key?(:'manifest_signing_service')
|
87
|
+
self.manifest_signing_service = attributes[:'manifest_signing_service']
|
88
|
+
end
|
89
|
+
|
90
90
|
if attributes.key?(:'name')
|
91
91
|
self.name = attributes[:'name']
|
92
92
|
end
|
@@ -161,9 +161,9 @@ module PulpContainerClient
|
|
161
161
|
def ==(o)
|
162
162
|
return true if self.equal?(o)
|
163
163
|
self.class == o.class &&
|
164
|
-
manifest_signing_service == o.manifest_signing_service &&
|
165
164
|
description == o.description &&
|
166
165
|
retain_repo_versions == o.retain_repo_versions &&
|
166
|
+
manifest_signing_service == o.manifest_signing_service &&
|
167
167
|
name == o.name &&
|
168
168
|
pulp_labels == o.pulp_labels
|
169
169
|
end
|
@@ -177,7 +177,7 @@ module PulpContainerClient
|
|
177
177
|
# Calculates hash code according to all attributes.
|
178
178
|
# @return [Integer] Hash code
|
179
179
|
def hash
|
180
|
-
[
|
180
|
+
[description, retain_repo_versions, manifest_signing_service, name, pulp_labels].hash
|
181
181
|
end
|
182
182
|
|
183
183
|
# Builds the object from hash
|
@@ -32,37 +32,37 @@ describe 'ContainerContainerDistributionResponse' do
|
|
32
32
|
expect(@instance).to be_instance_of(PulpContainerClient::ContainerContainerDistributionResponse)
|
33
33
|
end
|
34
34
|
end
|
35
|
-
describe 'test attribute "
|
35
|
+
describe 'test attribute "pulp_created"' do
|
36
36
|
it 'should work' do
|
37
37
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
38
|
end
|
39
39
|
end
|
40
40
|
|
41
|
-
describe 'test attribute "
|
41
|
+
describe 'test attribute "base_path"' do
|
42
42
|
it 'should work' do
|
43
43
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
44
|
end
|
45
45
|
end
|
46
46
|
|
47
|
-
describe 'test attribute "
|
47
|
+
describe 'test attribute "pulp_href"' do
|
48
48
|
it 'should work' do
|
49
49
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
50
|
end
|
51
51
|
end
|
52
52
|
|
53
|
-
describe 'test attribute "
|
53
|
+
describe 'test attribute "repository"' do
|
54
54
|
it 'should work' do
|
55
55
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
56
56
|
end
|
57
57
|
end
|
58
58
|
|
59
|
-
describe 'test attribute "
|
59
|
+
describe 'test attribute "hidden"' do
|
60
60
|
it 'should work' do
|
61
61
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
62
62
|
end
|
63
63
|
end
|
64
64
|
|
65
|
-
describe 'test attribute "
|
65
|
+
describe 'test attribute "content_guard"' do
|
66
66
|
it 'should work' do
|
67
67
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
68
68
|
end
|
@@ -32,25 +32,25 @@ describe 'ContainerContainerDistribution' do
|
|
32
32
|
expect(@instance).to be_instance_of(PulpContainerClient::ContainerContainerDistribution)
|
33
33
|
end
|
34
34
|
end
|
35
|
-
describe 'test attribute "
|
35
|
+
describe 'test attribute "base_path"' do
|
36
36
|
it 'should work' do
|
37
37
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
38
|
end
|
39
39
|
end
|
40
40
|
|
41
|
-
describe 'test attribute "
|
41
|
+
describe 'test attribute "repository"' do
|
42
42
|
it 'should work' do
|
43
43
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
44
|
end
|
45
45
|
end
|
46
46
|
|
47
|
-
describe 'test attribute "
|
47
|
+
describe 'test attribute "hidden"' do
|
48
48
|
it 'should work' do
|
49
49
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
50
|
end
|
51
51
|
end
|
52
52
|
|
53
|
-
describe 'test attribute "
|
53
|
+
describe 'test attribute "content_guard"' do
|
54
54
|
it 'should work' do
|
55
55
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
56
56
|
end
|
@@ -32,25 +32,25 @@ describe 'ContainerContainerPushRepositoryResponse' do
|
|
32
32
|
expect(@instance).to be_instance_of(PulpContainerClient::ContainerContainerPushRepositoryResponse)
|
33
33
|
end
|
34
34
|
end
|
35
|
-
describe 'test attribute "
|
35
|
+
describe 'test attribute "pulp_created"' do
|
36
36
|
it 'should work' do
|
37
37
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
38
|
end
|
39
39
|
end
|
40
40
|
|
41
|
-
describe 'test attribute "
|
41
|
+
describe 'test attribute "description"' do
|
42
42
|
it 'should work' do
|
43
43
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
44
|
end
|
45
45
|
end
|
46
46
|
|
47
|
-
describe 'test attribute "
|
47
|
+
describe 'test attribute "versions_href"' do
|
48
48
|
it 'should work' do
|
49
49
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
50
|
end
|
51
51
|
end
|
52
52
|
|
53
|
-
describe 'test attribute "
|
53
|
+
describe 'test attribute "retain_repo_versions"' do
|
54
54
|
it 'should work' do
|
55
55
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
56
56
|
end
|
@@ -62,13 +62,13 @@ describe 'ContainerContainerPushRepositoryResponse' do
|
|
62
62
|
end
|
63
63
|
end
|
64
64
|
|
65
|
-
describe 'test attribute "
|
65
|
+
describe 'test attribute "latest_version_href"' do
|
66
66
|
it 'should work' do
|
67
67
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
68
68
|
end
|
69
69
|
end
|
70
70
|
|
71
|
-
describe 'test attribute "
|
71
|
+
describe 'test attribute "manifest_signing_service"' do
|
72
72
|
it 'should work' do
|
73
73
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
74
74
|
end
|
@@ -32,19 +32,19 @@ describe 'ContainerContainerPushRepository' do
|
|
32
32
|
expect(@instance).to be_instance_of(PulpContainerClient::ContainerContainerPushRepository)
|
33
33
|
end
|
34
34
|
end
|
35
|
-
describe 'test attribute "
|
35
|
+
describe 'test attribute "description"' do
|
36
36
|
it 'should work' do
|
37
37
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
38
|
end
|
39
39
|
end
|
40
40
|
|
41
|
-
describe 'test attribute "
|
41
|
+
describe 'test attribute "retain_repo_versions"' do
|
42
42
|
it 'should work' do
|
43
43
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
44
|
end
|
45
45
|
end
|
46
46
|
|
47
|
-
describe 'test attribute "
|
47
|
+
describe 'test attribute "manifest_signing_service"' do
|
48
48
|
it 'should work' do
|
49
49
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
50
|
end
|
@@ -32,25 +32,25 @@ describe 'PatchedcontainerContainerDistribution' do
|
|
32
32
|
expect(@instance).to be_instance_of(PulpContainerClient::PatchedcontainerContainerDistribution)
|
33
33
|
end
|
34
34
|
end
|
35
|
-
describe 'test attribute "
|
35
|
+
describe 'test attribute "base_path"' do
|
36
36
|
it 'should work' do
|
37
37
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
38
|
end
|
39
39
|
end
|
40
40
|
|
41
|
-
describe 'test attribute "
|
41
|
+
describe 'test attribute "repository"' do
|
42
42
|
it 'should work' do
|
43
43
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
44
|
end
|
45
45
|
end
|
46
46
|
|
47
|
-
describe 'test attribute "
|
47
|
+
describe 'test attribute "hidden"' do
|
48
48
|
it 'should work' do
|
49
49
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
50
|
end
|
51
51
|
end
|
52
52
|
|
53
|
-
describe 'test attribute "
|
53
|
+
describe 'test attribute "content_guard"' do
|
54
54
|
it 'should work' do
|
55
55
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
56
56
|
end
|
@@ -32,19 +32,19 @@ describe 'PatchedcontainerContainerPushRepository' do
|
|
32
32
|
expect(@instance).to be_instance_of(PulpContainerClient::PatchedcontainerContainerPushRepository)
|
33
33
|
end
|
34
34
|
end
|
35
|
-
describe 'test attribute "
|
35
|
+
describe 'test attribute "description"' do
|
36
36
|
it 'should work' do
|
37
37
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
38
|
end
|
39
39
|
end
|
40
40
|
|
41
|
-
describe 'test attribute "
|
41
|
+
describe 'test attribute "retain_repo_versions"' do
|
42
42
|
it 'should work' do
|
43
43
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
44
|
end
|
45
45
|
end
|
46
46
|
|
47
|
-
describe 'test attribute "
|
47
|
+
describe 'test attribute "manifest_signing_service"' do
|
48
48
|
it 'should work' do
|
49
49
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
50
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pulp_container_client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.16.
|
4
|
+
version: 2.16.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- OpenAPI-Generator
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-01-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|