pulp_python_client 3.13.5 → 3.13.6
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 +5 -4
- data/docs/ContentPackagesApi.md +22 -8
- data/docs/DistributionsPypiApi.md +72 -32
- data/docs/PublicationsPypiApi.md +40 -16
- data/docs/PypiApi.md +2 -0
- data/docs/PypiLegacyApi.md +2 -0
- data/docs/PypiMetadataApi.md +2 -0
- data/docs/PypiSimpleApi.md +6 -0
- data/docs/RemotesPythonApi.md +74 -32
- data/docs/RepositoriesPythonApi.md +88 -40
- data/docs/RepositoriesPythonVersionsApi.md +22 -10
- data/lib/pulp_python_client/api/content_packages_api.rb +15 -0
- data/lib/pulp_python_client/api/distributions_pypi_api.rb +36 -0
- data/lib/pulp_python_client/api/publications_pypi_api.rb +24 -0
- data/lib/pulp_python_client/api/pypi_api.rb +3 -0
- data/lib/pulp_python_client/api/pypi_legacy_api.rb +3 -0
- data/lib/pulp_python_client/api/pypi_metadata_api.rb +3 -0
- data/lib/pulp_python_client/api/pypi_simple_api.rb +9 -0
- data/lib/pulp_python_client/api/remotes_python_api.rb +39 -0
- data/lib/pulp_python_client/api/repositories_python_api.rb +42 -0
- data/lib/pulp_python_client/api/repositories_python_versions_api.rb +15 -3
- data/lib/pulp_python_client/version.rb +1 -1
- data/spec/api/content_packages_api_spec.rb +5 -0
- data/spec/api/distributions_pypi_api_spec.rb +12 -0
- data/spec/api/publications_pypi_api_spec.rb +8 -0
- data/spec/api/pypi_api_spec.rb +1 -0
- data/spec/api/pypi_legacy_api_spec.rb +1 -0
- data/spec/api/pypi_metadata_api_spec.rb +1 -0
- data/spec/api/pypi_simple_api_spec.rb +3 -0
- data/spec/api/remotes_python_api_spec.rb +13 -0
- data/spec/api/repositories_python_api_spec.rb +14 -0
- data/spec/api/repositories_python_versions_api_spec.rb +5 -1
- metadata +38 -38
data/spec/api/pypi_api_spec.rb
CHANGED
|
@@ -37,6 +37,7 @@ describe 'PypiApi' do
|
|
|
37
37
|
# Gets package summary stats of index.
|
|
38
38
|
# @param path
|
|
39
39
|
# @param [Hash] opts the optional parameters
|
|
40
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
40
41
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
41
42
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
42
43
|
# @return [SummaryResponse]
|
|
@@ -39,6 +39,7 @@ describe 'PypiLegacyApi' do
|
|
|
39
39
|
# @param content A Python package release file to upload to the index.
|
|
40
40
|
# @param sha256_digest SHA256 of package to validate upload integrity.
|
|
41
41
|
# @param [Hash] opts the optional parameters
|
|
42
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
42
43
|
# @option opts [String] :action Defaults to `file_upload`, don't change it or request will fail!
|
|
43
44
|
# @return [PackageUploadTaskResponse]
|
|
44
45
|
describe 'create test' do
|
|
@@ -38,6 +38,7 @@ describe 'PypiMetadataApi' do
|
|
|
38
38
|
# @param meta
|
|
39
39
|
# @param path
|
|
40
40
|
# @param [Hash] opts the optional parameters
|
|
41
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
41
42
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
42
43
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
43
44
|
# @return [PackageMetadataResponse]
|
|
@@ -39,6 +39,7 @@ describe 'PypiSimpleApi' do
|
|
|
39
39
|
# @param content A Python package release file to upload to the index.
|
|
40
40
|
# @param sha256_digest SHA256 of package to validate upload integrity.
|
|
41
41
|
# @param [Hash] opts the optional parameters
|
|
42
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
42
43
|
# @option opts [String] :action Defaults to `file_upload`, don't change it or request will fail!
|
|
43
44
|
# @return [PackageUploadTaskResponse]
|
|
44
45
|
describe 'create test' do
|
|
@@ -53,6 +54,7 @@ describe 'PypiSimpleApi' do
|
|
|
53
54
|
# @param package
|
|
54
55
|
# @param path
|
|
55
56
|
# @param [Hash] opts the optional parameters
|
|
57
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
56
58
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
57
59
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
58
60
|
# @return [nil]
|
|
@@ -67,6 +69,7 @@ describe 'PypiSimpleApi' do
|
|
|
67
69
|
# Gets the simple api html page for the index.
|
|
68
70
|
# @param path
|
|
69
71
|
# @param [Hash] opts the optional parameters
|
|
72
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
70
73
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
71
74
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
72
75
|
# @return [nil]
|
|
@@ -38,6 +38,7 @@ describe 'RemotesPythonApi' do
|
|
|
38
38
|
# @param python_python_remote_href
|
|
39
39
|
# @param nested_role
|
|
40
40
|
# @param [Hash] opts the optional parameters
|
|
41
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
41
42
|
# @return [NestedRoleResponse]
|
|
42
43
|
describe 'add_role test' do
|
|
43
44
|
it 'should work' do
|
|
@@ -50,6 +51,7 @@ describe 'RemotesPythonApi' do
|
|
|
50
51
|
# Python Remotes are representations of an external repository of Python content, eg. PyPI. Fields include upstream repository config. Python Remotes are also used to `sync` from upstream repositories, and contains sync settings.
|
|
51
52
|
# @param python_python_remote
|
|
52
53
|
# @param [Hash] opts the optional parameters
|
|
54
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
53
55
|
# @return [PythonPythonRemoteResponse]
|
|
54
56
|
describe 'create test' do
|
|
55
57
|
it 'should work' do
|
|
@@ -62,6 +64,7 @@ describe 'RemotesPythonApi' do
|
|
|
62
64
|
# Trigger an asynchronous delete task
|
|
63
65
|
# @param python_python_remote_href
|
|
64
66
|
# @param [Hash] opts the optional parameters
|
|
67
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
65
68
|
# @return [AsyncOperationResponse]
|
|
66
69
|
describe 'delete test' do
|
|
67
70
|
it 'should work' do
|
|
@@ -75,6 +78,7 @@ describe 'RemotesPythonApi' do
|
|
|
75
78
|
# @param config A Bandersnatch config that may be used to construct a Python Remote.
|
|
76
79
|
# @param name A unique name for this remote
|
|
77
80
|
# @param [Hash] opts the optional parameters
|
|
81
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
78
82
|
# @option opts [PolicyEnum] :policy The policy to use when downloading content. The possible values include: 'immediate', 'on_demand', and 'streamed'. 'on_demand' is the default. * `immediate` - When syncing, download all metadata and content now. * `on_demand` - When syncing, download metadata, but do not download content now. Instead, download content as clients request it, and save it in Pulp to be served for future client requests. * `streamed` - When syncing, download metadata, but do not download content now. Instead,download content as clients request it, but never save it in Pulp. This causes future requests for that same content to have to be downloaded again.
|
|
79
83
|
# @return [PythonPythonRemoteResponse]
|
|
80
84
|
describe 'from_bandersnatch test' do
|
|
@@ -87,6 +91,7 @@ describe 'RemotesPythonApi' do
|
|
|
87
91
|
# List python remotes
|
|
88
92
|
# Python Remotes are representations of an external repository of Python content, eg. PyPI. Fields include upstream repository config. Python Remotes are also used to `sync` from upstream repositories, and contains sync settings.
|
|
89
93
|
# @param [Hash] opts the optional parameters
|
|
94
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
90
95
|
# @option opts [Integer] :limit Number of results to return per page.
|
|
91
96
|
# @option opts [String] :name Filter results where name matches value
|
|
92
97
|
# @option opts [String] :name__contains Filter results where name contains value
|
|
@@ -125,6 +130,7 @@ describe 'RemotesPythonApi' do
|
|
|
125
130
|
# List roles assigned to this object.
|
|
126
131
|
# @param python_python_remote_href
|
|
127
132
|
# @param [Hash] opts the optional parameters
|
|
133
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
128
134
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
129
135
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
130
136
|
# @return [ObjectRolesResponse]
|
|
@@ -139,6 +145,7 @@ describe 'RemotesPythonApi' do
|
|
|
139
145
|
# List permissions available to the current user on this object.
|
|
140
146
|
# @param python_python_remote_href
|
|
141
147
|
# @param [Hash] opts the optional parameters
|
|
148
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
142
149
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
143
150
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
144
151
|
# @return [MyPermissionsResponse]
|
|
@@ -154,6 +161,7 @@ describe 'RemotesPythonApi' do
|
|
|
154
161
|
# @param python_python_remote_href
|
|
155
162
|
# @param patchedpython_python_remote
|
|
156
163
|
# @param [Hash] opts the optional parameters
|
|
164
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
157
165
|
# @return [AsyncOperationResponse]
|
|
158
166
|
describe 'partial_update test' do
|
|
159
167
|
it 'should work' do
|
|
@@ -166,6 +174,7 @@ describe 'RemotesPythonApi' do
|
|
|
166
174
|
# Python Remotes are representations of an external repository of Python content, eg. PyPI. Fields include upstream repository config. Python Remotes are also used to `sync` from upstream repositories, and contains sync settings.
|
|
167
175
|
# @param python_python_remote_href
|
|
168
176
|
# @param [Hash] opts the optional parameters
|
|
177
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
169
178
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
170
179
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
171
180
|
# @return [PythonPythonRemoteResponse]
|
|
@@ -181,6 +190,7 @@ describe 'RemotesPythonApi' do
|
|
|
181
190
|
# @param python_python_remote_href
|
|
182
191
|
# @param nested_role
|
|
183
192
|
# @param [Hash] opts the optional parameters
|
|
193
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
184
194
|
# @return [NestedRoleResponse]
|
|
185
195
|
describe 'remove_role test' do
|
|
186
196
|
it 'should work' do
|
|
@@ -194,6 +204,7 @@ describe 'RemotesPythonApi' do
|
|
|
194
204
|
# @param python_python_remote_href
|
|
195
205
|
# @param set_label
|
|
196
206
|
# @param [Hash] opts the optional parameters
|
|
207
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
197
208
|
# @return [SetLabelResponse]
|
|
198
209
|
describe 'set_label test' do
|
|
199
210
|
it 'should work' do
|
|
@@ -207,6 +218,7 @@ describe 'RemotesPythonApi' do
|
|
|
207
218
|
# @param python_python_remote_href
|
|
208
219
|
# @param unset_label
|
|
209
220
|
# @param [Hash] opts the optional parameters
|
|
221
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
210
222
|
# @return [UnsetLabelResponse]
|
|
211
223
|
describe 'unset_label test' do
|
|
212
224
|
it 'should work' do
|
|
@@ -220,6 +232,7 @@ describe 'RemotesPythonApi' do
|
|
|
220
232
|
# @param python_python_remote_href
|
|
221
233
|
# @param python_python_remote
|
|
222
234
|
# @param [Hash] opts the optional parameters
|
|
235
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
223
236
|
# @return [AsyncOperationResponse]
|
|
224
237
|
describe 'update test' do
|
|
225
238
|
it 'should work' do
|
|
@@ -38,6 +38,7 @@ describe 'RepositoriesPythonApi' do
|
|
|
38
38
|
# @param python_python_repository_href
|
|
39
39
|
# @param nested_role
|
|
40
40
|
# @param [Hash] opts the optional parameters
|
|
41
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
41
42
|
# @return [NestedRoleResponse]
|
|
42
43
|
describe 'add_role test' do
|
|
43
44
|
it 'should work' do
|
|
@@ -50,6 +51,7 @@ describe 'RepositoriesPythonApi' do
|
|
|
50
51
|
# PythonRepository represents a single Python repository, to which content can be synced, added, or removed.
|
|
51
52
|
# @param python_python_repository
|
|
52
53
|
# @param [Hash] opts the optional parameters
|
|
54
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
53
55
|
# @return [PythonPythonRepositoryResponse]
|
|
54
56
|
describe 'create test' do
|
|
55
57
|
it 'should work' do
|
|
@@ -62,6 +64,7 @@ describe 'RepositoriesPythonApi' do
|
|
|
62
64
|
# Trigger an asynchronous delete task
|
|
63
65
|
# @param python_python_repository_href
|
|
64
66
|
# @param [Hash] opts the optional parameters
|
|
67
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
65
68
|
# @return [AsyncOperationResponse]
|
|
66
69
|
describe 'delete test' do
|
|
67
70
|
it 'should work' do
|
|
@@ -73,6 +76,7 @@ describe 'RepositoriesPythonApi' do
|
|
|
73
76
|
# List python repositorys
|
|
74
77
|
# PythonRepository represents a single Python repository, to which content can be synced, added, or removed.
|
|
75
78
|
# @param [Hash] opts the optional parameters
|
|
79
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
76
80
|
# @option opts [String] :latest_with_content Content Unit referenced by HREF/PRN
|
|
77
81
|
# @option opts [Integer] :limit Number of results to return per page.
|
|
78
82
|
# @option opts [String] :name Filter results where name matches value
|
|
@@ -115,6 +119,7 @@ describe 'RepositoriesPythonApi' do
|
|
|
115
119
|
# List roles assigned to this object.
|
|
116
120
|
# @param python_python_repository_href
|
|
117
121
|
# @param [Hash] opts the optional parameters
|
|
122
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
118
123
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
119
124
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
120
125
|
# @return [ObjectRolesResponse]
|
|
@@ -130,6 +135,7 @@ describe 'RepositoriesPythonApi' do
|
|
|
130
135
|
# @param python_python_repository_href
|
|
131
136
|
# @param repository_add_remove_content
|
|
132
137
|
# @param [Hash] opts the optional parameters
|
|
138
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
133
139
|
# @return [AsyncOperationResponse]
|
|
134
140
|
describe 'modify test' do
|
|
135
141
|
it 'should work' do
|
|
@@ -142,6 +148,7 @@ describe 'RepositoriesPythonApi' do
|
|
|
142
148
|
# List permissions available to the current user on this object.
|
|
143
149
|
# @param python_python_repository_href
|
|
144
150
|
# @param [Hash] opts the optional parameters
|
|
151
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
145
152
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
146
153
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
147
154
|
# @return [MyPermissionsResponse]
|
|
@@ -157,6 +164,7 @@ describe 'RepositoriesPythonApi' do
|
|
|
157
164
|
# @param python_python_repository_href
|
|
158
165
|
# @param patchedpython_python_repository
|
|
159
166
|
# @param [Hash] opts the optional parameters
|
|
167
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
160
168
|
# @return [AsyncOperationResponse]
|
|
161
169
|
describe 'partial_update test' do
|
|
162
170
|
it 'should work' do
|
|
@@ -169,6 +177,7 @@ describe 'RepositoriesPythonApi' do
|
|
|
169
177
|
# PythonRepository represents a single Python repository, to which content can be synced, added, or removed.
|
|
170
178
|
# @param python_python_repository_href
|
|
171
179
|
# @param [Hash] opts the optional parameters
|
|
180
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
172
181
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
173
182
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
174
183
|
# @return [PythonPythonRepositoryResponse]
|
|
@@ -184,6 +193,7 @@ describe 'RepositoriesPythonApi' do
|
|
|
184
193
|
# @param python_python_repository_href
|
|
185
194
|
# @param nested_role
|
|
186
195
|
# @param [Hash] opts the optional parameters
|
|
196
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
187
197
|
# @return [NestedRoleResponse]
|
|
188
198
|
describe 'remove_role test' do
|
|
189
199
|
it 'should work' do
|
|
@@ -197,6 +207,7 @@ describe 'RepositoriesPythonApi' do
|
|
|
197
207
|
# @param python_python_repository_href
|
|
198
208
|
# @param set_label
|
|
199
209
|
# @param [Hash] opts the optional parameters
|
|
210
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
200
211
|
# @return [SetLabelResponse]
|
|
201
212
|
describe 'set_label test' do
|
|
202
213
|
it 'should work' do
|
|
@@ -210,6 +221,7 @@ describe 'RepositoriesPythonApi' do
|
|
|
210
221
|
# @param python_python_repository_href
|
|
211
222
|
# @param repository_sync_url
|
|
212
223
|
# @param [Hash] opts the optional parameters
|
|
224
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
213
225
|
# @return [AsyncOperationResponse]
|
|
214
226
|
describe 'sync test' do
|
|
215
227
|
it 'should work' do
|
|
@@ -223,6 +235,7 @@ describe 'RepositoriesPythonApi' do
|
|
|
223
235
|
# @param python_python_repository_href
|
|
224
236
|
# @param unset_label
|
|
225
237
|
# @param [Hash] opts the optional parameters
|
|
238
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
226
239
|
# @return [UnsetLabelResponse]
|
|
227
240
|
describe 'unset_label test' do
|
|
228
241
|
it 'should work' do
|
|
@@ -236,6 +249,7 @@ describe 'RepositoriesPythonApi' do
|
|
|
236
249
|
# @param python_python_repository_href
|
|
237
250
|
# @param python_python_repository
|
|
238
251
|
# @param [Hash] opts the optional parameters
|
|
252
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
239
253
|
# @return [AsyncOperationResponse]
|
|
240
254
|
describe 'update test' do
|
|
241
255
|
it 'should work' do
|
|
@@ -37,6 +37,7 @@ describe 'RepositoriesPythonVersionsApi' do
|
|
|
37
37
|
# Trigger an asynchronous task to delete a repository version.
|
|
38
38
|
# @param python_python_repository_version_href
|
|
39
39
|
# @param [Hash] opts the optional parameters
|
|
40
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
40
41
|
# @return [AsyncOperationResponse]
|
|
41
42
|
describe 'delete test' do
|
|
42
43
|
it 'should work' do
|
|
@@ -49,6 +50,7 @@ describe 'RepositoriesPythonVersionsApi' do
|
|
|
49
50
|
# PythonRepositoryVersion represents a single Python repository version.
|
|
50
51
|
# @param python_python_repository_href
|
|
51
52
|
# @param [Hash] opts the optional parameters
|
|
53
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
52
54
|
# @option opts [String] :content Content Unit referenced by HREF/PRN
|
|
53
55
|
# @option opts [Array<String>] :content__in Multiple values may be separated by commas.
|
|
54
56
|
# @option opts [Integer] :limit Number of results to return per page.
|
|
@@ -59,7 +61,7 @@ describe 'RepositoriesPythonVersionsApi' do
|
|
|
59
61
|
# @option opts [Integer] :number__lte Filter results where number is less than or equal to value
|
|
60
62
|
# @option opts [Array<Integer>] :number__range Filter results where number is between two comma separated values
|
|
61
63
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
|
62
|
-
# @option opts [Array<String>] :ordering Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `number` - Number * `-number` - Number (descending) * `complete` - Complete * `-complete` - Complete (descending) * `info` - Info * `-info` - Info (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
64
|
+
# @option opts [Array<String>] :ordering Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `number` - Number * `-number` - Number (descending) * `complete` - Complete * `-complete` - Complete (descending) * `info` - Info * `-info` - Info (descending) * `content_ids` - Content ids * `-content_ids` - Content ids (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
63
65
|
# @option opts [Array<String>] :prn__in Multiple values may be separated by commas.
|
|
64
66
|
# @option opts [Time] :pulp_created Filter results where pulp_created matches value
|
|
65
67
|
# @option opts [Time] :pulp_created__gt Filter results where pulp_created is greater than value
|
|
@@ -84,6 +86,7 @@ describe 'RepositoriesPythonVersionsApi' do
|
|
|
84
86
|
# PythonRepositoryVersion represents a single Python repository version.
|
|
85
87
|
# @param python_python_repository_version_href
|
|
86
88
|
# @param [Hash] opts the optional parameters
|
|
89
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
87
90
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
88
91
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
89
92
|
# @return [RepositoryVersionResponse]
|
|
@@ -98,6 +101,7 @@ describe 'RepositoriesPythonVersionsApi' do
|
|
|
98
101
|
# @param python_python_repository_version_href
|
|
99
102
|
# @param repair
|
|
100
103
|
# @param [Hash] opts the optional parameters
|
|
104
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
101
105
|
# @return [AsyncOperationResponse]
|
|
102
106
|
describe 'repair test' do
|
|
103
107
|
it 'should work' do
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pulp_python_client
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.13.
|
|
4
|
+
version: 3.13.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- OpenAPI-Generator
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2026-04-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: faraday
|
|
@@ -266,53 +266,53 @@ signing_key:
|
|
|
266
266
|
specification_version: 4
|
|
267
267
|
summary: Pulp 3 API Ruby Gem
|
|
268
268
|
test_files:
|
|
269
|
-
- spec/api/repositories_python_api_spec.rb
|
|
270
|
-
- spec/api/distributions_pypi_api_spec.rb
|
|
271
|
-
- spec/api/repositories_python_versions_api_spec.rb
|
|
272
269
|
- spec/api/remotes_python_api_spec.rb
|
|
273
|
-
- spec/api/pypi_metadata_api_spec.rb
|
|
274
|
-
- spec/api/content_packages_api_spec.rb
|
|
275
270
|
- spec/api/pypi_legacy_api_spec.rb
|
|
276
|
-
- spec/api/
|
|
271
|
+
- spec/api/repositories_python_versions_api_spec.rb
|
|
277
272
|
- spec/api/pypi_api_spec.rb
|
|
273
|
+
- spec/api/pypi_simple_api_spec.rb
|
|
274
|
+
- spec/api/repositories_python_api_spec.rb
|
|
275
|
+
- spec/api/distributions_pypi_api_spec.rb
|
|
276
|
+
- spec/api/content_packages_api_spec.rb
|
|
278
277
|
- spec/api/publications_pypi_api_spec.rb
|
|
279
|
-
- spec/
|
|
280
|
-
- spec/models/
|
|
281
|
-
- spec/models/
|
|
282
|
-
- spec/models/
|
|
283
|
-
- spec/models/python_python_publication_response_spec.rb
|
|
284
|
-
- spec/models/paginatedpython_python_publication_response_list_spec.rb
|
|
278
|
+
- spec/api/pypi_metadata_api_spec.rb
|
|
279
|
+
- spec/models/policy_enum_spec.rb
|
|
280
|
+
- spec/models/repair_spec.rb
|
|
281
|
+
- spec/models/repository_add_remove_content_spec.rb
|
|
285
282
|
- spec/models/python_python_package_content_response_spec.rb
|
|
283
|
+
- spec/models/python_python_repository_spec.rb
|
|
284
|
+
- spec/models/python_python_remote_response_spec.rb
|
|
285
|
+
- spec/models/paginatedpython_python_repository_response_list_spec.rb
|
|
286
|
+
- spec/models/content_summary_response_spec.rb
|
|
287
|
+
- spec/models/nested_role_spec.rb
|
|
286
288
|
- spec/models/patchedpython_python_remote_spec.rb
|
|
289
|
+
- spec/models/set_label_response_spec.rb
|
|
287
290
|
- spec/models/async_operation_response_spec.rb
|
|
288
|
-
- spec/models/
|
|
289
|
-
- spec/models/set_label_spec.rb
|
|
290
|
-
- spec/models/my_permissions_response_spec.rb
|
|
291
|
-
- spec/models/nested_role_response_spec.rb
|
|
292
|
-
- spec/models/python_python_publication_spec.rb
|
|
293
|
-
- spec/models/python_python_remote_response_spec.rb
|
|
294
|
-
- spec/models/package_upload_task_response_spec.rb
|
|
291
|
+
- spec/models/python_python_publication_response_spec.rb
|
|
295
292
|
- spec/models/patchedpython_python_repository_spec.rb
|
|
293
|
+
- spec/models/object_roles_response_spec.rb
|
|
294
|
+
- spec/models/unset_label_spec.rb
|
|
295
|
+
- spec/models/set_label_spec.rb
|
|
296
296
|
- spec/models/python_python_repository_response_spec.rb
|
|
297
|
-
- spec/models/
|
|
298
|
-
- spec/models/
|
|
299
|
-
- spec/models/
|
|
297
|
+
- spec/models/summary_response_spec.rb
|
|
298
|
+
- spec/models/python_python_remote_response_hidden_fields_inner_spec.rb
|
|
299
|
+
- spec/models/python_python_publication_spec.rb
|
|
300
|
+
- spec/models/nested_role_response_spec.rb
|
|
301
|
+
- spec/models/paginatedpython_python_remote_response_list_spec.rb
|
|
302
|
+
- spec/models/exclude_platforms_enum_spec.rb
|
|
300
303
|
- spec/models/repository_sync_url_spec.rb
|
|
301
|
-
- spec/models/paginatedpython_python_repository_response_list_spec.rb
|
|
302
|
-
- spec/models/paginatedpython_python_package_content_response_list_spec.rb
|
|
303
|
-
- spec/models/repair_spec.rb
|
|
304
|
-
- spec/models/unset_label_spec.rb
|
|
305
|
-
- spec/models/python_python_distribution_response_spec.rb
|
|
306
|
-
- spec/models/package_types_enum_spec.rb
|
|
307
|
-
- spec/models/nested_role_spec.rb
|
|
308
304
|
- spec/models/patchedpython_python_distribution_spec.rb
|
|
309
|
-
- spec/models/
|
|
310
|
-
- spec/models/
|
|
311
|
-
- spec/models/python_python_repository_spec.rb
|
|
312
|
-
- spec/models/exclude_platforms_enum_spec.rb
|
|
313
|
-
- spec/models/paginated_repository_version_response_list_spec.rb
|
|
305
|
+
- spec/models/paginatedpython_python_publication_response_list_spec.rb
|
|
306
|
+
- spec/models/paginatedpython_python_package_content_response_list_spec.rb
|
|
314
307
|
- spec/models/unset_label_response_spec.rb
|
|
315
|
-
- spec/models/
|
|
316
|
-
- spec/models/
|
|
308
|
+
- spec/models/package_metadata_response_spec.rb
|
|
309
|
+
- spec/models/my_permissions_response_spec.rb
|
|
310
|
+
- spec/models/package_upload_task_response_spec.rb
|
|
311
|
+
- spec/models/python_python_remote_spec.rb
|
|
312
|
+
- spec/models/paginated_repository_version_response_list_spec.rb
|
|
313
|
+
- spec/models/package_types_enum_spec.rb
|
|
314
|
+
- spec/models/python_python_distribution_response_spec.rb
|
|
315
|
+
- spec/models/python_python_distribution_spec.rb
|
|
317
316
|
- spec/models/repository_version_response_spec.rb
|
|
317
|
+
- spec/models/paginatedpython_python_distribution_response_list_spec.rb
|
|
318
318
|
- spec/spec_helper.rb
|