pulp_container_client 2.3.0.dev01611029126 → 2.3.0.dev01611547658
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.
Potentially problematic release.
This version of pulp_container_client might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/README.md +4 -4
- data/docs/ContainerContainerDistribution.md +6 -6
- data/docs/ContainerContainerDistributionResponse.md +7 -7
- data/docs/PatchedcontainerContainerDistribution.md +6 -6
- data/lib/pulp_container_client/models/container_container_distribution.rb +25 -25
- data/lib/pulp_container_client/models/container_container_distribution_response.rb +24 -24
- data/lib/pulp_container_client/models/patchedcontainer_container_distribution.rb +25 -25
- 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/patchedcontainer_container_distribution_spec.rb +4 -4
- metadata +38 -38
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 65edc78fe704e6f046f1dfe6215dbf318a560f2612f7870ec476aac74455f286
|
|
4
|
+
data.tar.gz: 7c3fda0ed0a5ac7f4e5fba5db3182fb6ca3187a220578478568c11479009b25f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d44676da876879e1ff7a0bfac952a8bb48881baf1f3776d06f060a6f8de0cd3c8682261a4aec2eb9eb44d6c870a42c65738424567e9e15a1f1bd469ed252b923
|
|
7
|
+
data.tar.gz: 86f210842127d91fc761fb4489983cd52ff733a953ca99a33b320e4eecba85369e6feca50d31f972e21f0011e78709217950741cc38a04f42ce7510a538983c7
|
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.3.0.
|
|
10
|
+
- Package version: 2.3.0.dev01611547658
|
|
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.3.0.
|
|
27
|
+
gem install ./pulp_container_client-2.3.0.dev01611547658.gem
|
|
28
28
|
```
|
|
29
29
|
|
|
30
|
-
(for development, run `gem install --dev ./pulp_container_client-2.3.0.
|
|
30
|
+
(for development, run `gem install --dev ./pulp_container_client-2.3.0.dev01611547658.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.3.0.
|
|
36
|
+
gem 'pulp_container_client', '~> 2.3.0.dev01611547658'
|
|
37
37
|
|
|
38
38
|
### Install from Git
|
|
39
39
|
|
|
@@ -4,22 +4,22 @@
|
|
|
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
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
9
|
**repository_version** | **String** | RepositoryVersion to be served | [optional]
|
|
10
|
-
**name** | **String** | A unique name. Ex, `rawhide` and `stable`. |
|
|
11
10
|
**repository** | **String** | The latest RepositoryVersion for this Repository will be served. | [optional]
|
|
11
|
+
**name** | **String** | A unique name. Ex, `rawhide` and `stable`. |
|
|
12
12
|
|
|
13
13
|
## Code Sample
|
|
14
14
|
|
|
15
15
|
```ruby
|
|
16
16
|
require 'PulpContainerClient'
|
|
17
17
|
|
|
18
|
-
instance = PulpContainerClient::ContainerContainerDistribution.new(
|
|
19
|
-
|
|
18
|
+
instance = PulpContainerClient::ContainerContainerDistribution.new(base_path: null,
|
|
19
|
+
content_guard: null,
|
|
20
20
|
repository_version: null,
|
|
21
|
-
|
|
22
|
-
|
|
21
|
+
repository: null,
|
|
22
|
+
name: null)
|
|
23
23
|
```
|
|
24
24
|
|
|
25
25
|
|
|
@@ -4,13 +4,13 @@
|
|
|
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
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_href** | **String** | | [optional] [readonly]
|
|
9
10
|
**repository_version** | **String** | RepositoryVersion to be served | [optional]
|
|
10
11
|
**pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
|
|
11
|
-
**name** | **String** | A unique name. Ex, `rawhide` and `stable`. |
|
|
12
12
|
**repository** | **String** | The latest RepositoryVersion for this Repository will be served. | [optional]
|
|
13
|
-
**
|
|
13
|
+
**name** | **String** | A unique name. Ex, `rawhide` and `stable`. |
|
|
14
14
|
**registry_path** | **String** | The Registry hostame/name/ to use with docker pull command defined by this distribution. | [optional] [readonly]
|
|
15
15
|
**namespace** | **String** | Namespace this distribution belongs to. | [optional] [readonly]
|
|
16
16
|
|
|
@@ -19,13 +19,13 @@ Name | Type | Description | Notes
|
|
|
19
19
|
```ruby
|
|
20
20
|
require 'PulpContainerClient'
|
|
21
21
|
|
|
22
|
-
instance = PulpContainerClient::ContainerContainerDistributionResponse.new(
|
|
23
|
-
|
|
22
|
+
instance = PulpContainerClient::ContainerContainerDistributionResponse.new(base_path: null,
|
|
23
|
+
content_guard: null,
|
|
24
|
+
pulp_href: null,
|
|
24
25
|
repository_version: null,
|
|
25
26
|
pulp_created: null,
|
|
26
|
-
name: null,
|
|
27
27
|
repository: null,
|
|
28
|
-
|
|
28
|
+
name: null,
|
|
29
29
|
registry_path: null,
|
|
30
30
|
namespace: null)
|
|
31
31
|
```
|
|
@@ -4,22 +4,22 @@
|
|
|
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
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]
|
|
8
|
+
**content_guard** | **String** | An optional content-guard. If none is specified, a default one will be used. | [optional]
|
|
9
9
|
**repository_version** | **String** | RepositoryVersion to be served | [optional]
|
|
10
|
-
**name** | **String** | A unique name. Ex, `rawhide` and `stable`. | [optional]
|
|
11
10
|
**repository** | **String** | The latest RepositoryVersion for this Repository will be served. | [optional]
|
|
11
|
+
**name** | **String** | A unique name. Ex, `rawhide` and `stable`. | [optional]
|
|
12
12
|
|
|
13
13
|
## Code Sample
|
|
14
14
|
|
|
15
15
|
```ruby
|
|
16
16
|
require 'PulpContainerClient'
|
|
17
17
|
|
|
18
|
-
instance = PulpContainerClient::PatchedcontainerContainerDistribution.new(
|
|
19
|
-
|
|
18
|
+
instance = PulpContainerClient::PatchedcontainerContainerDistribution.new(base_path: null,
|
|
19
|
+
content_guard: null,
|
|
20
20
|
repository_version: null,
|
|
21
|
-
|
|
22
|
-
|
|
21
|
+
repository: null,
|
|
22
|
+
name: null)
|
|
23
23
|
```
|
|
24
24
|
|
|
25
25
|
|
|
@@ -15,40 +15,40 @@ 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
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\")
|
|
22
19
|
attr_accessor :base_path
|
|
23
20
|
|
|
21
|
+
# An optional content-guard. If none is specified, a default one will be used.
|
|
22
|
+
attr_accessor :content_guard
|
|
23
|
+
|
|
24
24
|
# RepositoryVersion to be served
|
|
25
25
|
attr_accessor :repository_version
|
|
26
26
|
|
|
27
|
-
# A unique name. Ex, `rawhide` and `stable`.
|
|
28
|
-
attr_accessor :name
|
|
29
|
-
|
|
30
27
|
# The latest RepositoryVersion for this Repository will be served.
|
|
31
28
|
attr_accessor :repository
|
|
32
29
|
|
|
30
|
+
# A unique name. Ex, `rawhide` and `stable`.
|
|
31
|
+
attr_accessor :name
|
|
32
|
+
|
|
33
33
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
34
34
|
def self.attribute_map
|
|
35
35
|
{
|
|
36
|
-
:'content_guard' => :'content_guard',
|
|
37
36
|
:'base_path' => :'base_path',
|
|
37
|
+
:'content_guard' => :'content_guard',
|
|
38
38
|
:'repository_version' => :'repository_version',
|
|
39
|
-
:'
|
|
40
|
-
:'
|
|
39
|
+
:'repository' => :'repository',
|
|
40
|
+
:'name' => :'name'
|
|
41
41
|
}
|
|
42
42
|
end
|
|
43
43
|
|
|
44
44
|
# Attribute type mapping.
|
|
45
45
|
def self.openapi_types
|
|
46
46
|
{
|
|
47
|
-
:'content_guard' => :'String',
|
|
48
47
|
:'base_path' => :'String',
|
|
48
|
+
:'content_guard' => :'String',
|
|
49
49
|
:'repository_version' => :'String',
|
|
50
|
-
:'
|
|
51
|
-
:'
|
|
50
|
+
:'repository' => :'String',
|
|
51
|
+
:'name' => :'String'
|
|
52
52
|
}
|
|
53
53
|
end
|
|
54
54
|
|
|
@@ -56,7 +56,7 @@ module PulpContainerClient
|
|
|
56
56
|
def self.openapi_nullable
|
|
57
57
|
Set.new([
|
|
58
58
|
:'repository_version',
|
|
59
|
-
:'repository'
|
|
59
|
+
:'repository',
|
|
60
60
|
])
|
|
61
61
|
end
|
|
62
62
|
|
|
@@ -75,25 +75,25 @@ module PulpContainerClient
|
|
|
75
75
|
h[k.to_sym] = v
|
|
76
76
|
}
|
|
77
77
|
|
|
78
|
-
if attributes.key?(:'content_guard')
|
|
79
|
-
self.content_guard = attributes[:'content_guard']
|
|
80
|
-
end
|
|
81
|
-
|
|
82
78
|
if attributes.key?(:'base_path')
|
|
83
79
|
self.base_path = attributes[:'base_path']
|
|
84
80
|
end
|
|
85
81
|
|
|
86
|
-
if attributes.key?(:'
|
|
87
|
-
self.
|
|
82
|
+
if attributes.key?(:'content_guard')
|
|
83
|
+
self.content_guard = attributes[:'content_guard']
|
|
88
84
|
end
|
|
89
85
|
|
|
90
|
-
if attributes.key?(:'
|
|
91
|
-
self.
|
|
86
|
+
if attributes.key?(:'repository_version')
|
|
87
|
+
self.repository_version = attributes[:'repository_version']
|
|
92
88
|
end
|
|
93
89
|
|
|
94
90
|
if attributes.key?(:'repository')
|
|
95
91
|
self.repository = attributes[:'repository']
|
|
96
92
|
end
|
|
93
|
+
|
|
94
|
+
if attributes.key?(:'name')
|
|
95
|
+
self.name = attributes[:'name']
|
|
96
|
+
end
|
|
97
97
|
end
|
|
98
98
|
|
|
99
99
|
# Show invalid properties with the reasons. Usually used together with valid?
|
|
@@ -124,11 +124,11 @@ module PulpContainerClient
|
|
|
124
124
|
def ==(o)
|
|
125
125
|
return true if self.equal?(o)
|
|
126
126
|
self.class == o.class &&
|
|
127
|
-
content_guard == o.content_guard &&
|
|
128
127
|
base_path == o.base_path &&
|
|
128
|
+
content_guard == o.content_guard &&
|
|
129
129
|
repository_version == o.repository_version &&
|
|
130
|
-
|
|
131
|
-
|
|
130
|
+
repository == o.repository &&
|
|
131
|
+
name == o.name
|
|
132
132
|
end
|
|
133
133
|
|
|
134
134
|
# @see the `==` method
|
|
@@ -140,7 +140,7 @@ module PulpContainerClient
|
|
|
140
140
|
# Calculates hash code according to all attributes.
|
|
141
141
|
# @return [Integer] Hash code
|
|
142
142
|
def hash
|
|
143
|
-
[
|
|
143
|
+
[base_path, content_guard, repository_version, repository, name].hash
|
|
144
144
|
end
|
|
145
145
|
|
|
146
146
|
# Builds the object from hash
|
|
@@ -15,11 +15,13 @@ require 'date'
|
|
|
15
15
|
module PulpContainerClient
|
|
16
16
|
# A serializer for ContainerDistribution.
|
|
17
17
|
class ContainerContainerDistributionResponse
|
|
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\")
|
|
19
|
+
attr_accessor :base_path
|
|
20
|
+
|
|
18
21
|
# An optional content-guard. If none is specified, a default one will be used.
|
|
19
22
|
attr_accessor :content_guard
|
|
20
23
|
|
|
21
|
-
|
|
22
|
-
attr_accessor :base_path
|
|
24
|
+
attr_accessor :pulp_href
|
|
23
25
|
|
|
24
26
|
# RepositoryVersion to be served
|
|
25
27
|
attr_accessor :repository_version
|
|
@@ -27,13 +29,11 @@ module PulpContainerClient
|
|
|
27
29
|
# Timestamp of creation.
|
|
28
30
|
attr_accessor :pulp_created
|
|
29
31
|
|
|
30
|
-
# A unique name. Ex, `rawhide` and `stable`.
|
|
31
|
-
attr_accessor :name
|
|
32
|
-
|
|
33
32
|
# The latest RepositoryVersion for this Repository will be served.
|
|
34
33
|
attr_accessor :repository
|
|
35
34
|
|
|
36
|
-
|
|
35
|
+
# A unique name. Ex, `rawhide` and `stable`.
|
|
36
|
+
attr_accessor :name
|
|
37
37
|
|
|
38
38
|
# The Registry hostame/name/ to use with docker pull command defined by this distribution.
|
|
39
39
|
attr_accessor :registry_path
|
|
@@ -44,13 +44,13 @@ 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
47
|
:'base_path' => :'base_path',
|
|
48
|
+
:'content_guard' => :'content_guard',
|
|
49
|
+
:'pulp_href' => :'pulp_href',
|
|
49
50
|
:'repository_version' => :'repository_version',
|
|
50
51
|
:'pulp_created' => :'pulp_created',
|
|
51
|
-
:'name' => :'name',
|
|
52
52
|
:'repository' => :'repository',
|
|
53
|
-
:'
|
|
53
|
+
:'name' => :'name',
|
|
54
54
|
:'registry_path' => :'registry_path',
|
|
55
55
|
:'namespace' => :'namespace'
|
|
56
56
|
}
|
|
@@ -59,13 +59,13 @@ module PulpContainerClient
|
|
|
59
59
|
# Attribute type mapping.
|
|
60
60
|
def self.openapi_types
|
|
61
61
|
{
|
|
62
|
-
:'content_guard' => :'String',
|
|
63
62
|
:'base_path' => :'String',
|
|
63
|
+
:'content_guard' => :'String',
|
|
64
|
+
:'pulp_href' => :'String',
|
|
64
65
|
:'repository_version' => :'String',
|
|
65
66
|
:'pulp_created' => :'DateTime',
|
|
66
|
-
:'name' => :'String',
|
|
67
67
|
:'repository' => :'String',
|
|
68
|
-
:'
|
|
68
|
+
:'name' => :'String',
|
|
69
69
|
:'registry_path' => :'String',
|
|
70
70
|
:'namespace' => :'String'
|
|
71
71
|
}
|
|
@@ -94,12 +94,16 @@ module PulpContainerClient
|
|
|
94
94
|
h[k.to_sym] = v
|
|
95
95
|
}
|
|
96
96
|
|
|
97
|
+
if attributes.key?(:'base_path')
|
|
98
|
+
self.base_path = attributes[:'base_path']
|
|
99
|
+
end
|
|
100
|
+
|
|
97
101
|
if attributes.key?(:'content_guard')
|
|
98
102
|
self.content_guard = attributes[:'content_guard']
|
|
99
103
|
end
|
|
100
104
|
|
|
101
|
-
if attributes.key?(:'
|
|
102
|
-
self.
|
|
105
|
+
if attributes.key?(:'pulp_href')
|
|
106
|
+
self.pulp_href = attributes[:'pulp_href']
|
|
103
107
|
end
|
|
104
108
|
|
|
105
109
|
if attributes.key?(:'repository_version')
|
|
@@ -110,16 +114,12 @@ module PulpContainerClient
|
|
|
110
114
|
self.pulp_created = attributes[:'pulp_created']
|
|
111
115
|
end
|
|
112
116
|
|
|
113
|
-
if attributes.key?(:'name')
|
|
114
|
-
self.name = attributes[:'name']
|
|
115
|
-
end
|
|
116
|
-
|
|
117
117
|
if attributes.key?(:'repository')
|
|
118
118
|
self.repository = attributes[:'repository']
|
|
119
119
|
end
|
|
120
120
|
|
|
121
|
-
if attributes.key?(:'
|
|
122
|
-
self.
|
|
121
|
+
if attributes.key?(:'name')
|
|
122
|
+
self.name = attributes[:'name']
|
|
123
123
|
end
|
|
124
124
|
|
|
125
125
|
if attributes.key?(:'registry_path')
|
|
@@ -159,13 +159,13 @@ module PulpContainerClient
|
|
|
159
159
|
def ==(o)
|
|
160
160
|
return true if self.equal?(o)
|
|
161
161
|
self.class == o.class &&
|
|
162
|
-
content_guard == o.content_guard &&
|
|
163
162
|
base_path == o.base_path &&
|
|
163
|
+
content_guard == o.content_guard &&
|
|
164
|
+
pulp_href == o.pulp_href &&
|
|
164
165
|
repository_version == o.repository_version &&
|
|
165
166
|
pulp_created == o.pulp_created &&
|
|
166
|
-
name == o.name &&
|
|
167
167
|
repository == o.repository &&
|
|
168
|
-
|
|
168
|
+
name == o.name &&
|
|
169
169
|
registry_path == o.registry_path &&
|
|
170
170
|
namespace == o.namespace
|
|
171
171
|
end
|
|
@@ -179,7 +179,7 @@ module PulpContainerClient
|
|
|
179
179
|
# Calculates hash code according to all attributes.
|
|
180
180
|
# @return [Integer] Hash code
|
|
181
181
|
def hash
|
|
182
|
-
[content_guard,
|
|
182
|
+
[base_path, content_guard, pulp_href, repository_version, pulp_created, repository, name, registry_path, namespace].hash
|
|
183
183
|
end
|
|
184
184
|
|
|
185
185
|
# Builds the object from hash
|
|
@@ -15,40 +15,40 @@ 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
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\")
|
|
22
19
|
attr_accessor :base_path
|
|
23
20
|
|
|
21
|
+
# An optional content-guard. If none is specified, a default one will be used.
|
|
22
|
+
attr_accessor :content_guard
|
|
23
|
+
|
|
24
24
|
# RepositoryVersion to be served
|
|
25
25
|
attr_accessor :repository_version
|
|
26
26
|
|
|
27
|
-
# A unique name. Ex, `rawhide` and `stable`.
|
|
28
|
-
attr_accessor :name
|
|
29
|
-
|
|
30
27
|
# The latest RepositoryVersion for this Repository will be served.
|
|
31
28
|
attr_accessor :repository
|
|
32
29
|
|
|
30
|
+
# A unique name. Ex, `rawhide` and `stable`.
|
|
31
|
+
attr_accessor :name
|
|
32
|
+
|
|
33
33
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
34
34
|
def self.attribute_map
|
|
35
35
|
{
|
|
36
|
-
:'content_guard' => :'content_guard',
|
|
37
36
|
:'base_path' => :'base_path',
|
|
37
|
+
:'content_guard' => :'content_guard',
|
|
38
38
|
:'repository_version' => :'repository_version',
|
|
39
|
-
:'
|
|
40
|
-
:'
|
|
39
|
+
:'repository' => :'repository',
|
|
40
|
+
:'name' => :'name'
|
|
41
41
|
}
|
|
42
42
|
end
|
|
43
43
|
|
|
44
44
|
# Attribute type mapping.
|
|
45
45
|
def self.openapi_types
|
|
46
46
|
{
|
|
47
|
-
:'content_guard' => :'String',
|
|
48
47
|
:'base_path' => :'String',
|
|
48
|
+
:'content_guard' => :'String',
|
|
49
49
|
:'repository_version' => :'String',
|
|
50
|
-
:'
|
|
51
|
-
:'
|
|
50
|
+
:'repository' => :'String',
|
|
51
|
+
:'name' => :'String'
|
|
52
52
|
}
|
|
53
53
|
end
|
|
54
54
|
|
|
@@ -56,7 +56,7 @@ module PulpContainerClient
|
|
|
56
56
|
def self.openapi_nullable
|
|
57
57
|
Set.new([
|
|
58
58
|
:'repository_version',
|
|
59
|
-
:'repository'
|
|
59
|
+
:'repository',
|
|
60
60
|
])
|
|
61
61
|
end
|
|
62
62
|
|
|
@@ -75,25 +75,25 @@ module PulpContainerClient
|
|
|
75
75
|
h[k.to_sym] = v
|
|
76
76
|
}
|
|
77
77
|
|
|
78
|
-
if attributes.key?(:'content_guard')
|
|
79
|
-
self.content_guard = attributes[:'content_guard']
|
|
80
|
-
end
|
|
81
|
-
|
|
82
78
|
if attributes.key?(:'base_path')
|
|
83
79
|
self.base_path = attributes[:'base_path']
|
|
84
80
|
end
|
|
85
81
|
|
|
86
|
-
if attributes.key?(:'
|
|
87
|
-
self.
|
|
82
|
+
if attributes.key?(:'content_guard')
|
|
83
|
+
self.content_guard = attributes[:'content_guard']
|
|
88
84
|
end
|
|
89
85
|
|
|
90
|
-
if attributes.key?(:'
|
|
91
|
-
self.
|
|
86
|
+
if attributes.key?(:'repository_version')
|
|
87
|
+
self.repository_version = attributes[:'repository_version']
|
|
92
88
|
end
|
|
93
89
|
|
|
94
90
|
if attributes.key?(:'repository')
|
|
95
91
|
self.repository = attributes[:'repository']
|
|
96
92
|
end
|
|
93
|
+
|
|
94
|
+
if attributes.key?(:'name')
|
|
95
|
+
self.name = attributes[:'name']
|
|
96
|
+
end
|
|
97
97
|
end
|
|
98
98
|
|
|
99
99
|
# Show invalid properties with the reasons. Usually used together with valid?
|
|
@@ -114,11 +114,11 @@ module PulpContainerClient
|
|
|
114
114
|
def ==(o)
|
|
115
115
|
return true if self.equal?(o)
|
|
116
116
|
self.class == o.class &&
|
|
117
|
-
content_guard == o.content_guard &&
|
|
118
117
|
base_path == o.base_path &&
|
|
118
|
+
content_guard == o.content_guard &&
|
|
119
119
|
repository_version == o.repository_version &&
|
|
120
|
-
|
|
121
|
-
|
|
120
|
+
repository == o.repository &&
|
|
121
|
+
name == o.name
|
|
122
122
|
end
|
|
123
123
|
|
|
124
124
|
# @see the `==` method
|
|
@@ -130,7 +130,7 @@ module PulpContainerClient
|
|
|
130
130
|
# Calculates hash code according to all attributes.
|
|
131
131
|
# @return [Integer] Hash code
|
|
132
132
|
def hash
|
|
133
|
-
[
|
|
133
|
+
[base_path, content_guard, repository_version, repository, name].hash
|
|
134
134
|
end
|
|
135
135
|
|
|
136
136
|
# Builds the object from hash
|
|
@@ -32,31 +32,31 @@ 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 "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 "content_guard"' 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_version"' 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 "pulp_created"' 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
|
|
@@ -68,7 +68,7 @@ describe 'ContainerContainerDistributionResponse' do
|
|
|
68
68
|
end
|
|
69
69
|
end
|
|
70
70
|
|
|
71
|
-
describe 'test attribute "
|
|
71
|
+
describe 'test attribute "name"' 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,13 +32,13 @@ 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 "content_guard"' 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
|
|
@@ -50,13 +50,13 @@ describe 'ContainerContainerDistribution' do
|
|
|
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 "name"' 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
|
|
@@ -32,13 +32,13 @@ 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 "content_guard"' 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
|
|
@@ -50,13 +50,13 @@ describe 'PatchedcontainerContainerDistribution' do
|
|
|
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 "name"' 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
|
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.3.0.
|
|
4
|
+
version: 2.3.0.dev01611547658
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- OpenAPI-Generator
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-01-
|
|
11
|
+
date: 2021-01-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: faraday
|
|
@@ -264,58 +264,58 @@ signing_key:
|
|
|
264
264
|
specification_version: 4
|
|
265
265
|
summary: Pulp 3 API Ruby Gem
|
|
266
266
|
test_files:
|
|
267
|
-
- spec/api/
|
|
267
|
+
- spec/api/content_blobs_api_spec.rb
|
|
268
268
|
- spec/api/distributions_container_api_spec.rb
|
|
269
|
-
- spec/api/
|
|
269
|
+
- spec/api/content_manifests_api_spec.rb
|
|
270
|
+
- spec/api/repositories_container_versions_api_spec.rb
|
|
270
271
|
- spec/api/content_tags_api_spec.rb
|
|
272
|
+
- spec/api/pulp_container_namespaces_api_spec.rb
|
|
273
|
+
- spec/api/remotes_container_api_spec.rb
|
|
271
274
|
- spec/api/repositories_container_api_spec.rb
|
|
272
|
-
- spec/api/
|
|
275
|
+
- spec/api/repositories_container_push_api_spec.rb
|
|
273
276
|
- spec/api/token_api_spec.rb
|
|
274
|
-
- spec/api/content_blobs_api_spec.rb
|
|
275
|
-
- spec/api/pulp_container_namespaces_api_spec.rb
|
|
276
277
|
- spec/api/contentguards_content_redirect_api_spec.rb
|
|
277
|
-
- spec/api/content_manifests_api_spec.rb
|
|
278
278
|
- spec/api_client_spec.rb
|
|
279
279
|
- spec/configuration_spec.rb
|
|
280
|
-
- spec/models/
|
|
281
|
-
- spec/models/container_container_repository_response_spec.rb
|
|
280
|
+
- spec/models/content_summary_spec.rb
|
|
282
281
|
- spec/models/container_tag_response_spec.rb
|
|
283
|
-
- spec/models/
|
|
284
|
-
- spec/models/
|
|
285
|
-
- spec/models/
|
|
286
|
-
- spec/models/
|
|
282
|
+
- spec/models/paginatedcontainer_container_namespace_response_list_spec.rb
|
|
283
|
+
- spec/models/container_container_namespace_response_spec.rb
|
|
284
|
+
- spec/models/repository_version_spec.rb
|
|
285
|
+
- spec/models/content_summary_response_spec.rb
|
|
286
|
+
- spec/models/un_tag_image_spec.rb
|
|
287
|
+
- spec/models/patchedcontainer_container_distribution_spec.rb
|
|
287
288
|
- spec/models/paginatedcontainer_content_redirect_content_guard_response_list_spec.rb
|
|
288
|
-
- spec/models/
|
|
289
|
-
- spec/models/policy_enum_spec.rb
|
|
290
|
-
- spec/models/container_container_push_repository_response_spec.rb
|
|
289
|
+
- spec/models/patchedcontainer_container_remote_spec.rb
|
|
291
290
|
- spec/models/container_container_remote_spec.rb
|
|
292
|
-
- spec/models/manifest_copy_spec.rb
|
|
293
|
-
- spec/models/content_summary_response_spec.rb
|
|
294
|
-
- spec/models/paginatedcontainer_container_namespace_response_list_spec.rb
|
|
295
|
-
- spec/models/container_blob_response_spec.rb
|
|
296
|
-
- spec/models/paginatedcontainer_container_repository_response_list_spec.rb
|
|
297
|
-
- spec/models/container_container_distribution_spec.rb
|
|
298
291
|
- spec/models/container_container_distribution_response_spec.rb
|
|
299
|
-
- spec/models/
|
|
300
|
-
- spec/models/
|
|
301
|
-
- spec/models/container_content_redirect_content_guard_response_spec.rb
|
|
302
|
-
- spec/models/content_summary_spec.rb
|
|
292
|
+
- spec/models/paginatedcontainer_manifest_response_list_spec.rb
|
|
293
|
+
- spec/models/container_container_push_repository_response_spec.rb
|
|
303
294
|
- spec/models/repository_version_response_spec.rb
|
|
304
|
-
- spec/models/
|
|
305
|
-
- spec/models/
|
|
306
|
-
- spec/models/
|
|
295
|
+
- spec/models/patchedcontainer_content_redirect_content_guard_spec.rb
|
|
296
|
+
- spec/models/paginatedcontainer_container_remote_response_list_spec.rb
|
|
297
|
+
- spec/models/paginatedcontainer_container_repository_response_list_spec.rb
|
|
307
298
|
- spec/models/paginatedcontainer_container_distribution_response_list_spec.rb
|
|
308
|
-
- spec/models/container_container_namespace_spec.rb
|
|
309
299
|
- spec/models/repository_sync_url_spec.rb
|
|
300
|
+
- spec/models/paginatedcontainer_container_push_repository_response_list_spec.rb
|
|
301
|
+
- spec/models/container_container_repository_response_spec.rb
|
|
302
|
+
- spec/models/patchedcontainer_container_repository_spec.rb
|
|
303
|
+
- spec/models/container_blob_response_spec.rb
|
|
304
|
+
- spec/models/tag_copy_spec.rb
|
|
310
305
|
- spec/models/async_operation_response_spec.rb
|
|
306
|
+
- spec/models/policy_enum_spec.rb
|
|
307
|
+
- spec/models/manifest_copy_spec.rb
|
|
308
|
+
- spec/models/container_container_repository_spec.rb
|
|
311
309
|
- spec/models/recursive_manage_spec.rb
|
|
312
|
-
- spec/models/paginatedcontainer_manifest_response_list_spec.rb
|
|
313
|
-
- spec/models/patchedcontainer_container_distribution_spec.rb
|
|
314
|
-
- spec/models/container_manifest_response_spec.rb
|
|
315
|
-
- spec/models/paginatedcontainer_container_push_repository_response_list_spec.rb
|
|
316
|
-
- spec/models/container_content_redirect_content_guard_spec.rb
|
|
317
310
|
- spec/models/paginatedcontainer_tag_response_list_spec.rb
|
|
318
|
-
- spec/models/
|
|
311
|
+
- spec/models/container_content_redirect_content_guard_response_spec.rb
|
|
319
312
|
- spec/models/oci_build_image_spec.rb
|
|
320
|
-
- spec/models/
|
|
313
|
+
- spec/models/tag_image_spec.rb
|
|
314
|
+
- spec/models/container_content_redirect_content_guard_spec.rb
|
|
315
|
+
- spec/models/container_container_remote_response_spec.rb
|
|
316
|
+
- spec/models/container_manifest_response_spec.rb
|
|
317
|
+
- spec/models/container_container_namespace_spec.rb
|
|
318
|
+
- spec/models/paginatedcontainer_blob_response_list_spec.rb
|
|
319
|
+
- spec/models/paginated_repository_version_response_list_spec.rb
|
|
320
|
+
- spec/models/container_container_distribution_spec.rb
|
|
321
321
|
- spec/spec_helper.rb
|