pulp_file_client 3.80.2 → 3.82.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 +8 -5
- data/docs/AcsFileApi.md +64 -28
- data/docs/ContentFilesApi.md +22 -8
- data/docs/DistributionsFileApi.md +72 -32
- data/docs/PublicationsFileApi.md +40 -16
- data/docs/RemotesFileApi.md +72 -32
- data/docs/RepositoriesFileApi.md +88 -40
- data/docs/RepositoriesFileVersionsApi.md +20 -8
- data/lib/pulp_file_client/api/acs_file_api.rb +33 -0
- data/lib/pulp_file_client/api/content_files_api.rb +15 -0
- data/lib/pulp_file_client/api/distributions_file_api.rb +36 -0
- data/lib/pulp_file_client/api/publications_file_api.rb +24 -0
- data/lib/pulp_file_client/api/remotes_file_api.rb +36 -0
- data/lib/pulp_file_client/api/repositories_file_api.rb +42 -0
- data/lib/pulp_file_client/api/repositories_file_versions_api.rb +12 -0
- data/lib/pulp_file_client/version.rb +1 -1
- data/spec/api/acs_file_api_spec.rb +11 -0
- data/spec/api/content_files_api_spec.rb +5 -0
- data/spec/api/distributions_file_api_spec.rb +12 -0
- data/spec/api/publications_file_api_spec.rb +8 -0
- data/spec/api/remotes_file_api_spec.rb +12 -0
- data/spec/api/repositories_file_api_spec.rb +14 -0
- data/spec/api/repositories_file_versions_api_spec.rb +4 -0
- metadata +35 -35
@@ -38,6 +38,7 @@ describe 'PublicationsFileApi' do
|
|
38
38
|
# @param file_file_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 'PublicationsFileApi' do
|
|
50
51
|
# Trigger an asynchronous task to publish file content.
|
51
52
|
# @param file_file_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 'PublicationsFileApi' do
|
|
62
64
|
# A FilePublication contains metadata about all the File Content in a particular File Repository Version. Once a FilePublication has been created, it can be hosted using the File Distribution API.
|
63
65
|
# @param file_file_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 'PublicationsFileApi' do
|
|
73
76
|
# List file publications
|
74
77
|
# A FilePublication contains metadata about all the File Content in a particular File Repository Version. Once a FilePublication has been created, it can be hosted using the File Distribution API.
|
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 'PublicationsFileApi' do
|
|
106
110
|
# List roles assigned to this object.
|
107
111
|
# @param file_file_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 'PublicationsFileApi' do
|
|
120
125
|
# List permissions available to the current user on this object.
|
121
126
|
# @param file_file_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 'PublicationsFileApi' do
|
|
134
140
|
# A FilePublication contains metadata about all the File Content in a particular File Repository Version. Once a FilePublication has been created, it can be hosted using the File Distribution API.
|
135
141
|
# @param file_file_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 [FileFilePublicationResponse]
|
@@ -149,6 +156,7 @@ describe 'PublicationsFileApi' do
|
|
149
156
|
# @param file_file_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 'RemotesFileApi' do
|
|
38
38
|
# @param file_file_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 'RemotesFileApi' do
|
|
50
51
|
# FileRemote represents an external source of File Content. The target url of a FileRemote must contain a file manifest, which contains the metadata for all files at the source.
|
51
52
|
# @param file_file_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 [FileFileRemoteResponse]
|
54
56
|
describe 'create test' do
|
55
57
|
it 'should work' do
|
@@ -62,6 +64,7 @@ describe 'RemotesFileApi' do
|
|
62
64
|
# Trigger an asynchronous delete task
|
63
65
|
# @param file_file_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 'RemotesFileApi' do
|
|
73
76
|
# List file remotes
|
74
77
|
# FileRemote represents an external source of File Content. The target url of a FileRemote must contain a file manifest, which contains the metadata for all files at the source.
|
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 'RemotesFileApi' do
|
|
111
115
|
# List roles assigned to this object.
|
112
116
|
# @param file_file_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 'RemotesFileApi' do
|
|
125
130
|
# List permissions available to the current user on this object.
|
126
131
|
# @param file_file_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 'RemotesFileApi' do
|
|
140
146
|
# @param file_file_remote_href
|
141
147
|
# @param patchedfile_file_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 'RemotesFileApi' do
|
|
152
159
|
# FileRemote represents an external source of File Content. The target url of a FileRemote must contain a file manifest, which contains the metadata for all files at the source.
|
153
160
|
# @param file_file_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 [FileFileRemoteResponse]
|
@@ -167,6 +175,7 @@ describe 'RemotesFileApi' do
|
|
167
175
|
# @param file_file_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 'RemotesFileApi' do
|
|
180
189
|
# @param file_file_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 'RemotesFileApi' do
|
|
193
203
|
# @param file_file_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 'RemotesFileApi' do
|
|
206
217
|
# @param file_file_remote_href
|
207
218
|
# @param file_file_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 'RepositoriesFileApi' do
|
|
38
38
|
# @param file_file_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 'RepositoriesFileApi' do
|
|
50
51
|
# FileRepository represents a single file repository, to which content can be synced, added, or removed.
|
51
52
|
# @param file_file_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 [FileFileRepositoryResponse]
|
54
56
|
describe 'create test' do
|
55
57
|
it 'should work' do
|
@@ -62,6 +64,7 @@ describe 'RepositoriesFileApi' do
|
|
62
64
|
# Trigger an asynchronous delete task
|
63
65
|
# @param file_file_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 'RepositoriesFileApi' do
|
|
73
76
|
# List file repositorys
|
74
77
|
# FileRepository represents a single file 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 'RepositoriesFileApi' do
|
|
115
119
|
# List roles assigned to this object.
|
116
120
|
# @param file_file_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 'RepositoriesFileApi' do
|
|
130
135
|
# @param file_file_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 'RepositoriesFileApi' do
|
|
142
148
|
# List permissions available to the current user on this object.
|
143
149
|
# @param file_file_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 'RepositoriesFileApi' do
|
|
157
164
|
# @param file_file_repository_href
|
158
165
|
# @param patchedfile_file_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 'RepositoriesFileApi' do
|
|
169
177
|
# FileRepository represents a single file repository, to which content can be synced, added, or removed.
|
170
178
|
# @param file_file_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 [FileFileRepositoryResponse]
|
@@ -184,6 +193,7 @@ describe 'RepositoriesFileApi' do
|
|
184
193
|
# @param file_file_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 'RepositoriesFileApi' do
|
|
197
207
|
# @param file_file_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 'RepositoriesFileApi' do
|
|
210
221
|
# @param file_file_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 'RepositoriesFileApi' do
|
|
223
235
|
# @param file_file_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 'RepositoriesFileApi' do
|
|
236
249
|
# @param file_file_repository_href
|
237
250
|
# @param file_file_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 'RepositoriesFileVersionsApi' do
|
|
37
37
|
# Trigger an asynchronous task to delete a repository version.
|
38
38
|
# @param file_file_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 'RepositoriesFileVersionsApi' do
|
|
49
50
|
# FileRepositoryVersion represents a single file repository version.
|
50
51
|
# @param file_file_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.
|
@@ -84,6 +86,7 @@ describe 'RepositoriesFileVersionsApi' do
|
|
84
86
|
# FileRepositoryVersion represents a single file repository version.
|
85
87
|
# @param file_file_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 'RepositoriesFileVersionsApi' do
|
|
98
101
|
# @param file_file_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_file_client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.
|
4
|
+
version: 3.82.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-
|
11
|
+
date: 2025-07-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -257,50 +257,50 @@ signing_key:
|
|
257
257
|
specification_version: 4
|
258
258
|
summary: Pulp 3 API Ruby Gem
|
259
259
|
test_files:
|
260
|
+
- spec/api/repositories_file_versions_api_spec.rb
|
261
|
+
- spec/api/repositories_file_api_spec.rb
|
260
262
|
- spec/api/distributions_file_api_spec.rb
|
263
|
+
- spec/api/content_files_api_spec.rb
|
261
264
|
- spec/api/acs_file_api_spec.rb
|
262
|
-
- spec/api/repositories_file_api_spec.rb
|
263
|
-
- spec/api/repositories_file_versions_api_spec.rb
|
264
265
|
- spec/api/remotes_file_api_spec.rb
|
265
|
-
- spec/api/content_files_api_spec.rb
|
266
266
|
- spec/api/publications_file_api_spec.rb
|
267
|
-
- spec/models/
|
268
|
-
- spec/models/
|
269
|
-
- spec/models/
|
270
|
-
- spec/models/
|
267
|
+
- spec/models/file_file_repository_spec.rb
|
268
|
+
- spec/models/file_file_content_response_spec.rb
|
269
|
+
- spec/models/paginatedfile_file_distribution_response_list_spec.rb
|
270
|
+
- spec/models/paginatedfile_file_remote_response_list_spec.rb
|
271
|
+
- spec/models/patchedfile_file_remote_spec.rb
|
272
|
+
- spec/models/file_file_repository_response_spec.rb
|
273
|
+
- spec/models/patchedfile_file_distribution_spec.rb
|
274
|
+
- spec/models/unset_label_spec.rb
|
271
275
|
- spec/models/nested_role_response_spec.rb
|
276
|
+
- spec/models/file_file_alternate_content_source_response_spec.rb
|
272
277
|
- spec/models/file_file_publication_spec.rb
|
273
|
-
- spec/models/
|
274
|
-
- spec/models/my_permissions_response_spec.rb
|
278
|
+
- spec/models/file_file_remote_spec.rb
|
275
279
|
- spec/models/file_file_distribution_response_spec.rb
|
276
|
-
- spec/models/
|
277
|
-
- spec/models/
|
278
|
-
- spec/models/
|
279
|
-
- spec/models/
|
280
|
-
- spec/models/paginatedfile_file_alternate_content_source_response_list_spec.rb
|
281
|
-
- spec/models/paginated_repository_version_response_list_spec.rb
|
282
|
-
- spec/models/file_file_repository_response_spec.rb
|
283
|
-
- spec/models/paginatedfile_file_remote_response_list_spec.rb
|
280
|
+
- spec/models/file_file_distribution_spec.rb
|
281
|
+
- spec/models/file_file_alternate_content_source_spec.rb
|
282
|
+
- spec/models/content_summary_response_spec.rb
|
283
|
+
- spec/models/file_file_remote_response_hidden_fields_inner_spec.rb
|
284
284
|
- spec/models/repository_version_response_spec.rb
|
285
|
-
- spec/models/
|
286
|
-
- spec/models/
|
287
|
-
- spec/models/
|
285
|
+
- spec/models/policy_enum_spec.rb
|
286
|
+
- spec/models/my_permissions_response_spec.rb
|
287
|
+
- spec/models/async_operation_response_spec.rb
|
288
|
+
- spec/models/repair_spec.rb
|
289
|
+
- spec/models/patchedfile_file_alternate_content_source_spec.rb
|
290
|
+
- spec/models/repository_add_remove_content_spec.rb
|
291
|
+
- spec/models/paginatedfile_file_content_response_list_spec.rb
|
288
292
|
- spec/models/unset_label_response_spec.rb
|
289
293
|
- spec/models/file_file_publication_response_spec.rb
|
290
|
-
- spec/models/
|
291
|
-
- spec/models/
|
294
|
+
- spec/models/patchedfile_file_repository_spec.rb
|
295
|
+
- spec/models/paginatedfile_file_publication_response_list_spec.rb
|
296
|
+
- spec/models/set_label_spec.rb
|
297
|
+
- spec/models/paginated_repository_version_response_list_spec.rb
|
298
|
+
- spec/models/paginatedfile_file_alternate_content_source_response_list_spec.rb
|
299
|
+
- spec/models/set_label_response_spec.rb
|
300
|
+
- spec/models/task_group_operation_response_spec.rb
|
292
301
|
- spec/models/repository_sync_url_spec.rb
|
293
|
-
- spec/models/
|
294
|
-
- spec/models/paginatedfile_file_content_response_list_spec.rb
|
302
|
+
- spec/models/nested_role_spec.rb
|
295
303
|
- spec/models/object_roles_response_spec.rb
|
304
|
+
- spec/models/file_file_remote_response_spec.rb
|
296
305
|
- spec/models/paginatedfile_file_repository_response_list_spec.rb
|
297
|
-
- spec/models/repair_spec.rb
|
298
|
-
- spec/models/content_summary_response_spec.rb
|
299
|
-
- spec/models/file_file_repository_spec.rb
|
300
|
-
- spec/models/repository_add_remove_content_spec.rb
|
301
|
-
- spec/models/nested_role_spec.rb
|
302
|
-
- spec/models/patchedfile_file_alternate_content_source_spec.rb
|
303
|
-
- spec/models/patchedfile_file_distribution_spec.rb
|
304
|
-
- spec/models/unset_label_spec.rb
|
305
|
-
- spec/models/file_file_alternate_content_source_spec.rb
|
306
306
|
- spec/spec_helper.rb
|