pulp_file_client 0.1.0b1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (58) hide show
  1. checksums.yaml +7 -0
  2. data/Gemfile +9 -0
  3. data/Gemfile.lock +79 -0
  4. data/README.md +127 -0
  5. data/Rakefile +10 -0
  6. data/docs/AsyncOperationResponse.md +17 -0
  7. data/docs/ContentFilesApi.md +184 -0
  8. data/docs/DistributionsFileApi.md +352 -0
  9. data/docs/FileContent.md +37 -0
  10. data/docs/FileDistribution.md +29 -0
  11. data/docs/FilePublication.md +31 -0
  12. data/docs/FileRemote.md +45 -0
  13. data/docs/InlineResponse200.md +23 -0
  14. data/docs/InlineResponse2001.md +23 -0
  15. data/docs/InlineResponse2002.md +23 -0
  16. data/docs/InlineResponse2003.md +23 -0
  17. data/docs/PublicationsFileApi.md +229 -0
  18. data/docs/RemotesFileApi.md +411 -0
  19. data/docs/RepositorySyncURL.md +19 -0
  20. data/git_push.sh +55 -0
  21. data/lib/pulp_file_client/api/content_files_api.rb +225 -0
  22. data/lib/pulp_file_client/api/distributions_file_api.rb +430 -0
  23. data/lib/pulp_file_client/api/publications_file_api.rb +273 -0
  24. data/lib/pulp_file_client/api/remotes_file_api.rb +504 -0
  25. data/lib/pulp_file_client/api_client.rb +387 -0
  26. data/lib/pulp_file_client/api_error.rb +57 -0
  27. data/lib/pulp_file_client/configuration.rb +251 -0
  28. data/lib/pulp_file_client/models/async_operation_response.rb +202 -0
  29. data/lib/pulp_file_client/models/file_content.rb +429 -0
  30. data/lib/pulp_file_client/models/file_distribution.rb +337 -0
  31. data/lib/pulp_file_client/models/file_publication.rb +297 -0
  32. data/lib/pulp_file_client/models/file_remote.rb +539 -0
  33. data/lib/pulp_file_client/models/inline_response200.rb +235 -0
  34. data/lib/pulp_file_client/models/inline_response2001.rb +235 -0
  35. data/lib/pulp_file_client/models/inline_response2002.rb +235 -0
  36. data/lib/pulp_file_client/models/inline_response2003.rb +235 -0
  37. data/lib/pulp_file_client/models/repository_sync_url.rb +214 -0
  38. data/lib/pulp_file_client/version.rb +15 -0
  39. data/lib/pulp_file_client.rb +53 -0
  40. data/pulp_file_client.gemspec +45 -0
  41. data/spec/api/content_files_api_spec.rb +77 -0
  42. data/spec/api/distributions_file_api_spec.rb +116 -0
  43. data/spec/api/publications_file_api_spec.rb +85 -0
  44. data/spec/api/remotes_file_api_spec.rb +130 -0
  45. data/spec/api_client_spec.rb +226 -0
  46. data/spec/configuration_spec.rb +42 -0
  47. data/spec/models/async_operation_response_spec.rb +41 -0
  48. data/spec/models/file_content_spec.rb +101 -0
  49. data/spec/models/file_distribution_spec.rb +77 -0
  50. data/spec/models/file_publication_spec.rb +83 -0
  51. data/spec/models/file_remote_spec.rb +129 -0
  52. data/spec/models/inline_response2001_spec.rb +59 -0
  53. data/spec/models/inline_response2002_spec.rb +59 -0
  54. data/spec/models/inline_response2003_spec.rb +59 -0
  55. data/spec/models/inline_response200_spec.rb +59 -0
  56. data/spec/models/repository_sync_url_spec.rb +47 -0
  57. data/spec/spec_helper.rb +111 -0
  58. metadata +297 -0
@@ -0,0 +1,225 @@
1
+ =begin
2
+ #Pulp 3 API
3
+
4
+ #No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
5
+
6
+ The version of the OpenAPI document: v3
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 4.0.0
10
+
11
+ =end
12
+
13
+ require 'uri'
14
+
15
+ module PulpFileClient
16
+ class ContentFilesApi
17
+ attr_accessor :api_client
18
+
19
+ def initialize(api_client = ApiClient.default)
20
+ @api_client = api_client
21
+ end
22
+ # Create a file content
23
+ # <!-- User-facing documentation, rendered as html--> FileContent represents a single file and its metadata, which can be added and removed from repositories.
24
+ # @param data [FileContent]
25
+ # @param [Hash] opts the optional parameters
26
+ # @return [FileContent]
27
+ def create(data, opts = {})
28
+ data, _status_code, _headers = create_with_http_info(data, opts)
29
+ data
30
+ end
31
+
32
+ # Create a file content
33
+ # &lt;!-- User-facing documentation, rendered as html--&gt; FileContent represents a single file and its metadata, which can be added and removed from repositories.
34
+ # @param data [FileContent]
35
+ # @param [Hash] opts the optional parameters
36
+ # @return [Array<(FileContent, Integer, Hash)>] FileContent data, response status code and response headers
37
+ def create_with_http_info(data, opts = {})
38
+ if @api_client.config.debugging
39
+ @api_client.config.logger.debug 'Calling API: ContentFilesApi.create ...'
40
+ end
41
+ # verify the required parameter 'data' is set
42
+ if @api_client.config.client_side_validation && data.nil?
43
+ fail ArgumentError, "Missing the required parameter 'data' when calling ContentFilesApi.create"
44
+ end
45
+ # resource path
46
+ local_var_path = '/pulp/api/v3/content/file/files/'
47
+
48
+ # query parameters
49
+ query_params = opts[:query_params] || {}
50
+
51
+ # header parameters
52
+ header_params = opts[:header_params] || {}
53
+ # HTTP header 'Accept' (if needed)
54
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
55
+ # HTTP header 'Content-Type'
56
+ header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
57
+
58
+ # form parameters
59
+ form_params = opts[:form_params] || {}
60
+
61
+ # http body (model)
62
+ post_body = opts[:body] || @api_client.object_to_http_body(data)
63
+
64
+ # return_type
65
+ return_type = opts[:return_type] || 'FileContent'
66
+
67
+ # auth_names
68
+ auth_names = opts[:auth_names] || ['Basic']
69
+
70
+ new_options = opts.merge(
71
+ :header_params => header_params,
72
+ :query_params => query_params,
73
+ :form_params => form_params,
74
+ :body => post_body,
75
+ :auth_names => auth_names,
76
+ :return_type => return_type
77
+ )
78
+
79
+ data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
80
+ if @api_client.config.debugging
81
+ @api_client.config.logger.debug "API called: ContentFilesApi#create\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
82
+ end
83
+ return data, status_code, headers
84
+ end
85
+
86
+ # List file contents
87
+ # <!-- User-facing documentation, rendered as html--> FileContent represents a single file and its metadata, which can be added and removed from repositories.
88
+ # @param [Hash] opts the optional parameters
89
+ # @option opts [String] :relative_path Filter results where relative_path matches value
90
+ # @option opts [String] :digest Filter results where digest matches value
91
+ # @option opts [String] :repository_version Repository Version referenced by HREF
92
+ # @option opts [String] :repository_version_added Repository Version referenced by HREF
93
+ # @option opts [String] :repository_version_removed Repository Version referenced by HREF
94
+ # @option opts [Integer] :page A page number within the paginated result set.
95
+ # @option opts [Integer] :page_size Number of results to return per page.
96
+ # @return [InlineResponse200]
97
+ def list(opts = {})
98
+ data, _status_code, _headers = list_with_http_info(opts)
99
+ data
100
+ end
101
+
102
+ # List file contents
103
+ # &lt;!-- User-facing documentation, rendered as html--&gt; FileContent represents a single file and its metadata, which can be added and removed from repositories.
104
+ # @param [Hash] opts the optional parameters
105
+ # @option opts [String] :relative_path Filter results where relative_path matches value
106
+ # @option opts [String] :digest Filter results where digest matches value
107
+ # @option opts [String] :repository_version Repository Version referenced by HREF
108
+ # @option opts [String] :repository_version_added Repository Version referenced by HREF
109
+ # @option opts [String] :repository_version_removed Repository Version referenced by HREF
110
+ # @option opts [Integer] :page A page number within the paginated result set.
111
+ # @option opts [Integer] :page_size Number of results to return per page.
112
+ # @return [Array<(InlineResponse200, Integer, Hash)>] InlineResponse200 data, response status code and response headers
113
+ def list_with_http_info(opts = {})
114
+ if @api_client.config.debugging
115
+ @api_client.config.logger.debug 'Calling API: ContentFilesApi.list ...'
116
+ end
117
+ # resource path
118
+ local_var_path = '/pulp/api/v3/content/file/files/'
119
+
120
+ # query parameters
121
+ query_params = opts[:query_params] || {}
122
+ query_params[:'relative_path'] = opts[:'relative_path'] if !opts[:'relative_path'].nil?
123
+ query_params[:'digest'] = opts[:'digest'] if !opts[:'digest'].nil?
124
+ query_params[:'repository_version'] = opts[:'repository_version'] if !opts[:'repository_version'].nil?
125
+ query_params[:'repository_version_added'] = opts[:'repository_version_added'] if !opts[:'repository_version_added'].nil?
126
+ query_params[:'repository_version_removed'] = opts[:'repository_version_removed'] if !opts[:'repository_version_removed'].nil?
127
+ query_params[:'page'] = opts[:'page'] if !opts[:'page'].nil?
128
+ query_params[:'page_size'] = opts[:'page_size'] if !opts[:'page_size'].nil?
129
+
130
+ # header parameters
131
+ header_params = opts[:header_params] || {}
132
+ # HTTP header 'Accept' (if needed)
133
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
134
+
135
+ # form parameters
136
+ form_params = opts[:form_params] || {}
137
+
138
+ # http body (model)
139
+ post_body = opts[:body]
140
+
141
+ # return_type
142
+ return_type = opts[:return_type] || 'InlineResponse200'
143
+
144
+ # auth_names
145
+ auth_names = opts[:auth_names] || ['Basic']
146
+
147
+ new_options = opts.merge(
148
+ :header_params => header_params,
149
+ :query_params => query_params,
150
+ :form_params => form_params,
151
+ :body => post_body,
152
+ :auth_names => auth_names,
153
+ :return_type => return_type
154
+ )
155
+
156
+ data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
157
+ if @api_client.config.debugging
158
+ @api_client.config.logger.debug "API called: ContentFilesApi#list\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
159
+ end
160
+ return data, status_code, headers
161
+ end
162
+
163
+ # Inspect a file content
164
+ # <!-- User-facing documentation, rendered as html--> FileContent represents a single file and its metadata, which can be added and removed from repositories.
165
+ # @param file_content_href [String] URI of File Content. e.g.: /pulp/api/v3/content/file/files/1/
166
+ # @param [Hash] opts the optional parameters
167
+ # @return [FileContent]
168
+ def read(file_content_href, opts = {})
169
+ data, _status_code, _headers = read_with_http_info(file_content_href, opts)
170
+ data
171
+ end
172
+
173
+ # Inspect a file content
174
+ # &lt;!-- User-facing documentation, rendered as html--&gt; FileContent represents a single file and its metadata, which can be added and removed from repositories.
175
+ # @param file_content_href [String] URI of File Content. e.g.: /pulp/api/v3/content/file/files/1/
176
+ # @param [Hash] opts the optional parameters
177
+ # @return [Array<(FileContent, Integer, Hash)>] FileContent data, response status code and response headers
178
+ def read_with_http_info(file_content_href, opts = {})
179
+ if @api_client.config.debugging
180
+ @api_client.config.logger.debug 'Calling API: ContentFilesApi.read ...'
181
+ end
182
+ # verify the required parameter 'file_content_href' is set
183
+ if @api_client.config.client_side_validation && file_content_href.nil?
184
+ fail ArgumentError, "Missing the required parameter 'file_content_href' when calling ContentFilesApi.read"
185
+ end
186
+ # resource path
187
+ local_var_path = '{file_content_href}'.sub('{' + 'file_content_href' + '}', file_content_href.to_s)
188
+
189
+ # query parameters
190
+ query_params = opts[:query_params] || {}
191
+
192
+ # header parameters
193
+ header_params = opts[:header_params] || {}
194
+ # HTTP header 'Accept' (if needed)
195
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
196
+
197
+ # form parameters
198
+ form_params = opts[:form_params] || {}
199
+
200
+ # http body (model)
201
+ post_body = opts[:body]
202
+
203
+ # return_type
204
+ return_type = opts[:return_type] || 'FileContent'
205
+
206
+ # auth_names
207
+ auth_names = opts[:auth_names] || ['Basic']
208
+
209
+ new_options = opts.merge(
210
+ :header_params => header_params,
211
+ :query_params => query_params,
212
+ :form_params => form_params,
213
+ :body => post_body,
214
+ :auth_names => auth_names,
215
+ :return_type => return_type
216
+ )
217
+
218
+ data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
219
+ if @api_client.config.debugging
220
+ @api_client.config.logger.debug "API called: ContentFilesApi#read\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
221
+ end
222
+ return data, status_code, headers
223
+ end
224
+ end
225
+ end
@@ -0,0 +1,430 @@
1
+ =begin
2
+ #Pulp 3 API
3
+
4
+ #No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
5
+
6
+ The version of the OpenAPI document: v3
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 4.0.0
10
+
11
+ =end
12
+
13
+ require 'uri'
14
+
15
+ module PulpFileClient
16
+ class DistributionsFileApi
17
+ attr_accessor :api_client
18
+
19
+ def initialize(api_client = ApiClient.default)
20
+ @api_client = api_client
21
+ end
22
+ # Create a file distribution
23
+ # Trigger an asynchronous create task
24
+ # @param data [FileDistribution]
25
+ # @param [Hash] opts the optional parameters
26
+ # @return [AsyncOperationResponse]
27
+ def create(data, opts = {})
28
+ data, _status_code, _headers = create_with_http_info(data, opts)
29
+ data
30
+ end
31
+
32
+ # Create a file distribution
33
+ # Trigger an asynchronous create task
34
+ # @param data [FileDistribution]
35
+ # @param [Hash] opts the optional parameters
36
+ # @return [Array<(AsyncOperationResponse, Integer, Hash)>] AsyncOperationResponse data, response status code and response headers
37
+ def create_with_http_info(data, opts = {})
38
+ if @api_client.config.debugging
39
+ @api_client.config.logger.debug 'Calling API: DistributionsFileApi.create ...'
40
+ end
41
+ # verify the required parameter 'data' is set
42
+ if @api_client.config.client_side_validation && data.nil?
43
+ fail ArgumentError, "Missing the required parameter 'data' when calling DistributionsFileApi.create"
44
+ end
45
+ # resource path
46
+ local_var_path = '/pulp/api/v3/distributions/file/file/'
47
+
48
+ # query parameters
49
+ query_params = opts[:query_params] || {}
50
+
51
+ # header parameters
52
+ header_params = opts[:header_params] || {}
53
+ # HTTP header 'Accept' (if needed)
54
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
55
+ # HTTP header 'Content-Type'
56
+ header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
57
+
58
+ # form parameters
59
+ form_params = opts[:form_params] || {}
60
+
61
+ # http body (model)
62
+ post_body = opts[:body] || @api_client.object_to_http_body(data)
63
+
64
+ # return_type
65
+ return_type = opts[:return_type] || 'AsyncOperationResponse'
66
+
67
+ # auth_names
68
+ auth_names = opts[:auth_names] || ['Basic']
69
+
70
+ new_options = opts.merge(
71
+ :header_params => header_params,
72
+ :query_params => query_params,
73
+ :form_params => form_params,
74
+ :body => post_body,
75
+ :auth_names => auth_names,
76
+ :return_type => return_type
77
+ )
78
+
79
+ data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
80
+ if @api_client.config.debugging
81
+ @api_client.config.logger.debug "API called: DistributionsFileApi#create\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
82
+ end
83
+ return data, status_code, headers
84
+ end
85
+
86
+ # Delete a file distribution
87
+ # Trigger an asynchronous delete task
88
+ # @param file_distribution_href [String] URI of File Distribution. e.g.: /pulp/api/v3/distributions/file/file/1/
89
+ # @param [Hash] opts the optional parameters
90
+ # @return [AsyncOperationResponse]
91
+ def delete(file_distribution_href, opts = {})
92
+ data, _status_code, _headers = delete_with_http_info(file_distribution_href, opts)
93
+ data
94
+ end
95
+
96
+ # Delete a file distribution
97
+ # Trigger an asynchronous delete task
98
+ # @param file_distribution_href [String] URI of File Distribution. e.g.: /pulp/api/v3/distributions/file/file/1/
99
+ # @param [Hash] opts the optional parameters
100
+ # @return [Array<(AsyncOperationResponse, Integer, Hash)>] AsyncOperationResponse data, response status code and response headers
101
+ def delete_with_http_info(file_distribution_href, opts = {})
102
+ if @api_client.config.debugging
103
+ @api_client.config.logger.debug 'Calling API: DistributionsFileApi.delete ...'
104
+ end
105
+ # verify the required parameter 'file_distribution_href' is set
106
+ if @api_client.config.client_side_validation && file_distribution_href.nil?
107
+ fail ArgumentError, "Missing the required parameter 'file_distribution_href' when calling DistributionsFileApi.delete"
108
+ end
109
+ # resource path
110
+ local_var_path = '{file_distribution_href}'.sub('{' + 'file_distribution_href' + '}', file_distribution_href.to_s)
111
+
112
+ # query parameters
113
+ query_params = opts[:query_params] || {}
114
+
115
+ # header parameters
116
+ header_params = opts[:header_params] || {}
117
+ # HTTP header 'Accept' (if needed)
118
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
119
+
120
+ # form parameters
121
+ form_params = opts[:form_params] || {}
122
+
123
+ # http body (model)
124
+ post_body = opts[:body]
125
+
126
+ # return_type
127
+ return_type = opts[:return_type] || 'AsyncOperationResponse'
128
+
129
+ # auth_names
130
+ auth_names = opts[:auth_names] || ['Basic']
131
+
132
+ new_options = opts.merge(
133
+ :header_params => header_params,
134
+ :query_params => query_params,
135
+ :form_params => form_params,
136
+ :body => post_body,
137
+ :auth_names => auth_names,
138
+ :return_type => return_type
139
+ )
140
+
141
+ data, status_code, headers = @api_client.call_api(:DELETE, local_var_path, new_options)
142
+ if @api_client.config.debugging
143
+ @api_client.config.logger.debug "API called: DistributionsFileApi#delete\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
144
+ end
145
+ return data, status_code, headers
146
+ end
147
+
148
+ # List file distributions
149
+ # <!-- User-facing documentation, rendered as html--> FileDistributions host <a href=\"#operation/publications_file_file_list\">File Publications</a> which makes the metadata and the referenced <a href=\"#operation/content_file_files_list\">File Content</a> available to HTTP clients. Additionally, a FileDistribution with an associated FilePublication can be the target url of a <a href=\"#operation/remotes_file_file_list\">File Remote</a> , allowing another instance of Pulp to sync the content.
150
+ # @param [Hash] opts the optional parameters
151
+ # @option opts [String] :name
152
+ # @option opts [String] :name__in Filter results where name is in a comma-separated list of values
153
+ # @option opts [String] :base_path
154
+ # @option opts [String] :base_path__contains Filter results where base_path contains value
155
+ # @option opts [String] :base_path__icontains Filter results where base_path contains value
156
+ # @option opts [String] :base_path__in Filter results where base_path is in a comma-separated list of values
157
+ # @option opts [Integer] :page A page number within the paginated result set.
158
+ # @option opts [Integer] :page_size Number of results to return per page.
159
+ # @return [InlineResponse2001]
160
+ def list(opts = {})
161
+ data, _status_code, _headers = list_with_http_info(opts)
162
+ data
163
+ end
164
+
165
+ # List file distributions
166
+ # &lt;!-- User-facing documentation, rendered as html--&gt; FileDistributions host &lt;a href&#x3D;\&quot;#operation/publications_file_file_list\&quot;&gt;File Publications&lt;/a&gt; which makes the metadata and the referenced &lt;a href&#x3D;\&quot;#operation/content_file_files_list\&quot;&gt;File Content&lt;/a&gt; available to HTTP clients. Additionally, a FileDistribution with an associated FilePublication can be the target url of a &lt;a href&#x3D;\&quot;#operation/remotes_file_file_list\&quot;&gt;File Remote&lt;/a&gt; , allowing another instance of Pulp to sync the content.
167
+ # @param [Hash] opts the optional parameters
168
+ # @option opts [String] :name
169
+ # @option opts [String] :name__in Filter results where name is in a comma-separated list of values
170
+ # @option opts [String] :base_path
171
+ # @option opts [String] :base_path__contains Filter results where base_path contains value
172
+ # @option opts [String] :base_path__icontains Filter results where base_path contains value
173
+ # @option opts [String] :base_path__in Filter results where base_path is in a comma-separated list of values
174
+ # @option opts [Integer] :page A page number within the paginated result set.
175
+ # @option opts [Integer] :page_size Number of results to return per page.
176
+ # @return [Array<(InlineResponse2001, Integer, Hash)>] InlineResponse2001 data, response status code and response headers
177
+ def list_with_http_info(opts = {})
178
+ if @api_client.config.debugging
179
+ @api_client.config.logger.debug 'Calling API: DistributionsFileApi.list ...'
180
+ end
181
+ # resource path
182
+ local_var_path = '/pulp/api/v3/distributions/file/file/'
183
+
184
+ # query parameters
185
+ query_params = opts[:query_params] || {}
186
+ query_params[:'name'] = opts[:'name'] if !opts[:'name'].nil?
187
+ query_params[:'name__in'] = opts[:'name__in'] if !opts[:'name__in'].nil?
188
+ query_params[:'base_path'] = opts[:'base_path'] if !opts[:'base_path'].nil?
189
+ query_params[:'base_path__contains'] = opts[:'base_path__contains'] if !opts[:'base_path__contains'].nil?
190
+ query_params[:'base_path__icontains'] = opts[:'base_path__icontains'] if !opts[:'base_path__icontains'].nil?
191
+ query_params[:'base_path__in'] = opts[:'base_path__in'] if !opts[:'base_path__in'].nil?
192
+ query_params[:'page'] = opts[:'page'] if !opts[:'page'].nil?
193
+ query_params[:'page_size'] = opts[:'page_size'] if !opts[:'page_size'].nil?
194
+
195
+ # header parameters
196
+ header_params = opts[:header_params] || {}
197
+ # HTTP header 'Accept' (if needed)
198
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
199
+
200
+ # form parameters
201
+ form_params = opts[:form_params] || {}
202
+
203
+ # http body (model)
204
+ post_body = opts[:body]
205
+
206
+ # return_type
207
+ return_type = opts[:return_type] || 'InlineResponse2001'
208
+
209
+ # auth_names
210
+ auth_names = opts[:auth_names] || ['Basic']
211
+
212
+ new_options = opts.merge(
213
+ :header_params => header_params,
214
+ :query_params => query_params,
215
+ :form_params => form_params,
216
+ :body => post_body,
217
+ :auth_names => auth_names,
218
+ :return_type => return_type
219
+ )
220
+
221
+ data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
222
+ if @api_client.config.debugging
223
+ @api_client.config.logger.debug "API called: DistributionsFileApi#list\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
224
+ end
225
+ return data, status_code, headers
226
+ end
227
+
228
+ # Partially update a file distribution
229
+ # Trigger an asynchronous partial update task
230
+ # @param file_distribution_href [String] URI of File Distribution. e.g.: /pulp/api/v3/distributions/file/file/1/
231
+ # @param data [FileDistribution]
232
+ # @param [Hash] opts the optional parameters
233
+ # @return [AsyncOperationResponse]
234
+ def partial_update(file_distribution_href, data, opts = {})
235
+ data, _status_code, _headers = partial_update_with_http_info(file_distribution_href, data, opts)
236
+ data
237
+ end
238
+
239
+ # Partially update a file distribution
240
+ # Trigger an asynchronous partial update task
241
+ # @param file_distribution_href [String] URI of File Distribution. e.g.: /pulp/api/v3/distributions/file/file/1/
242
+ # @param data [FileDistribution]
243
+ # @param [Hash] opts the optional parameters
244
+ # @return [Array<(AsyncOperationResponse, Integer, Hash)>] AsyncOperationResponse data, response status code and response headers
245
+ def partial_update_with_http_info(file_distribution_href, data, opts = {})
246
+ if @api_client.config.debugging
247
+ @api_client.config.logger.debug 'Calling API: DistributionsFileApi.partial_update ...'
248
+ end
249
+ # verify the required parameter 'file_distribution_href' is set
250
+ if @api_client.config.client_side_validation && file_distribution_href.nil?
251
+ fail ArgumentError, "Missing the required parameter 'file_distribution_href' when calling DistributionsFileApi.partial_update"
252
+ end
253
+ # verify the required parameter 'data' is set
254
+ if @api_client.config.client_side_validation && data.nil?
255
+ fail ArgumentError, "Missing the required parameter 'data' when calling DistributionsFileApi.partial_update"
256
+ end
257
+ # resource path
258
+ local_var_path = '{file_distribution_href}'.sub('{' + 'file_distribution_href' + '}', file_distribution_href.to_s)
259
+
260
+ # query parameters
261
+ query_params = opts[:query_params] || {}
262
+
263
+ # header parameters
264
+ header_params = opts[:header_params] || {}
265
+ # HTTP header 'Accept' (if needed)
266
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
267
+ # HTTP header 'Content-Type'
268
+ header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
269
+
270
+ # form parameters
271
+ form_params = opts[:form_params] || {}
272
+
273
+ # http body (model)
274
+ post_body = opts[:body] || @api_client.object_to_http_body(data)
275
+
276
+ # return_type
277
+ return_type = opts[:return_type] || 'AsyncOperationResponse'
278
+
279
+ # auth_names
280
+ auth_names = opts[:auth_names] || ['Basic']
281
+
282
+ new_options = opts.merge(
283
+ :header_params => header_params,
284
+ :query_params => query_params,
285
+ :form_params => form_params,
286
+ :body => post_body,
287
+ :auth_names => auth_names,
288
+ :return_type => return_type
289
+ )
290
+
291
+ data, status_code, headers = @api_client.call_api(:PATCH, local_var_path, new_options)
292
+ if @api_client.config.debugging
293
+ @api_client.config.logger.debug "API called: DistributionsFileApi#partial_update\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
294
+ end
295
+ return data, status_code, headers
296
+ end
297
+
298
+ # Inspect a file distribution
299
+ # <!-- User-facing documentation, rendered as html--> FileDistributions host <a href=\"#operation/publications_file_file_list\">File Publications</a> which makes the metadata and the referenced <a href=\"#operation/content_file_files_list\">File Content</a> available to HTTP clients. Additionally, a FileDistribution with an associated FilePublication can be the target url of a <a href=\"#operation/remotes_file_file_list\">File Remote</a> , allowing another instance of Pulp to sync the content.
300
+ # @param file_distribution_href [String] URI of File Distribution. e.g.: /pulp/api/v3/distributions/file/file/1/
301
+ # @param [Hash] opts the optional parameters
302
+ # @return [FileDistribution]
303
+ def read(file_distribution_href, opts = {})
304
+ data, _status_code, _headers = read_with_http_info(file_distribution_href, opts)
305
+ data
306
+ end
307
+
308
+ # Inspect a file distribution
309
+ # &lt;!-- User-facing documentation, rendered as html--&gt; FileDistributions host &lt;a href&#x3D;\&quot;#operation/publications_file_file_list\&quot;&gt;File Publications&lt;/a&gt; which makes the metadata and the referenced &lt;a href&#x3D;\&quot;#operation/content_file_files_list\&quot;&gt;File Content&lt;/a&gt; available to HTTP clients. Additionally, a FileDistribution with an associated FilePublication can be the target url of a &lt;a href&#x3D;\&quot;#operation/remotes_file_file_list\&quot;&gt;File Remote&lt;/a&gt; , allowing another instance of Pulp to sync the content.
310
+ # @param file_distribution_href [String] URI of File Distribution. e.g.: /pulp/api/v3/distributions/file/file/1/
311
+ # @param [Hash] opts the optional parameters
312
+ # @return [Array<(FileDistribution, Integer, Hash)>] FileDistribution data, response status code and response headers
313
+ def read_with_http_info(file_distribution_href, opts = {})
314
+ if @api_client.config.debugging
315
+ @api_client.config.logger.debug 'Calling API: DistributionsFileApi.read ...'
316
+ end
317
+ # verify the required parameter 'file_distribution_href' is set
318
+ if @api_client.config.client_side_validation && file_distribution_href.nil?
319
+ fail ArgumentError, "Missing the required parameter 'file_distribution_href' when calling DistributionsFileApi.read"
320
+ end
321
+ # resource path
322
+ local_var_path = '{file_distribution_href}'.sub('{' + 'file_distribution_href' + '}', file_distribution_href.to_s)
323
+
324
+ # query parameters
325
+ query_params = opts[:query_params] || {}
326
+
327
+ # header parameters
328
+ header_params = opts[:header_params] || {}
329
+ # HTTP header 'Accept' (if needed)
330
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
331
+
332
+ # form parameters
333
+ form_params = opts[:form_params] || {}
334
+
335
+ # http body (model)
336
+ post_body = opts[:body]
337
+
338
+ # return_type
339
+ return_type = opts[:return_type] || 'FileDistribution'
340
+
341
+ # auth_names
342
+ auth_names = opts[:auth_names] || ['Basic']
343
+
344
+ new_options = opts.merge(
345
+ :header_params => header_params,
346
+ :query_params => query_params,
347
+ :form_params => form_params,
348
+ :body => post_body,
349
+ :auth_names => auth_names,
350
+ :return_type => return_type
351
+ )
352
+
353
+ data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
354
+ if @api_client.config.debugging
355
+ @api_client.config.logger.debug "API called: DistributionsFileApi#read\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
356
+ end
357
+ return data, status_code, headers
358
+ end
359
+
360
+ # Update a file distribution
361
+ # Trigger an asynchronous update task
362
+ # @param file_distribution_href [String] URI of File Distribution. e.g.: /pulp/api/v3/distributions/file/file/1/
363
+ # @param data [FileDistribution]
364
+ # @param [Hash] opts the optional parameters
365
+ # @return [AsyncOperationResponse]
366
+ def update(file_distribution_href, data, opts = {})
367
+ data, _status_code, _headers = update_with_http_info(file_distribution_href, data, opts)
368
+ data
369
+ end
370
+
371
+ # Update a file distribution
372
+ # Trigger an asynchronous update task
373
+ # @param file_distribution_href [String] URI of File Distribution. e.g.: /pulp/api/v3/distributions/file/file/1/
374
+ # @param data [FileDistribution]
375
+ # @param [Hash] opts the optional parameters
376
+ # @return [Array<(AsyncOperationResponse, Integer, Hash)>] AsyncOperationResponse data, response status code and response headers
377
+ def update_with_http_info(file_distribution_href, data, opts = {})
378
+ if @api_client.config.debugging
379
+ @api_client.config.logger.debug 'Calling API: DistributionsFileApi.update ...'
380
+ end
381
+ # verify the required parameter 'file_distribution_href' is set
382
+ if @api_client.config.client_side_validation && file_distribution_href.nil?
383
+ fail ArgumentError, "Missing the required parameter 'file_distribution_href' when calling DistributionsFileApi.update"
384
+ end
385
+ # verify the required parameter 'data' is set
386
+ if @api_client.config.client_side_validation && data.nil?
387
+ fail ArgumentError, "Missing the required parameter 'data' when calling DistributionsFileApi.update"
388
+ end
389
+ # resource path
390
+ local_var_path = '{file_distribution_href}'.sub('{' + 'file_distribution_href' + '}', file_distribution_href.to_s)
391
+
392
+ # query parameters
393
+ query_params = opts[:query_params] || {}
394
+
395
+ # header parameters
396
+ header_params = opts[:header_params] || {}
397
+ # HTTP header 'Accept' (if needed)
398
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
399
+ # HTTP header 'Content-Type'
400
+ header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
401
+
402
+ # form parameters
403
+ form_params = opts[:form_params] || {}
404
+
405
+ # http body (model)
406
+ post_body = opts[:body] || @api_client.object_to_http_body(data)
407
+
408
+ # return_type
409
+ return_type = opts[:return_type] || 'AsyncOperationResponse'
410
+
411
+ # auth_names
412
+ auth_names = opts[:auth_names] || ['Basic']
413
+
414
+ new_options = opts.merge(
415
+ :header_params => header_params,
416
+ :query_params => query_params,
417
+ :form_params => form_params,
418
+ :body => post_body,
419
+ :auth_names => auth_names,
420
+ :return_type => return_type
421
+ )
422
+
423
+ data, status_code, headers = @api_client.call_api(:PUT, local_var_path, new_options)
424
+ if @api_client.config.debugging
425
+ @api_client.config.logger.debug "API called: DistributionsFileApi#update\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
426
+ end
427
+ return data, status_code, headers
428
+ end
429
+ end
430
+ end