pulpcore_client 3.29.3 → 3.29.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/ArtifactDistributionResponse.md +9 -9
- data/docs/UpstreamPulpsApi.md +2 -2
- data/lib/pulpcore_client/api/upstream_pulps_api.rb +3 -3
- data/lib/pulpcore_client/models/artifact_distribution_response.rb +45 -45
- data/lib/pulpcore_client/version.rb +1 -1
- data/spec/api/upstream_pulps_api_spec.rb +1 -1
- data/spec/models/artifact_distribution_response_spec.rb +8 -8
- 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: 90558ceb7197ab4fc1681b603dc2bed9d7ee6ef8610acbeddea258845ebcb8c1
|
4
|
+
data.tar.gz: d1564701a5997cc6f0a80e3a58b6656d4697c3c5a036fc5b5c8d4a49bd217d67
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 71ad886d875881675166c74e5017bfa7f3b2cbea3dcff5a225f76282572b14a257d01aa0e9b854f560c3e796cdf6f04ea994433c127b54f29d8932c946f1651f
|
7
|
+
data.tar.gz: 72e211f389b1e2de1ea8f116a4ab168889555b0291d42b8d1ea4e626ab55255d0a46c8334d0934b6212f82f12f323c8398bf796bc0ba04494687bc86e0948f05
|
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: 3.29.
|
10
|
+
- Package version: 3.29.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 pulpcore_client.gemspec
|
|
24
24
|
Then either install the gem locally:
|
25
25
|
|
26
26
|
```shell
|
27
|
-
gem install ./pulpcore_client-3.29.
|
27
|
+
gem install ./pulpcore_client-3.29.4.gem
|
28
28
|
```
|
29
29
|
|
30
|
-
(for development, run `gem install --dev ./pulpcore_client-3.29.
|
30
|
+
(for development, run `gem install --dev ./pulpcore_client-3.29.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 'pulpcore_client', '~> 3.29.
|
36
|
+
gem 'pulpcore_client', '~> 3.29.4'
|
37
37
|
|
38
38
|
### Install from Git
|
39
39
|
|
@@ -4,28 +4,28 @@
|
|
4
4
|
|
5
5
|
Name | Type | Description | Notes
|
6
6
|
------------ | ------------- | ------------- | -------------
|
7
|
-
**
|
7
|
+
**content_guard** | **String** | An optional content-guard. | [optional]
|
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
|
+
**base_url** | **String** | The URL for accessing the publication as defined by this distribution. | [optional] [readonly]
|
8
10
|
**hidden** | **Boolean** | Whether this distribution should be shown in the content app. | [optional] [default to false]
|
11
|
+
**pulp_href** | **String** | | [optional] [readonly]
|
9
12
|
**pulp_labels** | **Hash<String, String>** | | [optional]
|
10
13
|
**name** | **String** | A unique name. Ex, `rawhide` and `stable`. |
|
11
|
-
**content_guard** | **String** | An optional content-guard. | [optional]
|
12
14
|
**pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
|
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
|
-
**base_url** | **String** | The URL for accessing the publication as defined by this distribution. | [optional] [readonly]
|
15
15
|
|
16
16
|
## Code Sample
|
17
17
|
|
18
18
|
```ruby
|
19
19
|
require 'PulpcoreClient'
|
20
20
|
|
21
|
-
instance = PulpcoreClient::ArtifactDistributionResponse.new(
|
21
|
+
instance = PulpcoreClient::ArtifactDistributionResponse.new(content_guard: null,
|
22
|
+
base_path: null,
|
23
|
+
base_url: null,
|
22
24
|
hidden: null,
|
25
|
+
pulp_href: null,
|
23
26
|
pulp_labels: null,
|
24
27
|
name: null,
|
25
|
-
|
26
|
-
pulp_created: null,
|
27
|
-
base_path: null,
|
28
|
-
base_url: null)
|
28
|
+
pulp_created: null)
|
29
29
|
```
|
30
30
|
|
31
31
|
|
data/docs/UpstreamPulpsApi.md
CHANGED
@@ -296,7 +296,7 @@ Name | Type | Description | Notes
|
|
296
296
|
|
297
297
|
## replicate
|
298
298
|
|
299
|
-
>
|
299
|
+
> TaskGroupOperationResponse replicate(upstream_pulp_href)
|
300
300
|
|
301
301
|
Replicate
|
302
302
|
|
@@ -335,7 +335,7 @@ Name | Type | Description | Notes
|
|
335
335
|
|
336
336
|
### Return type
|
337
337
|
|
338
|
-
[**
|
338
|
+
[**TaskGroupOperationResponse**](TaskGroupOperationResponse.md)
|
339
339
|
|
340
340
|
### Authorization
|
341
341
|
|
@@ -353,7 +353,7 @@ module PulpcoreClient
|
|
353
353
|
# Trigger an asynchronous repository replication task group. This API is provided as a tech preview.
|
354
354
|
# @param upstream_pulp_href [String]
|
355
355
|
# @param [Hash] opts the optional parameters
|
356
|
-
# @return [
|
356
|
+
# @return [TaskGroupOperationResponse]
|
357
357
|
def replicate(upstream_pulp_href, opts = {})
|
358
358
|
data, _status_code, _headers = replicate_with_http_info(upstream_pulp_href, opts)
|
359
359
|
data
|
@@ -363,7 +363,7 @@ module PulpcoreClient
|
|
363
363
|
# Trigger an asynchronous repository replication task group. This API is provided as a tech preview.
|
364
364
|
# @param upstream_pulp_href [String]
|
365
365
|
# @param [Hash] opts the optional parameters
|
366
|
-
# @return [Array<(
|
366
|
+
# @return [Array<(TaskGroupOperationResponse, Integer, Hash)>] TaskGroupOperationResponse data, response status code and response headers
|
367
367
|
def replicate_with_http_info(upstream_pulp_href, opts = {})
|
368
368
|
if @api_client.config.debugging
|
369
369
|
@api_client.config.logger.debug 'Calling API: UpstreamPulpsApi.replicate ...'
|
@@ -390,7 +390,7 @@ module PulpcoreClient
|
|
390
390
|
post_body = opts[:body]
|
391
391
|
|
392
392
|
# return_type
|
393
|
-
return_type = opts[:return_type] || '
|
393
|
+
return_type = opts[:return_type] || 'TaskGroupOperationResponse'
|
394
394
|
|
395
395
|
# auth_names
|
396
396
|
auth_names = opts[:auth_names] || ['basicAuth']
|
@@ -15,53 +15,53 @@ require 'date'
|
|
15
15
|
module PulpcoreClient
|
16
16
|
# A serializer for ArtifactDistribution.
|
17
17
|
class ArtifactDistributionResponse
|
18
|
-
|
18
|
+
# An optional content-guard.
|
19
|
+
attr_accessor :content_guard
|
20
|
+
|
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\")
|
22
|
+
attr_accessor :base_path
|
23
|
+
|
24
|
+
# The URL for accessing the publication as defined by this distribution.
|
25
|
+
attr_accessor :base_url
|
19
26
|
|
20
27
|
# Whether this distribution should be shown in the content app.
|
21
28
|
attr_accessor :hidden
|
22
29
|
|
30
|
+
attr_accessor :pulp_href
|
31
|
+
|
23
32
|
attr_accessor :pulp_labels
|
24
33
|
|
25
34
|
# A unique name. Ex, `rawhide` and `stable`.
|
26
35
|
attr_accessor :name
|
27
36
|
|
28
|
-
# An optional content-guard.
|
29
|
-
attr_accessor :content_guard
|
30
|
-
|
31
37
|
# Timestamp of creation.
|
32
38
|
attr_accessor :pulp_created
|
33
39
|
|
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
|
-
attr_accessor :base_path
|
36
|
-
|
37
|
-
# The URL for accessing the publication as defined by this distribution.
|
38
|
-
attr_accessor :base_url
|
39
|
-
|
40
40
|
# Attribute mapping from ruby-style variable name to JSON key.
|
41
41
|
def self.attribute_map
|
42
42
|
{
|
43
|
-
:'
|
43
|
+
:'content_guard' => :'content_guard',
|
44
|
+
:'base_path' => :'base_path',
|
45
|
+
:'base_url' => :'base_url',
|
44
46
|
:'hidden' => :'hidden',
|
47
|
+
:'pulp_href' => :'pulp_href',
|
45
48
|
:'pulp_labels' => :'pulp_labels',
|
46
49
|
:'name' => :'name',
|
47
|
-
:'
|
48
|
-
:'pulp_created' => :'pulp_created',
|
49
|
-
:'base_path' => :'base_path',
|
50
|
-
:'base_url' => :'base_url'
|
50
|
+
:'pulp_created' => :'pulp_created'
|
51
51
|
}
|
52
52
|
end
|
53
53
|
|
54
54
|
# Attribute type mapping.
|
55
55
|
def self.openapi_types
|
56
56
|
{
|
57
|
-
:'
|
57
|
+
:'content_guard' => :'String',
|
58
|
+
:'base_path' => :'String',
|
59
|
+
:'base_url' => :'String',
|
58
60
|
:'hidden' => :'Boolean',
|
61
|
+
:'pulp_href' => :'String',
|
59
62
|
:'pulp_labels' => :'Hash<String, String>',
|
60
63
|
:'name' => :'String',
|
61
|
-
:'
|
62
|
-
:'pulp_created' => :'DateTime',
|
63
|
-
:'base_path' => :'String',
|
64
|
-
:'base_url' => :'String'
|
64
|
+
:'pulp_created' => :'DateTime'
|
65
65
|
}
|
66
66
|
end
|
67
67
|
|
@@ -87,8 +87,16 @@ module PulpcoreClient
|
|
87
87
|
h[k.to_sym] = v
|
88
88
|
}
|
89
89
|
|
90
|
-
if attributes.key?(:'
|
91
|
-
self.
|
90
|
+
if attributes.key?(:'content_guard')
|
91
|
+
self.content_guard = attributes[:'content_guard']
|
92
|
+
end
|
93
|
+
|
94
|
+
if attributes.key?(:'base_path')
|
95
|
+
self.base_path = attributes[:'base_path']
|
96
|
+
end
|
97
|
+
|
98
|
+
if attributes.key?(:'base_url')
|
99
|
+
self.base_url = attributes[:'base_url']
|
92
100
|
end
|
93
101
|
|
94
102
|
if attributes.key?(:'hidden')
|
@@ -97,6 +105,10 @@ module PulpcoreClient
|
|
97
105
|
self.hidden = false
|
98
106
|
end
|
99
107
|
|
108
|
+
if attributes.key?(:'pulp_href')
|
109
|
+
self.pulp_href = attributes[:'pulp_href']
|
110
|
+
end
|
111
|
+
|
100
112
|
if attributes.key?(:'pulp_labels')
|
101
113
|
if (value = attributes[:'pulp_labels']).is_a?(Hash)
|
102
114
|
self.pulp_labels = value
|
@@ -107,43 +119,31 @@ module PulpcoreClient
|
|
107
119
|
self.name = attributes[:'name']
|
108
120
|
end
|
109
121
|
|
110
|
-
if attributes.key?(:'content_guard')
|
111
|
-
self.content_guard = attributes[:'content_guard']
|
112
|
-
end
|
113
|
-
|
114
122
|
if attributes.key?(:'pulp_created')
|
115
123
|
self.pulp_created = attributes[:'pulp_created']
|
116
124
|
end
|
117
|
-
|
118
|
-
if attributes.key?(:'base_path')
|
119
|
-
self.base_path = attributes[:'base_path']
|
120
|
-
end
|
121
|
-
|
122
|
-
if attributes.key?(:'base_url')
|
123
|
-
self.base_url = attributes[:'base_url']
|
124
|
-
end
|
125
125
|
end
|
126
126
|
|
127
127
|
# Show invalid properties with the reasons. Usually used together with valid?
|
128
128
|
# @return Array for valid properties with the reasons
|
129
129
|
def list_invalid_properties
|
130
130
|
invalid_properties = Array.new
|
131
|
-
if @name.nil?
|
132
|
-
invalid_properties.push('invalid value for "name", name cannot be nil.')
|
133
|
-
end
|
134
|
-
|
135
131
|
if @base_path.nil?
|
136
132
|
invalid_properties.push('invalid value for "base_path", base_path cannot be nil.')
|
137
133
|
end
|
138
134
|
|
135
|
+
if @name.nil?
|
136
|
+
invalid_properties.push('invalid value for "name", name cannot be nil.')
|
137
|
+
end
|
138
|
+
|
139
139
|
invalid_properties
|
140
140
|
end
|
141
141
|
|
142
142
|
# Check to see if the all the properties in the model are valid
|
143
143
|
# @return true if the model is valid
|
144
144
|
def valid?
|
145
|
-
return false if @name.nil?
|
146
145
|
return false if @base_path.nil?
|
146
|
+
return false if @name.nil?
|
147
147
|
true
|
148
148
|
end
|
149
149
|
|
@@ -152,14 +152,14 @@ module PulpcoreClient
|
|
152
152
|
def ==(o)
|
153
153
|
return true if self.equal?(o)
|
154
154
|
self.class == o.class &&
|
155
|
-
|
155
|
+
content_guard == o.content_guard &&
|
156
|
+
base_path == o.base_path &&
|
157
|
+
base_url == o.base_url &&
|
156
158
|
hidden == o.hidden &&
|
159
|
+
pulp_href == o.pulp_href &&
|
157
160
|
pulp_labels == o.pulp_labels &&
|
158
161
|
name == o.name &&
|
159
|
-
|
160
|
-
pulp_created == o.pulp_created &&
|
161
|
-
base_path == o.base_path &&
|
162
|
-
base_url == o.base_url
|
162
|
+
pulp_created == o.pulp_created
|
163
163
|
end
|
164
164
|
|
165
165
|
# @see the `==` method
|
@@ -171,7 +171,7 @@ module PulpcoreClient
|
|
171
171
|
# Calculates hash code according to all attributes.
|
172
172
|
# @return [Integer] Hash code
|
173
173
|
def hash
|
174
|
-
[
|
174
|
+
[content_guard, base_path, base_url, hidden, pulp_href, pulp_labels, name, pulp_created].hash
|
175
175
|
end
|
176
176
|
|
177
177
|
# Builds the object from hash
|
@@ -103,7 +103,7 @@ describe 'UpstreamPulpsApi' do
|
|
103
103
|
# Trigger an asynchronous repository replication task group. This API is provided as a tech preview.
|
104
104
|
# @param upstream_pulp_href
|
105
105
|
# @param [Hash] opts the optional parameters
|
106
|
-
# @return [
|
106
|
+
# @return [TaskGroupOperationResponse]
|
107
107
|
describe 'replicate test' do
|
108
108
|
it 'should work' do
|
109
109
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -32,49 +32,49 @@ describe 'ArtifactDistributionResponse' do
|
|
32
32
|
expect(@instance).to be_instance_of(PulpcoreClient::ArtifactDistributionResponse)
|
33
33
|
end
|
34
34
|
end
|
35
|
-
describe 'test attribute "
|
35
|
+
describe 'test attribute "content_guard"' 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 "base_url"' 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 "hidden"' 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_href"' 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 "pulp_labels"' 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 "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
|
75
75
|
end
|
76
76
|
|
77
|
-
describe 'test attribute "
|
77
|
+
describe 'test attribute "pulp_created"' do
|
78
78
|
it 'should work' do
|
79
79
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
80
80
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pulpcore_client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.29.
|
4
|
+
version: 3.29.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: 2023-07-
|
11
|
+
date: 2023-07-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|