pulp_container_client 1.1.0.dev01576085429 → 1.1.0.dev01577122358
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 +2 -2
- data/lib/pulp_container_client/models/container_container_distribution.rb +12 -12
- data/lib/pulp_container_client/version.rb +1 -1
- data/pulp_container_client.gemspec +1 -1
- data/spec/models/container_container_distribution_spec.rb +4 -4
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bf07b8a9dea1810953a089f633e846e5847b333a6d130f9efc7b9eff80f5908f
|
|
4
|
+
data.tar.gz: 666ccdff7fd81fa225cc13c040e1863a84bef0e9f1bb5f4bb01a70996da73742
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bddbc30b93d0df8aad007512831b72bf79515a37458a786d629faf3eff0c106ffa11b0a04eb43fdc69166452cb21238fdf10d99faf663af6e0c3e217404d91d5
|
|
7
|
+
data.tar.gz: 2f4152dc1054a6b7c90507dd716ef7693a6def7828ea799e214ba58019fd7967658adf48a66606fb1be533726cbddffcfd38bf7d71b390d1fa05e46a3d6dddd3
|
data/README.md
CHANGED
|
@@ -7,7 +7,7 @@ No description provided (generated by Openapi Generator https://github.com/opena
|
|
|
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: 1.1.0.
|
|
10
|
+
- Package version: 1.1.0.dev01577122358
|
|
11
11
|
- Build package: org.openapitools.codegen.languages.RubyClientCodegen
|
|
12
12
|
|
|
13
13
|
## Installation
|
|
@@ -23,16 +23,16 @@ gem build pulp_container_client.gemspec
|
|
|
23
23
|
Then either install the gem locally:
|
|
24
24
|
|
|
25
25
|
```shell
|
|
26
|
-
gem install ./pulp_container_client-1.1.0.
|
|
26
|
+
gem install ./pulp_container_client-1.1.0.dev01577122358.gem
|
|
27
27
|
```
|
|
28
28
|
|
|
29
|
-
(for development, run `gem install --dev ./pulp_container_client-1.1.0.
|
|
29
|
+
(for development, run `gem install --dev ./pulp_container_client-1.1.0.dev01577122358.gem` to install the development dependencies)
|
|
30
30
|
|
|
31
31
|
or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
|
|
32
32
|
|
|
33
33
|
Finally add this to the Gemfile:
|
|
34
34
|
|
|
35
|
-
gem 'pulp_container_client', '~> 1.1.0.
|
|
35
|
+
gem 'pulp_container_client', '~> 1.1.0.dev01577122358'
|
|
36
36
|
|
|
37
37
|
### Install from Git
|
|
38
38
|
|
|
@@ -6,10 +6,10 @@ Name | Type | Description | Notes
|
|
|
6
6
|
------------ | ------------- | ------------- | -------------
|
|
7
7
|
**content_guard** | **String** | An optional content-guard. | [optional]
|
|
8
8
|
**pulp_href** | **String** | | [optional] [readonly]
|
|
9
|
-
**repository** | **String** | The latest RepositoryVersion for this Repository will be served. | [optional]
|
|
10
9
|
**repository_version** | **String** | RepositoryVersion to be served | [optional]
|
|
11
10
|
**pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
|
|
12
11
|
**name** | **String** | A unique name. Ex, `rawhide` and `stable`. |
|
|
12
|
+
**repository** | **String** | The latest RepositoryVersion for this Repository will be served. | [optional]
|
|
13
13
|
**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\") |
|
|
14
14
|
**registry_path** | **String** | The Registry hostame:port/name/ to use with docker pull command defined by this distribution. | [optional] [readonly]
|
|
15
15
|
|
|
@@ -20,10 +20,10 @@ require 'PulpContainerClient'
|
|
|
20
20
|
|
|
21
21
|
instance = PulpContainerClient::ContainerContainerDistribution.new(content_guard: null,
|
|
22
22
|
pulp_href: null,
|
|
23
|
-
repository: null,
|
|
24
23
|
repository_version: null,
|
|
25
24
|
pulp_created: null,
|
|
26
25
|
name: null,
|
|
26
|
+
repository: null,
|
|
27
27
|
base_path: null,
|
|
28
28
|
registry_path: null)
|
|
29
29
|
```
|
|
@@ -19,9 +19,6 @@ module PulpContainerClient
|
|
|
19
19
|
|
|
20
20
|
attr_accessor :pulp_href
|
|
21
21
|
|
|
22
|
-
# The latest RepositoryVersion for this Repository will be served.
|
|
23
|
-
attr_accessor :repository
|
|
24
|
-
|
|
25
22
|
# RepositoryVersion to be served
|
|
26
23
|
attr_accessor :repository_version
|
|
27
24
|
|
|
@@ -31,6 +28,9 @@ module PulpContainerClient
|
|
|
31
28
|
# A unique name. Ex, `rawhide` and `stable`.
|
|
32
29
|
attr_accessor :name
|
|
33
30
|
|
|
31
|
+
# The latest RepositoryVersion for this Repository will be served.
|
|
32
|
+
attr_accessor :repository
|
|
33
|
+
|
|
34
34
|
# The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
|
|
35
35
|
attr_accessor :base_path
|
|
36
36
|
|
|
@@ -42,10 +42,10 @@ module PulpContainerClient
|
|
|
42
42
|
{
|
|
43
43
|
:'content_guard' => :'content_guard',
|
|
44
44
|
:'pulp_href' => :'pulp_href',
|
|
45
|
-
:'repository' => :'repository',
|
|
46
45
|
:'repository_version' => :'repository_version',
|
|
47
46
|
:'pulp_created' => :'pulp_created',
|
|
48
47
|
:'name' => :'name',
|
|
48
|
+
:'repository' => :'repository',
|
|
49
49
|
:'base_path' => :'base_path',
|
|
50
50
|
:'registry_path' => :'registry_path'
|
|
51
51
|
}
|
|
@@ -56,10 +56,10 @@ module PulpContainerClient
|
|
|
56
56
|
{
|
|
57
57
|
:'content_guard' => :'String',
|
|
58
58
|
:'pulp_href' => :'String',
|
|
59
|
-
:'repository' => :'String',
|
|
60
59
|
:'repository_version' => :'String',
|
|
61
60
|
:'pulp_created' => :'DateTime',
|
|
62
61
|
:'name' => :'String',
|
|
62
|
+
:'repository' => :'String',
|
|
63
63
|
:'base_path' => :'String',
|
|
64
64
|
:'registry_path' => :'String'
|
|
65
65
|
}
|
|
@@ -69,8 +69,8 @@ module PulpContainerClient
|
|
|
69
69
|
def self.openapi_nullable
|
|
70
70
|
Set.new([
|
|
71
71
|
:'content_guard',
|
|
72
|
-
:'repository',
|
|
73
72
|
:'repository_version',
|
|
73
|
+
:'repository',
|
|
74
74
|
])
|
|
75
75
|
end
|
|
76
76
|
|
|
@@ -97,10 +97,6 @@ module PulpContainerClient
|
|
|
97
97
|
self.pulp_href = attributes[:'pulp_href']
|
|
98
98
|
end
|
|
99
99
|
|
|
100
|
-
if attributes.key?(:'repository')
|
|
101
|
-
self.repository = attributes[:'repository']
|
|
102
|
-
end
|
|
103
|
-
|
|
104
100
|
if attributes.key?(:'repository_version')
|
|
105
101
|
self.repository_version = attributes[:'repository_version']
|
|
106
102
|
end
|
|
@@ -113,6 +109,10 @@ module PulpContainerClient
|
|
|
113
109
|
self.name = attributes[:'name']
|
|
114
110
|
end
|
|
115
111
|
|
|
112
|
+
if attributes.key?(:'repository')
|
|
113
|
+
self.repository = attributes[:'repository']
|
|
114
|
+
end
|
|
115
|
+
|
|
116
116
|
if attributes.key?(:'base_path')
|
|
117
117
|
self.base_path = attributes[:'base_path']
|
|
118
118
|
end
|
|
@@ -205,10 +205,10 @@ module PulpContainerClient
|
|
|
205
205
|
self.class == o.class &&
|
|
206
206
|
content_guard == o.content_guard &&
|
|
207
207
|
pulp_href == o.pulp_href &&
|
|
208
|
-
repository == o.repository &&
|
|
209
208
|
repository_version == o.repository_version &&
|
|
210
209
|
pulp_created == o.pulp_created &&
|
|
211
210
|
name == o.name &&
|
|
211
|
+
repository == o.repository &&
|
|
212
212
|
base_path == o.base_path &&
|
|
213
213
|
registry_path == o.registry_path
|
|
214
214
|
end
|
|
@@ -222,7 +222,7 @@ module PulpContainerClient
|
|
|
222
222
|
# Calculates hash code according to all attributes.
|
|
223
223
|
# @return [Integer] Hash code
|
|
224
224
|
def hash
|
|
225
|
-
[content_guard, pulp_href,
|
|
225
|
+
[content_guard, pulp_href, repository_version, pulp_created, name, repository, base_path, registry_path].hash
|
|
226
226
|
end
|
|
227
227
|
|
|
228
228
|
# Builds the object from hash
|
|
@@ -24,7 +24,7 @@ Gem::Specification.new do |s|
|
|
|
24
24
|
s.homepage = "https://openapi-generator.tech"
|
|
25
25
|
s.summary = "Pulp 3 API Ruby Gem"
|
|
26
26
|
s.description = "No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)"
|
|
27
|
-
s.license = 'GPL-2.0'
|
|
27
|
+
s.license = 'GPL-2.0+'
|
|
28
28
|
s.required_ruby_version = ">= 1.9"
|
|
29
29
|
|
|
30
30
|
s.add_runtime_dependency 'faraday', '>= 0.14.0'
|
|
@@ -44,25 +44,25 @@ describe 'ContainerContainerDistribution' do
|
|
|
44
44
|
end
|
|
45
45
|
end
|
|
46
46
|
|
|
47
|
-
describe 'test attribute "
|
|
47
|
+
describe 'test attribute "repository_version"' 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 "pulp_created"' 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
|
|
63
63
|
end
|
|
64
64
|
|
|
65
|
-
describe 'test attribute "
|
|
65
|
+
describe 'test attribute "repository"' 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
|
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: 1.1.0.
|
|
4
|
+
version: 1.1.0.dev01577122358
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- OpenAPI-Generator
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-12-
|
|
11
|
+
date: 2019-12-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: faraday
|
|
@@ -173,7 +173,7 @@ files:
|
|
|
173
173
|
- spec/spec_helper.rb
|
|
174
174
|
homepage: https://openapi-generator.tech
|
|
175
175
|
licenses:
|
|
176
|
-
- GPL-2.0
|
|
176
|
+
- GPL-2.0+
|
|
177
177
|
metadata: {}
|
|
178
178
|
post_install_message:
|
|
179
179
|
rdoc_options: []
|