pulp_gem_client 0.7.1 → 0.7.2
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/ContentGemApi.md +22 -8
- data/docs/DistributionsGemApi.md +72 -32
- data/docs/GemGemContentResponse.md +2 -0
- data/docs/GemGemRemoteResponse.md +1 -1
- data/docs/PublicationsGemApi.md +40 -16
- data/docs/RemotesGemApi.md +72 -32
- data/docs/RepositoriesGemApi.md +88 -40
- data/docs/RepositoriesGemVersionsApi.md +22 -10
- data/docs/RepositoryVersionResponse.md +3 -1
- data/lib/pulp_gem_client/api/content_gem_api.rb +15 -0
- data/lib/pulp_gem_client/api/distributions_gem_api.rb +36 -0
- data/lib/pulp_gem_client/api/publications_gem_api.rb +24 -0
- data/lib/pulp_gem_client/api/remotes_gem_api.rb +36 -0
- data/lib/pulp_gem_client/api/repositories_gem_api.rb +42 -0
- data/lib/pulp_gem_client/api/repositories_gem_versions_api.rb +15 -3
- data/lib/pulp_gem_client/models/gem_gem_content_response.rb +10 -1
- data/lib/pulp_gem_client/models/gem_gem_remote.rb +0 -17
- data/lib/pulp_gem_client/models/gem_gem_remote_response.rb +0 -17
- data/lib/pulp_gem_client/models/gem_gem_repository.rb +0 -15
- data/lib/pulp_gem_client/models/gem_gem_repository_response.rb +0 -15
- data/lib/pulp_gem_client/models/paginated_repository_version_response_list.rb +0 -2
- data/lib/pulp_gem_client/models/paginatedgem_gem_content_response_list.rb +0 -2
- data/lib/pulp_gem_client/models/paginatedgem_gem_distribution_response_list.rb +0 -2
- data/lib/pulp_gem_client/models/paginatedgem_gem_publication_response_list.rb +0 -2
- data/lib/pulp_gem_client/models/paginatedgem_gem_remote_response_list.rb +0 -2
- data/lib/pulp_gem_client/models/paginatedgem_gem_repository_response_list.rb +0 -2
- data/lib/pulp_gem_client/models/patchedgem_gem_remote.rb +0 -17
- data/lib/pulp_gem_client/models/patchedgem_gem_repository.rb +0 -15
- data/lib/pulp_gem_client/models/repository_version_response.rb +13 -4
- data/lib/pulp_gem_client/version.rb +1 -1
- data/pulp_gem_client.gemspec +0 -1
- data/spec/api/content_gem_api_spec.rb +5 -0
- data/spec/api/distributions_gem_api_spec.rb +12 -0
- data/spec/api/publications_gem_api_spec.rb +8 -0
- data/spec/api/remotes_gem_api_spec.rb +12 -0
- data/spec/api/repositories_gem_api_spec.rb +14 -0
- data/spec/api/repositories_gem_versions_api_spec.rb +5 -1
- data/spec/models/gem_gem_content_response_spec.rb +6 -0
- data/spec/models/repository_version_response_spec.rb +6 -0
- metadata +28 -48
@@ -38,6 +38,7 @@ describe 'DistributionsGemApi' do
|
|
38
38
|
# @param gem_gem_distribution_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 'DistributionsGemApi' do
|
|
50
51
|
# Trigger an asynchronous create task
|
51
52
|
# @param gem_gem_distribution
|
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 [AsyncOperationResponse]
|
54
56
|
describe 'create test' do
|
55
57
|
it 'should work' do
|
@@ -62,6 +64,7 @@ describe 'DistributionsGemApi' do
|
|
62
64
|
# Trigger an asynchronous delete task
|
63
65
|
# @param gem_gem_distribution_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 'DistributionsGemApi' do
|
|
73
76
|
# List gem distributions
|
74
77
|
# ViewSet for GemDistributions.
|
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] :base_path Filter results where base_path matches value
|
77
81
|
# @option opts [String] :base_path__contains Filter results where base_path contains value
|
78
82
|
# @option opts [String] :base_path__icontains Filter results where base_path contains value
|
@@ -112,6 +116,7 @@ describe 'DistributionsGemApi' do
|
|
112
116
|
# List roles assigned to this object.
|
113
117
|
# @param gem_gem_distribution_href
|
114
118
|
# @param [Hash] opts the optional parameters
|
119
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
115
120
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
116
121
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
117
122
|
# @return [ObjectRolesResponse]
|
@@ -126,6 +131,7 @@ describe 'DistributionsGemApi' do
|
|
126
131
|
# List permissions available to the current user on this object.
|
127
132
|
# @param gem_gem_distribution_href
|
128
133
|
# @param [Hash] opts the optional parameters
|
134
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
129
135
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
130
136
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
131
137
|
# @return [MyPermissionsResponse]
|
@@ -141,6 +147,7 @@ describe 'DistributionsGemApi' do
|
|
141
147
|
# @param gem_gem_distribution_href
|
142
148
|
# @param patchedgem_gem_distribution
|
143
149
|
# @param [Hash] opts the optional parameters
|
150
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
144
151
|
# @return [AsyncOperationResponse]
|
145
152
|
describe 'partial_update test' do
|
146
153
|
it 'should work' do
|
@@ -153,6 +160,7 @@ describe 'DistributionsGemApi' do
|
|
153
160
|
# ViewSet for GemDistributions.
|
154
161
|
# @param gem_gem_distribution_href
|
155
162
|
# @param [Hash] opts the optional parameters
|
163
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
156
164
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
157
165
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
158
166
|
# @return [GemGemDistributionResponse]
|
@@ -168,6 +176,7 @@ describe 'DistributionsGemApi' do
|
|
168
176
|
# @param gem_gem_distribution_href
|
169
177
|
# @param nested_role
|
170
178
|
# @param [Hash] opts the optional parameters
|
179
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
171
180
|
# @return [NestedRoleResponse]
|
172
181
|
describe 'remove_role test' do
|
173
182
|
it 'should work' do
|
@@ -181,6 +190,7 @@ describe 'DistributionsGemApi' do
|
|
181
190
|
# @param gem_gem_distribution_href
|
182
191
|
# @param set_label
|
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 [SetLabelResponse]
|
185
195
|
describe 'set_label test' do
|
186
196
|
it 'should work' do
|
@@ -194,6 +204,7 @@ describe 'DistributionsGemApi' do
|
|
194
204
|
# @param gem_gem_distribution_href
|
195
205
|
# @param unset_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 [UnsetLabelResponse]
|
198
209
|
describe 'unset_label test' do
|
199
210
|
it 'should work' do
|
@@ -207,6 +218,7 @@ describe 'DistributionsGemApi' do
|
|
207
218
|
# @param gem_gem_distribution_href
|
208
219
|
# @param gem_gem_distribution
|
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 [AsyncOperationResponse]
|
211
223
|
describe 'update test' do
|
212
224
|
it 'should work' do
|
@@ -38,6 +38,7 @@ describe 'PublicationsGemApi' do
|
|
38
38
|
# @param gem_gem_publication_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 'PublicationsGemApi' do
|
|
50
51
|
# Trigger an asynchronous task to publish gem content
|
51
52
|
# @param gem_gem_publication
|
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 [AsyncOperationResponse]
|
54
56
|
describe 'create test' do
|
55
57
|
it 'should work' do
|
@@ -62,6 +64,7 @@ describe 'PublicationsGemApi' do
|
|
62
64
|
# A ViewSet for GemPublication.
|
63
65
|
# @param gem_gem_publication_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 [nil]
|
66
69
|
describe 'delete test' do
|
67
70
|
it 'should work' do
|
@@ -73,6 +76,7 @@ describe 'PublicationsGemApi' do
|
|
73
76
|
# List gem publications
|
74
77
|
# A ViewSet for GemPublication.
|
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 [Boolean] :checkpoint Filter results where checkpoint matches value
|
77
81
|
# @option opts [String] :content Content Unit referenced by HREF/PRN
|
78
82
|
# @option opts [Array<String>] :content__in Multiple values may be separated by commas.
|
@@ -106,6 +110,7 @@ describe 'PublicationsGemApi' do
|
|
106
110
|
# List roles assigned to this object.
|
107
111
|
# @param gem_gem_publication_href
|
108
112
|
# @param [Hash] opts the optional parameters
|
113
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
109
114
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
110
115
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
111
116
|
# @return [ObjectRolesResponse]
|
@@ -120,6 +125,7 @@ describe 'PublicationsGemApi' do
|
|
120
125
|
# List permissions available to the current user on this object.
|
121
126
|
# @param gem_gem_publication_href
|
122
127
|
# @param [Hash] opts the optional parameters
|
128
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
123
129
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
124
130
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
125
131
|
# @return [MyPermissionsResponse]
|
@@ -134,6 +140,7 @@ describe 'PublicationsGemApi' do
|
|
134
140
|
# A ViewSet for GemPublication.
|
135
141
|
# @param gem_gem_publication_href
|
136
142
|
# @param [Hash] opts the optional parameters
|
143
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
137
144
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
138
145
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
139
146
|
# @return [GemGemPublicationResponse]
|
@@ -149,6 +156,7 @@ describe 'PublicationsGemApi' do
|
|
149
156
|
# @param gem_gem_publication_href
|
150
157
|
# @param nested_role
|
151
158
|
# @param [Hash] opts the optional parameters
|
159
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
152
160
|
# @return [NestedRoleResponse]
|
153
161
|
describe 'remove_role test' do
|
154
162
|
it 'should work' do
|
@@ -38,6 +38,7 @@ describe 'RemotesGemApi' do
|
|
38
38
|
# @param gem_gem_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 'RemotesGemApi' do
|
|
50
51
|
# A ViewSet for GemRemote.
|
51
52
|
# @param gem_gem_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 [GemGemRemoteResponse]
|
54
56
|
describe 'create test' do
|
55
57
|
it 'should work' do
|
@@ -62,6 +64,7 @@ describe 'RemotesGemApi' do
|
|
62
64
|
# Trigger an asynchronous delete task
|
63
65
|
# @param gem_gem_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
|
@@ -73,6 +76,7 @@ describe 'RemotesGemApi' do
|
|
73
76
|
# List gem remotes
|
74
77
|
# A ViewSet for GemRemote.
|
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 [Integer] :limit Number of results to return per page.
|
77
81
|
# @option opts [String] :name Filter results where name matches value
|
78
82
|
# @option opts [String] :name__contains Filter results where name contains value
|
@@ -111,6 +115,7 @@ describe 'RemotesGemApi' do
|
|
111
115
|
# List roles assigned to this object.
|
112
116
|
# @param gem_gem_remote_href
|
113
117
|
# @param [Hash] opts the optional parameters
|
118
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
114
119
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
115
120
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
116
121
|
# @return [ObjectRolesResponse]
|
@@ -125,6 +130,7 @@ describe 'RemotesGemApi' do
|
|
125
130
|
# List permissions available to the current user on this object.
|
126
131
|
# @param gem_gem_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 [MyPermissionsResponse]
|
@@ -140,6 +146,7 @@ describe 'RemotesGemApi' do
|
|
140
146
|
# @param gem_gem_remote_href
|
141
147
|
# @param patchedgem_gem_remote
|
142
148
|
# @param [Hash] opts the optional parameters
|
149
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
143
150
|
# @return [AsyncOperationResponse]
|
144
151
|
describe 'partial_update test' do
|
145
152
|
it 'should work' do
|
@@ -152,6 +159,7 @@ describe 'RemotesGemApi' do
|
|
152
159
|
# A ViewSet for GemRemote.
|
153
160
|
# @param gem_gem_remote_href
|
154
161
|
# @param [Hash] opts the optional parameters
|
162
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
155
163
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
156
164
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
157
165
|
# @return [GemGemRemoteResponse]
|
@@ -167,6 +175,7 @@ describe 'RemotesGemApi' do
|
|
167
175
|
# @param gem_gem_remote_href
|
168
176
|
# @param nested_role
|
169
177
|
# @param [Hash] opts the optional parameters
|
178
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
170
179
|
# @return [NestedRoleResponse]
|
171
180
|
describe 'remove_role test' do
|
172
181
|
it 'should work' do
|
@@ -180,6 +189,7 @@ describe 'RemotesGemApi' do
|
|
180
189
|
# @param gem_gem_remote_href
|
181
190
|
# @param set_label
|
182
191
|
# @param [Hash] opts the optional parameters
|
192
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
183
193
|
# @return [SetLabelResponse]
|
184
194
|
describe 'set_label test' do
|
185
195
|
it 'should work' do
|
@@ -193,6 +203,7 @@ describe 'RemotesGemApi' do
|
|
193
203
|
# @param gem_gem_remote_href
|
194
204
|
# @param unset_label
|
195
205
|
# @param [Hash] opts the optional parameters
|
206
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
196
207
|
# @return [UnsetLabelResponse]
|
197
208
|
describe 'unset_label test' do
|
198
209
|
it 'should work' do
|
@@ -206,6 +217,7 @@ describe 'RemotesGemApi' do
|
|
206
217
|
# @param gem_gem_remote_href
|
207
218
|
# @param gem_gem_remote
|
208
219
|
# @param [Hash] opts the optional parameters
|
220
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
209
221
|
# @return [AsyncOperationResponse]
|
210
222
|
describe 'update test' do
|
211
223
|
it 'should work' do
|
@@ -38,6 +38,7 @@ describe 'RepositoriesGemApi' do
|
|
38
38
|
# @param gem_gem_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 'RepositoriesGemApi' do
|
|
50
51
|
# A ViewSet for GemRepository.
|
51
52
|
# @param gem_gem_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 [GemGemRepositoryResponse]
|
54
56
|
describe 'create test' do
|
55
57
|
it 'should work' do
|
@@ -62,6 +64,7 @@ describe 'RepositoriesGemApi' do
|
|
62
64
|
# Trigger an asynchronous delete task
|
63
65
|
# @param gem_gem_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 'RepositoriesGemApi' do
|
|
73
76
|
# List gem repositorys
|
74
77
|
# A ViewSet for GemRepository.
|
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 'RepositoriesGemApi' do
|
|
115
119
|
# List roles assigned to this object.
|
116
120
|
# @param gem_gem_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 'RepositoriesGemApi' do
|
|
130
135
|
# @param gem_gem_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 'RepositoriesGemApi' do
|
|
142
148
|
# List permissions available to the current user on this object.
|
143
149
|
# @param gem_gem_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 'RepositoriesGemApi' do
|
|
157
164
|
# @param gem_gem_repository_href
|
158
165
|
# @param patchedgem_gem_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 'RepositoriesGemApi' do
|
|
169
177
|
# A ViewSet for GemRepository.
|
170
178
|
# @param gem_gem_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 [GemGemRepositoryResponse]
|
@@ -184,6 +193,7 @@ describe 'RepositoriesGemApi' do
|
|
184
193
|
# @param gem_gem_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 'RepositoriesGemApi' do
|
|
197
207
|
# @param gem_gem_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 'RepositoriesGemApi' do
|
|
210
221
|
# @param gem_gem_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 'RepositoriesGemApi' do
|
|
223
235
|
# @param gem_gem_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 'RepositoriesGemApi' do
|
|
236
249
|
# @param gem_gem_repository_href
|
237
250
|
# @param gem_gem_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 'RepositoriesGemVersionsApi' do
|
|
37
37
|
# Trigger an asynchronous task to delete a repository version.
|
38
38
|
# @param gem_gem_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 'RepositoriesGemVersionsApi' do
|
|
49
50
|
# A ViewSet for a GemRepositoryVersion represents a single Gem repository version.
|
50
51
|
# @param gem_gem_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 'RepositoriesGemVersionsApi' 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 'RepositoriesGemVersionsApi' do
|
|
84
86
|
# A ViewSet for a GemRepositoryVersion represents a single Gem repository version.
|
85
87
|
# @param gem_gem_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 'RepositoriesGemVersionsApi' do
|
|
98
101
|
# @param gem_gem_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
|
@@ -57,6 +57,12 @@ describe PulpGemClient::GemGemContentResponse do
|
|
57
57
|
end
|
58
58
|
end
|
59
59
|
|
60
|
+
describe 'test attribute "vuln_report"' do
|
61
|
+
it 'should work' do
|
62
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
63
|
+
end
|
64
|
+
end
|
65
|
+
|
60
66
|
describe 'test attribute "artifacts"' do
|
61
67
|
it 'should work' do
|
62
68
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
@@ -75,4 +75,10 @@ describe PulpGemClient::RepositoryVersionResponse do
|
|
75
75
|
end
|
76
76
|
end
|
77
77
|
|
78
|
+
describe 'test attribute "vuln_report"' do
|
79
|
+
it 'should work' do
|
80
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
81
|
+
end
|
82
|
+
end
|
83
|
+
|
78
84
|
end
|
metadata
CHANGED
@@ -1,35 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pulp_gem_client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.7.
|
4
|
+
version: 0.7.2
|
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-
|
11
|
+
date: 2025-08-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
|
-
- !ruby/object:Gem::Dependency
|
14
|
-
name: faraday-net_http
|
15
|
-
requirement: !ruby/object:Gem::Requirement
|
16
|
-
requirements:
|
17
|
-
- - ">="
|
18
|
-
- !ruby/object:Gem::Version
|
19
|
-
version: '2.0'
|
20
|
-
- - "<"
|
21
|
-
- !ruby/object:Gem::Version
|
22
|
-
version: '3.1'
|
23
|
-
type: :runtime
|
24
|
-
prerelease: false
|
25
|
-
version_requirements: !ruby/object:Gem::Requirement
|
26
|
-
requirements:
|
27
|
-
- - ">="
|
28
|
-
- !ruby/object:Gem::Version
|
29
|
-
version: '2.0'
|
30
|
-
- - "<"
|
31
|
-
- !ruby/object:Gem::Version
|
32
|
-
version: '3.1'
|
33
13
|
- !ruby/object:Gem::Dependency
|
34
14
|
name: faraday
|
35
15
|
requirement: !ruby/object:Gem::Requirement
|
@@ -261,42 +241,42 @@ summary: Pulp 3 API Ruby Gem
|
|
261
241
|
test_files:
|
262
242
|
- spec/api/repositories_gem_versions_api_spec.rb
|
263
243
|
- spec/api/publications_gem_api_spec.rb
|
244
|
+
- spec/api/content_gem_api_spec.rb
|
264
245
|
- spec/api/distributions_gem_api_spec.rb
|
265
246
|
- spec/api/repositories_gem_api_spec.rb
|
266
247
|
- spec/api/remotes_gem_api_spec.rb
|
267
|
-
- spec/
|
268
|
-
- spec/models/
|
269
|
-
- spec/models/
|
248
|
+
- spec/models/paginatedgem_gem_content_response_list_spec.rb
|
249
|
+
- spec/models/gem_gem_remote_response_spec.rb
|
250
|
+
- spec/models/object_roles_response_spec.rb
|
251
|
+
- spec/models/set_label_response_spec.rb
|
252
|
+
- spec/models/repository_version_response_spec.rb
|
253
|
+
- spec/models/paginatedgem_gem_publication_response_list_spec.rb
|
254
|
+
- spec/models/async_operation_response_spec.rb
|
255
|
+
- spec/models/paginatedgem_gem_repository_response_list_spec.rb
|
270
256
|
- spec/models/set_label_spec.rb
|
271
|
-
- spec/models/
|
257
|
+
- spec/models/gem_gem_distribution_response_spec.rb
|
258
|
+
- spec/models/paginatedgem_gem_distribution_response_list_spec.rb
|
259
|
+
- spec/models/gem_gem_repository_spec.rb
|
260
|
+
- spec/models/my_permissions_response_spec.rb
|
261
|
+
- spec/models/gem_gem_remote_response_hidden_fields_inner_spec.rb
|
262
|
+
- spec/models/gem_gem_repository_response_spec.rb
|
263
|
+
- spec/models/unset_label_response_spec.rb
|
272
264
|
- spec/models/policy_enum_spec.rb
|
273
|
-
- spec/models/
|
265
|
+
- spec/models/gem_gem_publication_spec.rb
|
266
|
+
- spec/models/content_summary_response_spec.rb
|
267
|
+
- spec/models/nested_role_spec.rb
|
268
|
+
- spec/models/patchedgem_gem_remote_spec.rb
|
269
|
+
- spec/models/gem_gem_publication_response_spec.rb
|
270
|
+
- spec/models/patchedgem_gem_distribution_spec.rb
|
271
|
+
- spec/models/paginated_repository_version_response_list_spec.rb
|
274
272
|
- spec/models/paginatedgem_gem_remote_response_list_spec.rb
|
275
273
|
- spec/models/repository_add_remove_content_spec.rb
|
274
|
+
- spec/models/gem_gem_content_response_spec.rb
|
276
275
|
- spec/models/gem_gem_remote_spec.rb
|
277
|
-
- spec/models/patchedgem_gem_distribution_spec.rb
|
278
|
-
- spec/models/gem_gem_distribution_response_spec.rb
|
279
|
-
- spec/models/paginatedgem_gem_content_response_list_spec.rb
|
280
276
|
- spec/models/nested_role_response_spec.rb
|
281
|
-
- spec/models/nested_role_spec.rb
|
282
|
-
- spec/models/gem_gem_publication_spec.rb
|
283
277
|
- spec/models/repository_sync_url_spec.rb
|
284
|
-
- spec/models/
|
285
|
-
- spec/models/unset_label_spec.rb
|
286
|
-
- spec/models/gem_gem_remote_response_spec.rb
|
278
|
+
- spec/models/repair_spec.rb
|
287
279
|
- spec/models/patchedgem_gem_repository_spec.rb
|
288
|
-
- spec/models/
|
289
|
-
- spec/models/unset_label_response_spec.rb
|
280
|
+
- spec/models/unset_label_spec.rb
|
290
281
|
- spec/models/gem_gem_distribution_spec.rb
|
291
|
-
- spec/models/repository_version_response_spec.rb
|
292
|
-
- spec/models/paginatedgem_gem_distribution_response_list_spec.rb
|
293
|
-
- spec/models/paginated_repository_version_response_list_spec.rb
|
294
|
-
- spec/models/my_permissions_response_spec.rb
|
295
|
-
- spec/models/object_roles_response_spec.rb
|
296
|
-
- spec/models/gem_gem_repository_response_spec.rb
|
297
|
-
- spec/models/paginatedgem_gem_repository_response_list_spec.rb
|
298
|
-
- spec/models/set_label_response_spec.rb
|
299
|
-
- spec/models/gem_gem_publication_response_spec.rb
|
300
|
-
- spec/models/content_summary_response_spec.rb
|
301
|
-
- spec/models/async_operation_response_spec.rb
|
302
282
|
- spec/spec_helper.rb
|