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.
Files changed (43) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +4 -4
  3. data/docs/ArtifactDistributionResponse.md +15 -15
  4. data/docs/DistributionsOpenpgpApi.md +10 -10
  5. data/docs/DomainsApi.md +9 -9
  6. data/docs/ExportersFilesystemApi.md +10 -10
  7. data/docs/ExportersPulpApi.md +10 -10
  8. data/docs/FilesystemExporter.md +1 -1
  9. data/docs/FilesystemExporterResponse.md +1 -1
  10. data/docs/MinimalTaskResponse.md +1 -1
  11. data/docs/PatchedFilesystemExporter.md +1 -1
  12. data/docs/PatchedPulpExporter.md +1 -1
  13. data/docs/PulpExporter.md +1 -1
  14. data/docs/PulpExporterResponse.md +1 -1
  15. data/docs/Purge.md +1 -1
  16. data/docs/RepositoriesOpenpgpKeyringApi.md +10 -10
  17. data/docs/TaskResponse.md +1 -1
  18. data/docs/TasksApi.md +0 -4
  19. data/lib/pulpcore_client/api/distributions_openpgp_api.rb +10 -10
  20. data/lib/pulpcore_client/api/domains_api.rb +8 -8
  21. data/lib/pulpcore_client/api/exporters_filesystem_api.rb +10 -10
  22. data/lib/pulpcore_client/api/exporters_pulp_api.rb +10 -10
  23. data/lib/pulpcore_client/api/repositories_openpgp_keyring_api.rb +10 -10
  24. data/lib/pulpcore_client/api/tasks_api.rb +0 -6
  25. data/lib/pulpcore_client/models/artifact_distribution_response.rb +68 -68
  26. data/lib/pulpcore_client/models/filesystem_exporter.rb +1 -1
  27. data/lib/pulpcore_client/models/filesystem_exporter_response.rb +1 -1
  28. data/lib/pulpcore_client/models/minimal_task_response.rb +2 -1
  29. data/lib/pulpcore_client/models/patched_filesystem_exporter.rb +1 -1
  30. data/lib/pulpcore_client/models/patched_pulp_exporter.rb +1 -1
  31. data/lib/pulpcore_client/models/pulp_exporter.rb +1 -1
  32. data/lib/pulpcore_client/models/pulp_exporter_response.rb +1 -1
  33. data/lib/pulpcore_client/models/purge.rb +1 -1
  34. data/lib/pulpcore_client/models/task_response.rb +3 -1
  35. data/lib/pulpcore_client/version.rb +1 -1
  36. data/spec/api/distributions_openpgp_api_spec.rb +4 -4
  37. data/spec/api/domains_api_spec.rb +3 -3
  38. data/spec/api/exporters_filesystem_api_spec.rb +4 -4
  39. data/spec/api/exporters_pulp_api_spec.rb +4 -4
  40. data/spec/api/repositories_openpgp_keyring_api_spec.rb +4 -4
  41. data/spec/api/tasks_api_spec.rb +0 -2
  42. data/spec/models/artifact_distribution_response_spec.rb +10 -10
  43. 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 file system exporter.
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 file system exporter.
19
+ # Unique name of the exporter.
20
20
  attr_accessor :name
21
21
 
22
22
  # File system directory to store exported tar.gzs.
@@ -16,7 +16,7 @@ require 'time'
16
16
  module PulpcoreClient
17
17
  # Serializer for pulp exporters.
18
18
  class PulpExporter
19
- # Unique name of the file system exporter.
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 file system exporter.
30
+ # Unique name of the exporter.
31
31
  attr_accessor :name
32
32
 
33
33
  # File system directory to store exported tar.gzs.
@@ -66,7 +66,7 @@ module PulpcoreClient
66
66
  if attributes.key?(:'finished_before')
67
67
  self.finished_before = attributes[:'finished_before']
68
68
  else
69
- self.finished_before = '2025-08-19'
69
+ self.finished_before = '2025-08-24'
70
70
  end
71
71
 
72
72
  if attributes.key?(:'states')
@@ -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
- # The worker associated with this task. This field is empty if a worker is not yet assigned.
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
@@ -11,5 +11,5 @@ Generator version: 7.10.0
11
11
  =end
12
12
 
13
13
  module PulpcoreClient
14
- VERSION = '3.89.1'
14
+ VERSION = '3.90.0'
15
15
  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
- # Trigger an asynchronous partial update task
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 [AsyncOperationResponse]
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
- # Trigger an asynchronous update task
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 [AsyncOperationResponse]
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
- # Trigger an asynchronous partial update task
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 [AsyncOperationResponse]
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 [AsyncOperationResponse]
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
- # Trigger an asynchronous partial update task
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 [AsyncOperationResponse]
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
- # Trigger an asynchronous update task
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 [AsyncOperationResponse]
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
- # Trigger an asynchronous partial update task
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 [AsyncOperationResponse]
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
- # Trigger an asynchronous update task
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 [AsyncOperationResponse]
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
- # Trigger an asynchronous partial update task
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 [AsyncOperationResponse]
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
- # Trigger an asynchronous update task
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 [AsyncOperationResponse]
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/
@@ -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 "pulp_labels"' do
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 "prn"' do
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 "pulp_last_updated"' do
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 "pulp_href"' do
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 "base_url"' do
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 "content_guard"' do
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 "pulp_created"' do
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 "hidden"' do
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 "no_content_change_since"' do
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 "base_path"' do
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.89.1
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-18 00:00:00.000000000 Z
11
+ date: 2025-09-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday