pulp_file_client 1.8.2 → 1.10.1
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 +22 -15
 - data/docs/AcsFileApi.md +417 -0
 - data/docs/ContentFilesApi.md +1 -1
 - data/docs/DistributionsFileApi.md +1 -1
 - data/docs/FileFileAlternateContentSource.md +23 -0
 - data/docs/FileFileAlternateContentSourceResponse.md +27 -0
 - data/docs/FileFileRepository.md +3 -3
 - data/docs/FileFileRepositoryResponse.md +3 -3
 - data/docs/PaginatedfileFileAlternateContentSourceResponseList.md +23 -0
 - data/docs/PatchedfileFileAlternateContentSource.md +23 -0
 - data/docs/PatchedfileFileRepository.md +3 -3
 - data/docs/PublicationsFileApi.md +1 -1
 - data/docs/RemotesFileApi.md +1 -1
 - data/docs/RepositoriesFileApi.md +1 -1
 - data/docs/RepositoriesFileVersionsApi.md +1 -1
 - data/docs/TaskGroupOperationResponse.md +17 -0
 - data/lib/pulp_file_client/api/acs_file_api.rb +510 -0
 - data/lib/pulp_file_client/configuration.rb +2 -2
 - data/lib/pulp_file_client/models/file_file_alternate_content_source.rb +251 -0
 - data/lib/pulp_file_client/models/file_file_alternate_content_source_response.rb +270 -0
 - data/lib/pulp_file_client/models/file_file_repository.rb +17 -16
 - data/lib/pulp_file_client/models/file_file_repository_response.rb +17 -16
 - data/lib/pulp_file_client/models/paginatedfile_file_alternate_content_source_response_list.rb +237 -0
 - data/lib/pulp_file_client/models/patchedfile_file_alternate_content_source.rb +241 -0
 - data/lib/pulp_file_client/models/patchedfile_file_repository.rb +17 -16
 - data/lib/pulp_file_client/models/task_group_operation_response.rb +213 -0
 - data/lib/pulp_file_client/version.rb +1 -1
 - data/lib/pulp_file_client.rb +6 -0
 - data/spec/api/acs_file_api_spec.rb +132 -0
 - data/spec/configuration_spec.rb +3 -3
 - data/spec/models/file_file_alternate_content_source_response_spec.rb +71 -0
 - data/spec/models/file_file_alternate_content_source_spec.rb +59 -0
 - data/spec/models/file_file_repository_response_spec.rb +1 -1
 - data/spec/models/file_file_repository_spec.rb +1 -1
 - data/spec/models/paginatedfile_file_alternate_content_source_response_list_spec.rb +59 -0
 - data/spec/models/patchedfile_file_alternate_content_source_spec.rb +59 -0
 - data/spec/models/patchedfile_file_repository_spec.rb +1 -1
 - data/spec/models/task_group_operation_response_spec.rb +41 -0
 - metadata +47 -23
 
| 
         @@ -50,7 +50,7 @@ describe 'PatchedfileFileRepository' do 
     | 
|
| 
       50 
50 
     | 
    
         
             
                end
         
     | 
| 
       51 
51 
     | 
    
         
             
              end
         
     | 
| 
       52 
52 
     | 
    
         | 
| 
       53 
     | 
    
         
            -
              describe 'test attribute " 
     | 
| 
      
 53 
     | 
    
         
            +
              describe 'test attribute "retain_repo_versions"' do
         
     | 
| 
       54 
54 
     | 
    
         
             
                it 'should work' do
         
     | 
| 
       55 
55 
     | 
    
         
             
                  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
         
     | 
| 
       56 
56 
     | 
    
         
             
                end
         
     | 
| 
         @@ -0,0 +1,41 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            =begin
         
     | 
| 
      
 2 
     | 
    
         
            +
            #Pulp 3 API
         
     | 
| 
      
 3 
     | 
    
         
            +
             
     | 
| 
      
 4 
     | 
    
         
            +
            #Fetch, Upload, Organize, and Distribute Software Packages
         
     | 
| 
      
 5 
     | 
    
         
            +
             
     | 
| 
      
 6 
     | 
    
         
            +
            The version of the OpenAPI document: v3
         
     | 
| 
      
 7 
     | 
    
         
            +
            Contact: pulp-list@redhat.com
         
     | 
| 
      
 8 
     | 
    
         
            +
            Generated by: https://openapi-generator.tech
         
     | 
| 
      
 9 
     | 
    
         
            +
            OpenAPI Generator version: 4.3.1
         
     | 
| 
      
 10 
     | 
    
         
            +
             
     | 
| 
      
 11 
     | 
    
         
            +
            =end
         
     | 
| 
      
 12 
     | 
    
         
            +
             
     | 
| 
      
 13 
     | 
    
         
            +
            require 'spec_helper'
         
     | 
| 
      
 14 
     | 
    
         
            +
            require 'json'
         
     | 
| 
      
 15 
     | 
    
         
            +
            require 'date'
         
     | 
| 
      
 16 
     | 
    
         
            +
             
     | 
| 
      
 17 
     | 
    
         
            +
            # Unit tests for PulpFileClient::TaskGroupOperationResponse
         
     | 
| 
      
 18 
     | 
    
         
            +
            # Automatically generated by openapi-generator (https://openapi-generator.tech)
         
     | 
| 
      
 19 
     | 
    
         
            +
            # Please update as you see appropriate
         
     | 
| 
      
 20 
     | 
    
         
            +
            describe 'TaskGroupOperationResponse' do
         
     | 
| 
      
 21 
     | 
    
         
            +
              before do
         
     | 
| 
      
 22 
     | 
    
         
            +
                # run before each test
         
     | 
| 
      
 23 
     | 
    
         
            +
                @instance = PulpFileClient::TaskGroupOperationResponse.new
         
     | 
| 
      
 24 
     | 
    
         
            +
              end
         
     | 
| 
      
 25 
     | 
    
         
            +
             
     | 
| 
      
 26 
     | 
    
         
            +
              after do
         
     | 
| 
      
 27 
     | 
    
         
            +
                # run after each test
         
     | 
| 
      
 28 
     | 
    
         
            +
              end
         
     | 
| 
      
 29 
     | 
    
         
            +
             
     | 
| 
      
 30 
     | 
    
         
            +
              describe 'test an instance of TaskGroupOperationResponse' do
         
     | 
| 
      
 31 
     | 
    
         
            +
                it 'should create an instance of TaskGroupOperationResponse' do
         
     | 
| 
      
 32 
     | 
    
         
            +
                  expect(@instance).to be_instance_of(PulpFileClient::TaskGroupOperationResponse)
         
     | 
| 
      
 33 
     | 
    
         
            +
                end
         
     | 
| 
      
 34 
     | 
    
         
            +
              end
         
     | 
| 
      
 35 
     | 
    
         
            +
              describe 'test attribute "task_group"' do
         
     | 
| 
      
 36 
     | 
    
         
            +
                it 'should work' do
         
     | 
| 
      
 37 
     | 
    
         
            +
                  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
         
     | 
| 
      
 38 
     | 
    
         
            +
                end
         
     | 
| 
      
 39 
     | 
    
         
            +
              end
         
     | 
| 
      
 40 
     | 
    
         
            +
             
     | 
| 
      
 41 
     | 
    
         
            +
            end
         
     | 
    
        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: 1. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 1.10.1
         
     | 
| 
       5 
5 
     | 
    
         
             
            platform: ruby
         
     | 
| 
       6 
6 
     | 
    
         
             
            authors:
         
     | 
| 
       7 
7 
     | 
    
         
             
            - OpenAPI-Generator
         
     | 
| 
       8 
8 
     | 
    
         
             
            autorequire: 
         
     | 
| 
       9 
9 
     | 
    
         
             
            bindir: bin
         
     | 
| 
       10 
10 
     | 
    
         
             
            cert_chain: []
         
     | 
| 
       11 
     | 
    
         
            -
            date: 2021- 
     | 
| 
      
 11 
     | 
    
         
            +
            date: 2021-11-02 00:00:00.000000000 Z
         
     | 
| 
       12 
12 
     | 
    
         
             
            dependencies:
         
     | 
| 
       13 
13 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       14 
14 
     | 
    
         
             
              name: faraday
         
     | 
| 
         @@ -74,11 +74,14 @@ files: 
     | 
|
| 
       74 
74 
     | 
    
         
             
            - Gemfile
         
     | 
| 
       75 
75 
     | 
    
         
             
            - README.md
         
     | 
| 
       76 
76 
     | 
    
         
             
            - Rakefile
         
     | 
| 
      
 77 
     | 
    
         
            +
            - docs/AcsFileApi.md
         
     | 
| 
       77 
78 
     | 
    
         
             
            - docs/AsyncOperationResponse.md
         
     | 
| 
       78 
79 
     | 
    
         
             
            - docs/ContentFilesApi.md
         
     | 
| 
       79 
80 
     | 
    
         
             
            - docs/ContentSummary.md
         
     | 
| 
       80 
81 
     | 
    
         
             
            - docs/ContentSummaryResponse.md
         
     | 
| 
       81 
82 
     | 
    
         
             
            - docs/DistributionsFileApi.md
         
     | 
| 
      
 83 
     | 
    
         
            +
            - docs/FileFileAlternateContentSource.md
         
     | 
| 
      
 84 
     | 
    
         
            +
            - docs/FileFileAlternateContentSourceResponse.md
         
     | 
| 
       82 
85 
     | 
    
         
             
            - docs/FileFileContent.md
         
     | 
| 
       83 
86 
     | 
    
         
             
            - docs/FileFileContentResponse.md
         
     | 
| 
       84 
87 
     | 
    
         
             
            - docs/FileFileDistribution.md
         
     | 
| 
         @@ -90,11 +93,13 @@ files: 
     | 
|
| 
       90 
93 
     | 
    
         
             
            - docs/FileFileRepository.md
         
     | 
| 
       91 
94 
     | 
    
         
             
            - docs/FileFileRepositoryResponse.md
         
     | 
| 
       92 
95 
     | 
    
         
             
            - docs/PaginatedRepositoryVersionResponseList.md
         
     | 
| 
      
 96 
     | 
    
         
            +
            - docs/PaginatedfileFileAlternateContentSourceResponseList.md
         
     | 
| 
       93 
97 
     | 
    
         
             
            - docs/PaginatedfileFileContentResponseList.md
         
     | 
| 
       94 
98 
     | 
    
         
             
            - docs/PaginatedfileFileDistributionResponseList.md
         
     | 
| 
       95 
99 
     | 
    
         
             
            - docs/PaginatedfileFilePublicationResponseList.md
         
     | 
| 
       96 
100 
     | 
    
         
             
            - docs/PaginatedfileFileRemoteResponseList.md
         
     | 
| 
       97 
101 
     | 
    
         
             
            - docs/PaginatedfileFileRepositoryResponseList.md
         
     | 
| 
      
 102 
     | 
    
         
            +
            - docs/PatchedfileFileAlternateContentSource.md
         
     | 
| 
       98 
103 
     | 
    
         
             
            - docs/PatchedfileFileDistribution.md
         
     | 
| 
       99 
104 
     | 
    
         
             
            - docs/PatchedfileFileRemote.md
         
     | 
| 
       100 
105 
     | 
    
         
             
            - docs/PatchedfileFileRepository.md
         
     | 
| 
         @@ -107,8 +112,10 @@ files: 
     | 
|
| 
       107 
112 
     | 
    
         
             
            - docs/RepositorySyncURL.md
         
     | 
| 
       108 
113 
     | 
    
         
             
            - docs/RepositoryVersion.md
         
     | 
| 
       109 
114 
     | 
    
         
             
            - docs/RepositoryVersionResponse.md
         
     | 
| 
      
 115 
     | 
    
         
            +
            - docs/TaskGroupOperationResponse.md
         
     | 
| 
       110 
116 
     | 
    
         
             
            - git_push.sh
         
     | 
| 
       111 
117 
     | 
    
         
             
            - lib/pulp_file_client.rb
         
     | 
| 
      
 118 
     | 
    
         
            +
            - lib/pulp_file_client/api/acs_file_api.rb
         
     | 
| 
       112 
119 
     | 
    
         
             
            - lib/pulp_file_client/api/content_files_api.rb
         
     | 
| 
       113 
120 
     | 
    
         
             
            - lib/pulp_file_client/api/distributions_file_api.rb
         
     | 
| 
       114 
121 
     | 
    
         
             
            - lib/pulp_file_client/api/publications_file_api.rb
         
     | 
| 
         @@ -121,6 +128,8 @@ files: 
     | 
|
| 
       121 
128 
     | 
    
         
             
            - lib/pulp_file_client/models/async_operation_response.rb
         
     | 
| 
       122 
129 
     | 
    
         
             
            - lib/pulp_file_client/models/content_summary.rb
         
     | 
| 
       123 
130 
     | 
    
         
             
            - lib/pulp_file_client/models/content_summary_response.rb
         
     | 
| 
      
 131 
     | 
    
         
            +
            - lib/pulp_file_client/models/file_file_alternate_content_source.rb
         
     | 
| 
      
 132 
     | 
    
         
            +
            - lib/pulp_file_client/models/file_file_alternate_content_source_response.rb
         
     | 
| 
       124 
133 
     | 
    
         
             
            - lib/pulp_file_client/models/file_file_content.rb
         
     | 
| 
       125 
134 
     | 
    
         
             
            - lib/pulp_file_client/models/file_file_content_response.rb
         
     | 
| 
       126 
135 
     | 
    
         
             
            - lib/pulp_file_client/models/file_file_distribution.rb
         
     | 
| 
         @@ -132,11 +141,13 @@ files: 
     | 
|
| 
       132 
141 
     | 
    
         
             
            - lib/pulp_file_client/models/file_file_repository.rb
         
     | 
| 
       133 
142 
     | 
    
         
             
            - lib/pulp_file_client/models/file_file_repository_response.rb
         
     | 
| 
       134 
143 
     | 
    
         
             
            - lib/pulp_file_client/models/paginated_repository_version_response_list.rb
         
     | 
| 
      
 144 
     | 
    
         
            +
            - lib/pulp_file_client/models/paginatedfile_file_alternate_content_source_response_list.rb
         
     | 
| 
       135 
145 
     | 
    
         
             
            - lib/pulp_file_client/models/paginatedfile_file_content_response_list.rb
         
     | 
| 
       136 
146 
     | 
    
         
             
            - lib/pulp_file_client/models/paginatedfile_file_distribution_response_list.rb
         
     | 
| 
       137 
147 
     | 
    
         
             
            - lib/pulp_file_client/models/paginatedfile_file_publication_response_list.rb
         
     | 
| 
       138 
148 
     | 
    
         
             
            - lib/pulp_file_client/models/paginatedfile_file_remote_response_list.rb
         
     | 
| 
       139 
149 
     | 
    
         
             
            - lib/pulp_file_client/models/paginatedfile_file_repository_response_list.rb
         
     | 
| 
      
 150 
     | 
    
         
            +
            - lib/pulp_file_client/models/patchedfile_file_alternate_content_source.rb
         
     | 
| 
       140 
151 
     | 
    
         
             
            - lib/pulp_file_client/models/patchedfile_file_distribution.rb
         
     | 
| 
       141 
152 
     | 
    
         
             
            - lib/pulp_file_client/models/patchedfile_file_remote.rb
         
     | 
| 
       142 
153 
     | 
    
         
             
            - lib/pulp_file_client/models/patchedfile_file_repository.rb
         
     | 
| 
         @@ -145,8 +156,10 @@ files: 
     | 
|
| 
       145 
156 
     | 
    
         
             
            - lib/pulp_file_client/models/repository_sync_url.rb
         
     | 
| 
       146 
157 
     | 
    
         
             
            - lib/pulp_file_client/models/repository_version.rb
         
     | 
| 
       147 
158 
     | 
    
         
             
            - lib/pulp_file_client/models/repository_version_response.rb
         
     | 
| 
      
 159 
     | 
    
         
            +
            - lib/pulp_file_client/models/task_group_operation_response.rb
         
     | 
| 
       148 
160 
     | 
    
         
             
            - lib/pulp_file_client/version.rb
         
     | 
| 
       149 
161 
     | 
    
         
             
            - pulp_file_client.gemspec
         
     | 
| 
      
 162 
     | 
    
         
            +
            - spec/api/acs_file_api_spec.rb
         
     | 
| 
       150 
163 
     | 
    
         
             
            - spec/api/content_files_api_spec.rb
         
     | 
| 
       151 
164 
     | 
    
         
             
            - spec/api/distributions_file_api_spec.rb
         
     | 
| 
       152 
165 
     | 
    
         
             
            - spec/api/publications_file_api_spec.rb
         
     | 
| 
         @@ -158,6 +171,8 @@ files: 
     | 
|
| 
       158 
171 
     | 
    
         
             
            - spec/models/async_operation_response_spec.rb
         
     | 
| 
       159 
172 
     | 
    
         
             
            - spec/models/content_summary_response_spec.rb
         
     | 
| 
       160 
173 
     | 
    
         
             
            - spec/models/content_summary_spec.rb
         
     | 
| 
      
 174 
     | 
    
         
            +
            - spec/models/file_file_alternate_content_source_response_spec.rb
         
     | 
| 
      
 175 
     | 
    
         
            +
            - spec/models/file_file_alternate_content_source_spec.rb
         
     | 
| 
       161 
176 
     | 
    
         
             
            - spec/models/file_file_content_response_spec.rb
         
     | 
| 
       162 
177 
     | 
    
         
             
            - spec/models/file_file_content_spec.rb
         
     | 
| 
       163 
178 
     | 
    
         
             
            - spec/models/file_file_distribution_response_spec.rb
         
     | 
| 
         @@ -169,11 +184,13 @@ files: 
     | 
|
| 
       169 
184 
     | 
    
         
             
            - spec/models/file_file_repository_response_spec.rb
         
     | 
| 
       170 
185 
     | 
    
         
             
            - spec/models/file_file_repository_spec.rb
         
     | 
| 
       171 
186 
     | 
    
         
             
            - spec/models/paginated_repository_version_response_list_spec.rb
         
     | 
| 
      
 187 
     | 
    
         
            +
            - spec/models/paginatedfile_file_alternate_content_source_response_list_spec.rb
         
     | 
| 
       172 
188 
     | 
    
         
             
            - spec/models/paginatedfile_file_content_response_list_spec.rb
         
     | 
| 
       173 
189 
     | 
    
         
             
            - spec/models/paginatedfile_file_distribution_response_list_spec.rb
         
     | 
| 
       174 
190 
     | 
    
         
             
            - spec/models/paginatedfile_file_publication_response_list_spec.rb
         
     | 
| 
       175 
191 
     | 
    
         
             
            - spec/models/paginatedfile_file_remote_response_list_spec.rb
         
     | 
| 
       176 
192 
     | 
    
         
             
            - spec/models/paginatedfile_file_repository_response_list_spec.rb
         
     | 
| 
      
 193 
     | 
    
         
            +
            - spec/models/patchedfile_file_alternate_content_source_spec.rb
         
     | 
| 
       177 
194 
     | 
    
         
             
            - spec/models/patchedfile_file_distribution_spec.rb
         
     | 
| 
       178 
195 
     | 
    
         
             
            - spec/models/patchedfile_file_remote_spec.rb
         
     | 
| 
       179 
196 
     | 
    
         
             
            - spec/models/patchedfile_file_repository_spec.rb
         
     | 
| 
         @@ -182,6 +199,7 @@ files: 
     | 
|
| 
       182 
199 
     | 
    
         
             
            - spec/models/repository_sync_url_spec.rb
         
     | 
| 
       183 
200 
     | 
    
         
             
            - spec/models/repository_version_response_spec.rb
         
     | 
| 
       184 
201 
     | 
    
         
             
            - spec/models/repository_version_spec.rb
         
     | 
| 
      
 202 
     | 
    
         
            +
            - spec/models/task_group_operation_response_spec.rb
         
     | 
| 
       185 
203 
     | 
    
         
             
            - spec/spec_helper.rb
         
     | 
| 
       186 
204 
     | 
    
         
             
            homepage: https://openapi-generator.tech
         
     | 
| 
       187 
205 
     | 
    
         
             
            licenses:
         
     | 
| 
         @@ -207,39 +225,45 @@ signing_key: 
     | 
|
| 
       207 
225 
     | 
    
         
             
            specification_version: 4
         
     | 
| 
       208 
226 
     | 
    
         
             
            summary: Pulp 3 API Ruby Gem
         
     | 
| 
       209 
227 
     | 
    
         
             
            test_files:
         
     | 
| 
       210 
     | 
    
         
            -
            - spec/api/repositories_file_api_spec.rb
         
     | 
| 
       211 
228 
     | 
    
         
             
            - spec/api/repositories_file_versions_api_spec.rb
         
     | 
| 
       212 
     | 
    
         
            -
            - spec/api/content_files_api_spec.rb
         
     | 
| 
       213 
229 
     | 
    
         
             
            - spec/api/remotes_file_api_spec.rb
         
     | 
| 
      
 230 
     | 
    
         
            +
            - spec/api/acs_file_api_spec.rb
         
     | 
| 
      
 231 
     | 
    
         
            +
            - spec/api/repositories_file_api_spec.rb
         
     | 
| 
       214 
232 
     | 
    
         
             
            - spec/api/distributions_file_api_spec.rb
         
     | 
| 
       215 
233 
     | 
    
         
             
            - spec/api/publications_file_api_spec.rb
         
     | 
| 
      
 234 
     | 
    
         
            +
            - spec/api/content_files_api_spec.rb
         
     | 
| 
       216 
235 
     | 
    
         
             
            - spec/api_client_spec.rb
         
     | 
| 
       217 
236 
     | 
    
         
             
            - spec/configuration_spec.rb
         
     | 
| 
       218 
     | 
    
         
            -
            - spec/models/ 
     | 
| 
       219 
     | 
    
         
            -
            - spec/models/ 
     | 
| 
       220 
     | 
    
         
            -
            - spec/models/ 
     | 
| 
       221 
     | 
    
         
            -
            - spec/models/file_file_content_spec.rb
         
     | 
| 
      
 237 
     | 
    
         
            +
            - spec/models/file_file_repository_spec.rb
         
     | 
| 
      
 238 
     | 
    
         
            +
            - spec/models/patchedfile_file_distribution_spec.rb
         
     | 
| 
      
 239 
     | 
    
         
            +
            - spec/models/content_summary_response_spec.rb
         
     | 
| 
       222 
240 
     | 
    
         
             
            - spec/models/paginatedfile_file_remote_response_list_spec.rb
         
     | 
| 
      
 241 
     | 
    
         
            +
            - spec/models/file_file_alternate_content_source_spec.rb
         
     | 
| 
      
 242 
     | 
    
         
            +
            - spec/models/async_operation_response_spec.rb
         
     | 
| 
      
 243 
     | 
    
         
            +
            - spec/models/file_file_publication_response_spec.rb
         
     | 
| 
      
 244 
     | 
    
         
            +
            - spec/models/file_file_distribution_spec.rb
         
     | 
| 
       223 
245 
     | 
    
         
             
            - spec/models/file_file_content_response_spec.rb
         
     | 
| 
       224 
     | 
    
         
            -
            - spec/models/ 
     | 
| 
       225 
     | 
    
         
            -
            - spec/models/ 
     | 
| 
       226 
     | 
    
         
            -
            - spec/models/ 
     | 
| 
       227 
     | 
    
         
            -
            - spec/models/ 
     | 
| 
      
 246 
     | 
    
         
            +
            - spec/models/content_summary_spec.rb
         
     | 
| 
      
 247 
     | 
    
         
            +
            - spec/models/task_group_operation_response_spec.rb
         
     | 
| 
      
 248 
     | 
    
         
            +
            - spec/models/file_file_alternate_content_source_response_spec.rb
         
     | 
| 
      
 249 
     | 
    
         
            +
            - spec/models/paginatedfile_file_distribution_response_list_spec.rb
         
     | 
| 
       228 
250 
     | 
    
         
             
            - spec/models/policy_enum_spec.rb
         
     | 
| 
       229 
     | 
    
         
            -
            - spec/models/ 
     | 
| 
      
 251 
     | 
    
         
            +
            - spec/models/repository_sync_url_spec.rb
         
     | 
| 
      
 252 
     | 
    
         
            +
            - spec/models/paginatedfile_file_publication_response_list_spec.rb
         
     | 
| 
      
 253 
     | 
    
         
            +
            - spec/models/file_file_remote_spec.rb
         
     | 
| 
       230 
254 
     | 
    
         
             
            - spec/models/patchedfile_file_remote_spec.rb
         
     | 
| 
       231 
     | 
    
         
            -
            - spec/models/ 
     | 
| 
       232 
     | 
    
         
            -
            - spec/models/ 
     | 
| 
      
 255 
     | 
    
         
            +
            - spec/models/repository_version_spec.rb
         
     | 
| 
      
 256 
     | 
    
         
            +
            - spec/models/patchedfile_file_alternate_content_source_spec.rb
         
     | 
| 
       233 
257 
     | 
    
         
             
            - spec/models/file_file_remote_response_spec.rb
         
     | 
| 
       234 
     | 
    
         
            -
            - spec/models/patchedfile_file_distribution_spec.rb
         
     | 
| 
       235 
     | 
    
         
            -
            - spec/models/file_file_publication_response_spec.rb
         
     | 
| 
       236 
     | 
    
         
            -
            - spec/models/repository_sync_url_spec.rb
         
     | 
| 
       237 
     | 
    
         
            -
            - spec/models/repository_add_remove_content_spec.rb
         
     | 
| 
       238 
     | 
    
         
            -
            - spec/models/paginatedfile_file_distribution_response_list_spec.rb
         
     | 
| 
       239 
258 
     | 
    
         
             
            - spec/models/file_file_publication_spec.rb
         
     | 
| 
       240 
     | 
    
         
            -
            - spec/models/ 
     | 
| 
      
 259 
     | 
    
         
            +
            - spec/models/repository_add_remove_content_spec.rb
         
     | 
| 
      
 260 
     | 
    
         
            +
            - spec/models/paginated_repository_version_response_list_spec.rb
         
     | 
| 
       241 
261 
     | 
    
         
             
            - spec/models/file_file_repository_response_spec.rb
         
     | 
| 
       242 
     | 
    
         
            -
            - spec/models/ 
     | 
| 
       243 
     | 
    
         
            -
            - spec/models/ 
     | 
| 
      
 262 
     | 
    
         
            +
            - spec/models/paginatedfile_file_repository_response_list_spec.rb
         
     | 
| 
      
 263 
     | 
    
         
            +
            - spec/models/file_file_distribution_response_spec.rb
         
     | 
| 
      
 264 
     | 
    
         
            +
            - spec/models/paginatedfile_file_content_response_list_spec.rb
         
     | 
| 
      
 265 
     | 
    
         
            +
            - spec/models/repository_version_response_spec.rb
         
     | 
| 
       244 
266 
     | 
    
         
             
            - spec/models/patchedfile_file_repository_spec.rb
         
     | 
| 
      
 267 
     | 
    
         
            +
            - spec/models/paginatedfile_file_alternate_content_source_response_list_spec.rb
         
     | 
| 
      
 268 
     | 
    
         
            +
            - spec/models/file_file_content_spec.rb
         
     | 
| 
       245 
269 
     | 
    
         
             
            - spec/spec_helper.rb
         
     |