pulpcore_client 3.89.1 → 3.90.0
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 +15 -15
- data/docs/DistributionsOpenpgpApi.md +10 -10
- data/docs/DomainsApi.md +9 -9
- data/docs/ExportersFilesystemApi.md +10 -10
- data/docs/ExportersPulpApi.md +10 -10
- data/docs/FilesystemExporter.md +1 -1
- data/docs/FilesystemExporterResponse.md +1 -1
- data/docs/MinimalTaskResponse.md +1 -1
- data/docs/PatchedFilesystemExporter.md +1 -1
- data/docs/PatchedPulpExporter.md +1 -1
- data/docs/PulpExporter.md +1 -1
- data/docs/PulpExporterResponse.md +1 -1
- data/docs/Purge.md +1 -1
- data/docs/RepositoriesOpenpgpKeyringApi.md +10 -10
- data/docs/TaskResponse.md +1 -1
- data/docs/TasksApi.md +0 -4
- data/lib/pulpcore_client/api/distributions_openpgp_api.rb +10 -10
- data/lib/pulpcore_client/api/domains_api.rb +8 -8
- data/lib/pulpcore_client/api/exporters_filesystem_api.rb +10 -10
- data/lib/pulpcore_client/api/exporters_pulp_api.rb +10 -10
- data/lib/pulpcore_client/api/repositories_openpgp_keyring_api.rb +10 -10
- data/lib/pulpcore_client/api/tasks_api.rb +0 -6
- data/lib/pulpcore_client/models/artifact_distribution_response.rb +68 -68
- data/lib/pulpcore_client/models/filesystem_exporter.rb +1 -1
- data/lib/pulpcore_client/models/filesystem_exporter_response.rb +1 -1
- data/lib/pulpcore_client/models/minimal_task_response.rb +2 -1
- data/lib/pulpcore_client/models/patched_filesystem_exporter.rb +1 -1
- data/lib/pulpcore_client/models/patched_pulp_exporter.rb +1 -1
- data/lib/pulpcore_client/models/pulp_exporter.rb +1 -1
- data/lib/pulpcore_client/models/pulp_exporter_response.rb +1 -1
- data/lib/pulpcore_client/models/purge.rb +1 -1
- data/lib/pulpcore_client/models/task_response.rb +3 -1
- data/lib/pulpcore_client/version.rb +1 -1
- data/spec/api/distributions_openpgp_api_spec.rb +4 -4
- data/spec/api/domains_api_spec.rb +3 -3
- data/spec/api/exporters_filesystem_api_spec.rb +4 -4
- data/spec/api/exporters_pulp_api_spec.rb +4 -4
- data/spec/api/repositories_openpgp_keyring_api_spec.rb +4 -4
- data/spec/api/tasks_api_spec.rb +0 -2
- data/spec/models/artifact_distribution_response_spec.rb +10 -10
- metadata +2 -2
@@ -16,7 +16,7 @@ require 'time'
|
|
16
16
|
module PulpcoreClient
|
17
17
|
# Serializer for FilesystemExporters.
|
18
18
|
class PatchedFilesystemExporter
|
19
|
-
# Unique name of the
|
19
|
+
# Unique name of the exporter.
|
20
20
|
attr_accessor :name
|
21
21
|
|
22
22
|
# File system location to export to.
|
@@ -16,7 +16,7 @@ require 'time'
|
|
16
16
|
module PulpcoreClient
|
17
17
|
# Serializer for pulp exporters.
|
18
18
|
class PatchedPulpExporter
|
19
|
-
# Unique name of the
|
19
|
+
# Unique name of the exporter.
|
20
20
|
attr_accessor :name
|
21
21
|
|
22
22
|
# File system directory to store exported tar.gzs.
|
@@ -27,7 +27,7 @@ module PulpcoreClient
|
|
27
27
|
# Timestamp of the last time this resource was updated. Note: for immutable resources - like content, repository versions, and publication - pulp_created and pulp_last_updated dates will be the same.
|
28
28
|
attr_accessor :pulp_last_updated
|
29
29
|
|
30
|
-
# Unique name of the
|
30
|
+
# Unique name of the exporter.
|
31
31
|
attr_accessor :name
|
32
32
|
|
33
33
|
# File system directory to store exported tar.gzs.
|
@@ -51,7 +51,7 @@ module PulpcoreClient
|
|
51
51
|
# A JSON Object of a fatal error encountered during the execution of this task.
|
52
52
|
attr_accessor :error
|
53
53
|
|
54
|
-
#
|
54
|
+
# DEPRECATED - Always null
|
55
55
|
attr_accessor :worker
|
56
56
|
|
57
57
|
# The parent task that spawned this task.
|
@@ -133,6 +133,8 @@ module PulpcoreClient
|
|
133
133
|
# List of attributes with nullable: true
|
134
134
|
def self.openapi_nullable
|
135
135
|
Set.new([
|
136
|
+
:'created_by',
|
137
|
+
:'worker',
|
136
138
|
:'result'
|
137
139
|
])
|
138
140
|
end
|
@@ -84,12 +84,12 @@ describe 'DistributionsOpenpgpApi' do
|
|
84
84
|
|
85
85
|
# unit tests for partial_update
|
86
86
|
# Update an open pgp distribution
|
87
|
-
#
|
87
|
+
# Update the entity partially and trigger an asynchronous task if necessary
|
88
88
|
# @param open_p_g_p_distribution_href
|
89
89
|
# @param patched_open_pgp_distribution
|
90
90
|
# @param [Hash] opts the optional parameters
|
91
91
|
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
92
|
-
# @return [
|
92
|
+
# @return [OpenPGPDistributionResponse]
|
93
93
|
describe 'partial_update test' do
|
94
94
|
it 'should work' do
|
95
95
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
@@ -141,12 +141,12 @@ describe 'DistributionsOpenpgpApi' do
|
|
141
141
|
|
142
142
|
# unit tests for update
|
143
143
|
# Update an open pgp distribution
|
144
|
-
#
|
144
|
+
# Update the entity and trigger an asynchronous task if necessary
|
145
145
|
# @param open_p_g_p_distribution_href
|
146
146
|
# @param open_pgp_distribution
|
147
147
|
# @param [Hash] opts the optional parameters
|
148
148
|
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
149
|
-
# @return [
|
149
|
+
# @return [OpenPGPDistributionResponse]
|
150
150
|
describe 'update test' do
|
151
151
|
it 'should work' do
|
152
152
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
@@ -104,12 +104,12 @@ describe 'DomainsApi' do
|
|
104
104
|
|
105
105
|
# unit tests for partial_update
|
106
106
|
# Update a domain
|
107
|
-
#
|
107
|
+
# Update the entity partially and trigger an asynchronous task if necessary
|
108
108
|
# @param domain_href
|
109
109
|
# @param patched_domain
|
110
110
|
# @param [Hash] opts the optional parameters
|
111
111
|
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
112
|
-
# @return [
|
112
|
+
# @return [DomainResponse]
|
113
113
|
describe 'partial_update test' do
|
114
114
|
it 'should work' do
|
115
115
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
@@ -166,7 +166,7 @@ describe 'DomainsApi' do
|
|
166
166
|
# @param domain
|
167
167
|
# @param [Hash] opts the optional parameters
|
168
168
|
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
169
|
-
# @return [
|
169
|
+
# @return [DomainResponse]
|
170
170
|
describe 'update test' do
|
171
171
|
it 'should work' do
|
172
172
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
@@ -90,12 +90,12 @@ describe 'ExportersFilesystemApi' do
|
|
90
90
|
|
91
91
|
# unit tests for partial_update
|
92
92
|
# Update a filesystem exporter
|
93
|
-
#
|
93
|
+
# Update the entity partially and trigger an asynchronous task if necessary
|
94
94
|
# @param filesystem_exporter_href
|
95
95
|
# @param patched_filesystem_exporter
|
96
96
|
# @param [Hash] opts the optional parameters
|
97
97
|
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
98
|
-
# @return [
|
98
|
+
# @return [FilesystemExporterResponse]
|
99
99
|
describe 'partial_update test' do
|
100
100
|
it 'should work' do
|
101
101
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
@@ -119,12 +119,12 @@ describe 'ExportersFilesystemApi' do
|
|
119
119
|
|
120
120
|
# unit tests for update
|
121
121
|
# Update a filesystem exporter
|
122
|
-
#
|
122
|
+
# Update the entity and trigger an asynchronous task if necessary
|
123
123
|
# @param filesystem_exporter_href
|
124
124
|
# @param filesystem_exporter
|
125
125
|
# @param [Hash] opts the optional parameters
|
126
126
|
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
127
|
-
# @return [
|
127
|
+
# @return [FilesystemExporterResponse]
|
128
128
|
describe 'update test' do
|
129
129
|
it 'should work' do
|
130
130
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
@@ -90,12 +90,12 @@ describe 'ExportersPulpApi' do
|
|
90
90
|
|
91
91
|
# unit tests for partial_update
|
92
92
|
# Update a pulp exporter
|
93
|
-
#
|
93
|
+
# Update the entity partially and trigger an asynchronous task if necessary
|
94
94
|
# @param pulp_exporter_href
|
95
95
|
# @param patched_pulp_exporter
|
96
96
|
# @param [Hash] opts the optional parameters
|
97
97
|
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
98
|
-
# @return [
|
98
|
+
# @return [PulpExporterResponse]
|
99
99
|
describe 'partial_update test' do
|
100
100
|
it 'should work' do
|
101
101
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
@@ -119,12 +119,12 @@ describe 'ExportersPulpApi' do
|
|
119
119
|
|
120
120
|
# unit tests for update
|
121
121
|
# Update a pulp exporter
|
122
|
-
#
|
122
|
+
# Update the entity and trigger an asynchronous task if necessary
|
123
123
|
# @param pulp_exporter_href
|
124
124
|
# @param pulp_exporter
|
125
125
|
# @param [Hash] opts the optional parameters
|
126
126
|
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
127
|
-
# @return [
|
127
|
+
# @return [PulpExporterResponse]
|
128
128
|
describe 'update test' do
|
129
129
|
it 'should work' do
|
130
130
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
@@ -160,12 +160,12 @@ describe 'RepositoriesOpenpgpKeyringApi' do
|
|
160
160
|
|
161
161
|
# unit tests for partial_update
|
162
162
|
# Update an open pgp keyring
|
163
|
-
#
|
163
|
+
# Update the entity partially and trigger an asynchronous task if necessary
|
164
164
|
# @param open_p_g_p_keyring_href
|
165
165
|
# @param patched_open_pgp_keyring
|
166
166
|
# @param [Hash] opts the optional parameters
|
167
167
|
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
168
|
-
# @return [
|
168
|
+
# @return [OpenPGPKeyringResponse]
|
169
169
|
describe 'partial_update test' do
|
170
170
|
it 'should work' do
|
171
171
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
@@ -231,12 +231,12 @@ describe 'RepositoriesOpenpgpKeyringApi' do
|
|
231
231
|
|
232
232
|
# unit tests for update
|
233
233
|
# Update an open pgp keyring
|
234
|
-
#
|
234
|
+
# Update the entity and trigger an asynchronous task if necessary
|
235
235
|
# @param open_p_g_p_keyring_href
|
236
236
|
# @param open_pgp_keyring
|
237
237
|
# @param [Hash] opts the optional parameters
|
238
238
|
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
239
|
-
# @return [
|
239
|
+
# @return [OpenPGPKeyringResponse]
|
240
240
|
describe 'update test' do
|
241
241
|
it 'should work' do
|
242
242
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
data/spec/api/tasks_api_spec.rb
CHANGED
@@ -119,8 +119,6 @@ describe 'TasksApi' do
|
|
119
119
|
# @option opts [Time] :unblocked_at__lte Filter results where unblocked_at is less than or equal to value
|
120
120
|
# @option opts [Array<Time>] :unblocked_at__range Filter results where unblocked_at is between two comma separated values
|
121
121
|
# @option opts [String] :worker
|
122
|
-
# @option opts [Array<String>] :worker__in Filter results where worker is in a comma-separated list of values
|
123
|
-
# @option opts [Boolean] :worker__isnull Filter results where worker has a null value
|
124
122
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
125
123
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
126
124
|
# @return [PaginatedTaskResponseList]
|
@@ -27,13 +27,13 @@ describe PulpcoreClient::ArtifactDistributionResponse do
|
|
27
27
|
end
|
28
28
|
end
|
29
29
|
|
30
|
-
describe 'test attribute "
|
30
|
+
describe 'test attribute "pulp_href"' do
|
31
31
|
it 'should work' do
|
32
32
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
33
33
|
end
|
34
34
|
end
|
35
35
|
|
36
|
-
describe 'test attribute "
|
36
|
+
describe 'test attribute "base_url"' do
|
37
37
|
it 'should work' do
|
38
38
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
39
39
|
end
|
@@ -45,49 +45,49 @@ describe PulpcoreClient::ArtifactDistributionResponse do
|
|
45
45
|
end
|
46
46
|
end
|
47
47
|
|
48
|
-
describe 'test attribute "
|
48
|
+
describe 'test attribute "no_content_change_since"' do
|
49
49
|
it 'should work' do
|
50
50
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
51
51
|
end
|
52
52
|
end
|
53
53
|
|
54
|
-
describe 'test attribute "
|
54
|
+
describe 'test attribute "hidden"' do
|
55
55
|
it 'should work' do
|
56
56
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
57
57
|
end
|
58
58
|
end
|
59
59
|
|
60
|
-
describe 'test attribute "
|
60
|
+
describe 'test attribute "pulp_created"' do
|
61
61
|
it 'should work' do
|
62
62
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
63
63
|
end
|
64
64
|
end
|
65
65
|
|
66
|
-
describe 'test attribute "
|
66
|
+
describe 'test attribute "base_path"' do
|
67
67
|
it 'should work' do
|
68
68
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
69
69
|
end
|
70
70
|
end
|
71
71
|
|
72
|
-
describe 'test attribute "
|
72
|
+
describe 'test attribute "content_guard"' do
|
73
73
|
it 'should work' do
|
74
74
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
75
75
|
end
|
76
76
|
end
|
77
77
|
|
78
|
-
describe 'test attribute "
|
78
|
+
describe 'test attribute "pulp_labels"' do
|
79
79
|
it 'should work' do
|
80
80
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
81
81
|
end
|
82
82
|
end
|
83
83
|
|
84
|
-
describe 'test attribute "
|
84
|
+
describe 'test attribute "prn"' do
|
85
85
|
it 'should work' do
|
86
86
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
87
87
|
end
|
88
88
|
end
|
89
89
|
|
90
|
-
describe 'test attribute "
|
90
|
+
describe 'test attribute "pulp_last_updated"' do
|
91
91
|
it 'should work' do
|
92
92
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
93
93
|
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.
|
4
|
+
version: 3.90.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- OpenAPI-Generator
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-09-
|
11
|
+
date: 2025-09-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|