pulp_cookbook_client 0.1.0b9
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 +7 -0
- data/Gemfile +9 -0
- data/README.md +162 -0
- data/Rakefile +10 -0
- data/docs/AsyncOperationResponse.md +17 -0
- data/docs/ContentCookbooksApi.md +208 -0
- data/docs/ContentSummary.md +21 -0
- data/docs/ContentSummaryResponse.md +21 -0
- data/docs/CookbookCookbookDistribution.md +27 -0
- data/docs/CookbookCookbookDistributionResponse.md +33 -0
- data/docs/CookbookCookbookPackageContent.md +25 -0
- data/docs/CookbookCookbookPackageContentResponse.md +29 -0
- data/docs/CookbookCookbookPublication.md +19 -0
- data/docs/CookbookCookbookPublicationResponse.md +25 -0
- data/docs/CookbookCookbookRemote.md +59 -0
- data/docs/CookbookCookbookRemoteResponse.md +55 -0
- data/docs/CookbookCookbookRepository.md +25 -0
- data/docs/CookbookCookbookRepositoryResponse.md +33 -0
- data/docs/DistributionsCookbookApi.md +372 -0
- data/docs/PaginatedRepositoryVersionResponseList.md +23 -0
- data/docs/PaginatedcookbookCookbookDistributionResponseList.md +23 -0
- data/docs/PaginatedcookbookCookbookPackageContentResponseList.md +23 -0
- data/docs/PaginatedcookbookCookbookPublicationResponseList.md +23 -0
- data/docs/PaginatedcookbookCookbookRemoteResponseList.md +23 -0
- data/docs/PaginatedcookbookCookbookRepositoryResponseList.md +23 -0
- data/docs/PatchedcookbookCookbookDistribution.md +27 -0
- data/docs/PatchedcookbookCookbookRemote.md +59 -0
- data/docs/PatchedcookbookCookbookRepository.md +25 -0
- data/docs/PolicyEnum.md +16 -0
- data/docs/PublicationsCookbookApi.md +257 -0
- data/docs/RemotesCookbookApi.md +376 -0
- data/docs/RepositoriesCookbookApi.md +475 -0
- data/docs/RepositoriesCookbookVersionsApi.md +271 -0
- data/docs/RepositoryAddRemoveContent.md +21 -0
- data/docs/RepositorySyncURL.md +19 -0
- data/docs/RepositoryVersion.md +17 -0
- data/docs/RepositoryVersionResponse.md +27 -0
- data/git_push.sh +58 -0
- data/lib/pulp_cookbook_client/api/content_cookbooks_api.rb +264 -0
- data/lib/pulp_cookbook_client/api/distributions_cookbook_api.rb +457 -0
- data/lib/pulp_cookbook_client/api/publications_cookbook_api.rb +312 -0
- data/lib/pulp_cookbook_client/api/remotes_cookbook_api.rb +463 -0
- data/lib/pulp_cookbook_client/api/repositories_cookbook_api.rb +583 -0
- data/lib/pulp_cookbook_client/api/repositories_cookbook_versions_api.rb +339 -0
- data/lib/pulp_cookbook_client/api_client.rb +406 -0
- data/lib/pulp_cookbook_client/api_error.rb +57 -0
- data/lib/pulp_cookbook_client/configuration.rb +250 -0
- data/lib/pulp_cookbook_client/models/async_operation_response.rb +213 -0
- data/lib/pulp_cookbook_client/models/content_summary.rb +246 -0
- data/lib/pulp_cookbook_client/models/content_summary_response.rb +246 -0
- data/lib/pulp_cookbook_client/models/cookbook_cookbook_distribution.rb +308 -0
- data/lib/pulp_cookbook_client/models/cookbook_cookbook_distribution_response.rb +299 -0
- data/lib/pulp_cookbook_client/models/cookbook_cookbook_package_content.rb +287 -0
- data/lib/pulp_cookbook_client/models/cookbook_cookbook_package_content_response.rb +272 -0
- data/lib/pulp_cookbook_client/models/cookbook_cookbook_publication.rb +217 -0
- data/lib/pulp_cookbook_client/models/cookbook_cookbook_publication_response.rb +248 -0
- data/lib/pulp_cookbook_client/models/cookbook_cookbook_remote.rb +677 -0
- data/lib/pulp_cookbook_client/models/cookbook_cookbook_remote_response.rb +493 -0
- data/lib/pulp_cookbook_client/models/cookbook_cookbook_repository.rb +304 -0
- data/lib/pulp_cookbook_client/models/cookbook_cookbook_repository_response.rb +307 -0
- data/lib/pulp_cookbook_client/models/paginated_repository_version_response_list.rb +237 -0
- data/lib/pulp_cookbook_client/models/paginatedcookbook_cookbook_distribution_response_list.rb +237 -0
- data/lib/pulp_cookbook_client/models/paginatedcookbook_cookbook_package_content_response_list.rb +237 -0
- data/lib/pulp_cookbook_client/models/paginatedcookbook_cookbook_publication_response_list.rb +237 -0
- data/lib/pulp_cookbook_client/models/paginatedcookbook_cookbook_remote_response_list.rb +237 -0
- data/lib/pulp_cookbook_client/models/paginatedcookbook_cookbook_repository_response_list.rb +237 -0
- data/lib/pulp_cookbook_client/models/patchedcookbook_cookbook_distribution.rb +290 -0
- data/lib/pulp_cookbook_client/models/patchedcookbook_cookbook_remote.rb +659 -0
- data/lib/pulp_cookbook_client/models/patchedcookbook_cookbook_repository.rb +295 -0
- data/lib/pulp_cookbook_client/models/policy_enum.rb +37 -0
- data/lib/pulp_cookbook_client/models/repository_add_remove_content.rb +232 -0
- data/lib/pulp_cookbook_client/models/repository_sync_url.rb +220 -0
- data/lib/pulp_cookbook_client/models/repository_version.rb +208 -0
- data/lib/pulp_cookbook_client/models/repository_version_response.rb +255 -0
- data/lib/pulp_cookbook_client/version.rb +15 -0
- data/lib/pulp_cookbook_client.rb +72 -0
- data/pulp_cookbook_client.gemspec +39 -0
- data/spec/api/content_cookbooks_api_spec.rb +87 -0
- data/spec/api/distributions_cookbook_api_spec.rb +125 -0
- data/spec/api/publications_cookbook_api_spec.rb +98 -0
- data/spec/api/remotes_cookbook_api_spec.rb +127 -0
- data/spec/api/repositories_cookbook_api_spec.rb +146 -0
- data/spec/api/repositories_cookbook_versions_api_spec.rb +104 -0
- data/spec/api_client_spec.rb +188 -0
- data/spec/configuration_spec.rb +42 -0
- data/spec/models/async_operation_response_spec.rb +41 -0
- data/spec/models/content_summary_response_spec.rb +53 -0
- data/spec/models/content_summary_spec.rb +53 -0
- data/spec/models/cookbook_cookbook_distribution_response_spec.rb +89 -0
- data/spec/models/cookbook_cookbook_distribution_spec.rb +71 -0
- data/spec/models/cookbook_cookbook_package_content_response_spec.rb +77 -0
- data/spec/models/cookbook_cookbook_package_content_spec.rb +65 -0
- data/spec/models/cookbook_cookbook_publication_response_spec.rb +65 -0
- data/spec/models/cookbook_cookbook_publication_spec.rb +47 -0
- data/spec/models/cookbook_cookbook_remote_response_spec.rb +155 -0
- data/spec/models/cookbook_cookbook_remote_spec.rb +167 -0
- data/spec/models/cookbook_cookbook_repository_response_spec.rb +89 -0
- data/spec/models/cookbook_cookbook_repository_spec.rb +65 -0
- data/spec/models/paginated_repository_version_response_list_spec.rb +59 -0
- data/spec/models/paginatedcookbook_cookbook_distribution_response_list_spec.rb +59 -0
- data/spec/models/paginatedcookbook_cookbook_package_content_response_list_spec.rb +59 -0
- data/spec/models/paginatedcookbook_cookbook_publication_response_list_spec.rb +59 -0
- data/spec/models/paginatedcookbook_cookbook_remote_response_list_spec.rb +59 -0
- data/spec/models/paginatedcookbook_cookbook_repository_response_list_spec.rb +59 -0
- data/spec/models/patchedcookbook_cookbook_distribution_spec.rb +71 -0
- data/spec/models/patchedcookbook_cookbook_remote_spec.rb +167 -0
- data/spec/models/patchedcookbook_cookbook_repository_spec.rb +65 -0
- data/spec/models/policy_enum_spec.rb +35 -0
- data/spec/models/repository_add_remove_content_spec.rb +53 -0
- data/spec/models/repository_sync_url_spec.rb +47 -0
- data/spec/models/repository_version_response_spec.rb +71 -0
- data/spec/models/repository_version_spec.rb +41 -0
- data/spec/spec_helper.rb +111 -0
- metadata +251 -0
@@ -0,0 +1,463 @@
|
|
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 'cgi'
|
14
|
+
|
15
|
+
module PulpCookbookClient
|
16
|
+
class RemotesCookbookApi
|
17
|
+
attr_accessor :api_client
|
18
|
+
|
19
|
+
def initialize(api_client = ApiClient.default)
|
20
|
+
@api_client = api_client
|
21
|
+
end
|
22
|
+
# Create a cookbook remote
|
23
|
+
# Cookbook Remote Endpoint. CookbookRemote represents an external source of Cookbook Content. The target url of a CookbookRemote must point to a universe API endpont.
|
24
|
+
# @param cookbook_cookbook_remote [CookbookCookbookRemote]
|
25
|
+
# @param [Hash] opts the optional parameters
|
26
|
+
# @return [CookbookCookbookRemoteResponse]
|
27
|
+
def create(cookbook_cookbook_remote, opts = {})
|
28
|
+
data, _status_code, _headers = create_with_http_info(cookbook_cookbook_remote, opts)
|
29
|
+
data
|
30
|
+
end
|
31
|
+
|
32
|
+
# Create a cookbook remote
|
33
|
+
# Cookbook Remote Endpoint. CookbookRemote represents an external source of Cookbook Content. The target url of a CookbookRemote must point to a universe API endpont.
|
34
|
+
# @param cookbook_cookbook_remote [CookbookCookbookRemote]
|
35
|
+
# @param [Hash] opts the optional parameters
|
36
|
+
# @return [Array<(CookbookCookbookRemoteResponse, Integer, Hash)>] CookbookCookbookRemoteResponse data, response status code and response headers
|
37
|
+
def create_with_http_info(cookbook_cookbook_remote, opts = {})
|
38
|
+
if @api_client.config.debugging
|
39
|
+
@api_client.config.logger.debug 'Calling API: RemotesCookbookApi.create ...'
|
40
|
+
end
|
41
|
+
# verify the required parameter 'cookbook_cookbook_remote' is set
|
42
|
+
if @api_client.config.client_side_validation && cookbook_cookbook_remote.nil?
|
43
|
+
fail ArgumentError, "Missing the required parameter 'cookbook_cookbook_remote' when calling RemotesCookbookApi.create"
|
44
|
+
end
|
45
|
+
# resource path
|
46
|
+
local_var_path = '/pulp/api/v3/remotes/cookbook/cookbook/'
|
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', 'application/x-www-form-urlencoded', 'multipart/form-data'])
|
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(cookbook_cookbook_remote)
|
63
|
+
|
64
|
+
# return_type
|
65
|
+
return_type = opts[:return_type] || 'CookbookCookbookRemoteResponse'
|
66
|
+
|
67
|
+
# auth_names
|
68
|
+
auth_names = opts[:auth_names] || ['basicAuth']
|
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: RemotesCookbookApi#create\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
82
|
+
end
|
83
|
+
return data, status_code, headers
|
84
|
+
end
|
85
|
+
|
86
|
+
# Delete a cookbook remote
|
87
|
+
# Trigger an asynchronous delete task
|
88
|
+
# @param cookbook_cookbook_remote_href [String]
|
89
|
+
# @param [Hash] opts the optional parameters
|
90
|
+
# @return [AsyncOperationResponse]
|
91
|
+
def delete(cookbook_cookbook_remote_href, opts = {})
|
92
|
+
data, _status_code, _headers = delete_with_http_info(cookbook_cookbook_remote_href, opts)
|
93
|
+
data
|
94
|
+
end
|
95
|
+
|
96
|
+
# Delete a cookbook remote
|
97
|
+
# Trigger an asynchronous delete task
|
98
|
+
# @param cookbook_cookbook_remote_href [String]
|
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(cookbook_cookbook_remote_href, opts = {})
|
102
|
+
if @api_client.config.debugging
|
103
|
+
@api_client.config.logger.debug 'Calling API: RemotesCookbookApi.delete ...'
|
104
|
+
end
|
105
|
+
# verify the required parameter 'cookbook_cookbook_remote_href' is set
|
106
|
+
if @api_client.config.client_side_validation && cookbook_cookbook_remote_href.nil?
|
107
|
+
fail ArgumentError, "Missing the required parameter 'cookbook_cookbook_remote_href' when calling RemotesCookbookApi.delete"
|
108
|
+
end
|
109
|
+
# resource path
|
110
|
+
local_var_path = '{cookbook_cookbook_remote_href}'.sub('{' + 'cookbook_cookbook_remote_href' + '}', CGI.escape(cookbook_cookbook_remote_href.to_s).gsub('%2F', '/'))
|
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] || ['basicAuth']
|
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: RemotesCookbookApi#delete\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
144
|
+
end
|
145
|
+
return data, status_code, headers
|
146
|
+
end
|
147
|
+
|
148
|
+
# List cookbook remotes
|
149
|
+
# Cookbook Remote Endpoint. CookbookRemote represents an external source of Cookbook Content. The target url of a CookbookRemote must point to a universe API endpont.
|
150
|
+
# @param [Hash] opts the optional parameters
|
151
|
+
# @option opts [Integer] :limit Number of results to return per page.
|
152
|
+
# @option opts [String] :name
|
153
|
+
# @option opts [String] :name__contains Filter results where name contains value
|
154
|
+
# @option opts [String] :name__icontains Filter results where name contains value
|
155
|
+
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
156
|
+
# @option opts [String] :name__startswith Filter results where name starts with value
|
157
|
+
# @option opts [Integer] :offset The initial index from which to return the results.
|
158
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
159
|
+
# @option opts [String] :pulp_label_select Filter labels by search string
|
160
|
+
# @option opts [DateTime] :pulp_last_updated ISO 8601 formatted dates are supported
|
161
|
+
# @option opts [DateTime] :pulp_last_updated__gt Filter results where pulp_last_updated is greater than value
|
162
|
+
# @option opts [DateTime] :pulp_last_updated__gte Filter results where pulp_last_updated is greater than or equal to value
|
163
|
+
# @option opts [DateTime] :pulp_last_updated__lt Filter results where pulp_last_updated is less than value
|
164
|
+
# @option opts [DateTime] :pulp_last_updated__lte Filter results where pulp_last_updated is less than or equal to value
|
165
|
+
# @option opts [Array<DateTime>] :pulp_last_updated__range Filter results where pulp_last_updated is between two comma separated values
|
166
|
+
# @option opts [String] :fields A list of fields to include in the response.
|
167
|
+
# @option opts [String] :exclude_fields A list of fields to exclude from the response.
|
168
|
+
# @return [PaginatedcookbookCookbookRemoteResponseList]
|
169
|
+
def list(opts = {})
|
170
|
+
data, _status_code, _headers = list_with_http_info(opts)
|
171
|
+
data
|
172
|
+
end
|
173
|
+
|
174
|
+
# List cookbook remotes
|
175
|
+
# Cookbook Remote Endpoint. CookbookRemote represents an external source of Cookbook Content. The target url of a CookbookRemote must point to a universe API endpont.
|
176
|
+
# @param [Hash] opts the optional parameters
|
177
|
+
# @option opts [Integer] :limit Number of results to return per page.
|
178
|
+
# @option opts [String] :name
|
179
|
+
# @option opts [String] :name__contains Filter results where name contains value
|
180
|
+
# @option opts [String] :name__icontains Filter results where name contains value
|
181
|
+
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
182
|
+
# @option opts [String] :name__startswith Filter results where name starts with value
|
183
|
+
# @option opts [Integer] :offset The initial index from which to return the results.
|
184
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
185
|
+
# @option opts [String] :pulp_label_select Filter labels by search string
|
186
|
+
# @option opts [DateTime] :pulp_last_updated ISO 8601 formatted dates are supported
|
187
|
+
# @option opts [DateTime] :pulp_last_updated__gt Filter results where pulp_last_updated is greater than value
|
188
|
+
# @option opts [DateTime] :pulp_last_updated__gte Filter results where pulp_last_updated is greater than or equal to value
|
189
|
+
# @option opts [DateTime] :pulp_last_updated__lt Filter results where pulp_last_updated is less than value
|
190
|
+
# @option opts [DateTime] :pulp_last_updated__lte Filter results where pulp_last_updated is less than or equal to value
|
191
|
+
# @option opts [Array<DateTime>] :pulp_last_updated__range Filter results where pulp_last_updated is between two comma separated values
|
192
|
+
# @option opts [String] :fields A list of fields to include in the response.
|
193
|
+
# @option opts [String] :exclude_fields A list of fields to exclude from the response.
|
194
|
+
# @return [Array<(PaginatedcookbookCookbookRemoteResponseList, Integer, Hash)>] PaginatedcookbookCookbookRemoteResponseList data, response status code and response headers
|
195
|
+
def list_with_http_info(opts = {})
|
196
|
+
if @api_client.config.debugging
|
197
|
+
@api_client.config.logger.debug 'Calling API: RemotesCookbookApi.list ...'
|
198
|
+
end
|
199
|
+
# resource path
|
200
|
+
local_var_path = '/pulp/api/v3/remotes/cookbook/cookbook/'
|
201
|
+
|
202
|
+
# query parameters
|
203
|
+
query_params = opts[:query_params] || {}
|
204
|
+
query_params[:'limit'] = opts[:'limit'] if !opts[:'limit'].nil?
|
205
|
+
query_params[:'name'] = opts[:'name'] if !opts[:'name'].nil?
|
206
|
+
query_params[:'name__contains'] = opts[:'name__contains'] if !opts[:'name__contains'].nil?
|
207
|
+
query_params[:'name__icontains'] = opts[:'name__icontains'] if !opts[:'name__icontains'].nil?
|
208
|
+
query_params[:'name__in'] = @api_client.build_collection_param(opts[:'name__in'], :csv) if !opts[:'name__in'].nil?
|
209
|
+
query_params[:'name__startswith'] = opts[:'name__startswith'] if !opts[:'name__startswith'].nil?
|
210
|
+
query_params[:'offset'] = opts[:'offset'] if !opts[:'offset'].nil?
|
211
|
+
query_params[:'ordering'] = opts[:'ordering'] if !opts[:'ordering'].nil?
|
212
|
+
query_params[:'pulp_label_select'] = opts[:'pulp_label_select'] if !opts[:'pulp_label_select'].nil?
|
213
|
+
query_params[:'pulp_last_updated'] = opts[:'pulp_last_updated'] if !opts[:'pulp_last_updated'].nil?
|
214
|
+
query_params[:'pulp_last_updated__gt'] = opts[:'pulp_last_updated__gt'] if !opts[:'pulp_last_updated__gt'].nil?
|
215
|
+
query_params[:'pulp_last_updated__gte'] = opts[:'pulp_last_updated__gte'] if !opts[:'pulp_last_updated__gte'].nil?
|
216
|
+
query_params[:'pulp_last_updated__lt'] = opts[:'pulp_last_updated__lt'] if !opts[:'pulp_last_updated__lt'].nil?
|
217
|
+
query_params[:'pulp_last_updated__lte'] = opts[:'pulp_last_updated__lte'] if !opts[:'pulp_last_updated__lte'].nil?
|
218
|
+
query_params[:'pulp_last_updated__range'] = @api_client.build_collection_param(opts[:'pulp_last_updated__range'], :csv) if !opts[:'pulp_last_updated__range'].nil?
|
219
|
+
query_params[:'fields'] = opts[:'fields'] if !opts[:'fields'].nil?
|
220
|
+
query_params[:'exclude_fields'] = opts[:'exclude_fields'] if !opts[:'exclude_fields'].nil?
|
221
|
+
|
222
|
+
# header parameters
|
223
|
+
header_params = opts[:header_params] || {}
|
224
|
+
# HTTP header 'Accept' (if needed)
|
225
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
226
|
+
|
227
|
+
# form parameters
|
228
|
+
form_params = opts[:form_params] || {}
|
229
|
+
|
230
|
+
# http body (model)
|
231
|
+
post_body = opts[:body]
|
232
|
+
|
233
|
+
# return_type
|
234
|
+
return_type = opts[:return_type] || 'PaginatedcookbookCookbookRemoteResponseList'
|
235
|
+
|
236
|
+
# auth_names
|
237
|
+
auth_names = opts[:auth_names] || ['basicAuth']
|
238
|
+
|
239
|
+
new_options = opts.merge(
|
240
|
+
:header_params => header_params,
|
241
|
+
:query_params => query_params,
|
242
|
+
:form_params => form_params,
|
243
|
+
:body => post_body,
|
244
|
+
:auth_names => auth_names,
|
245
|
+
:return_type => return_type
|
246
|
+
)
|
247
|
+
|
248
|
+
data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
|
249
|
+
if @api_client.config.debugging
|
250
|
+
@api_client.config.logger.debug "API called: RemotesCookbookApi#list\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
251
|
+
end
|
252
|
+
return data, status_code, headers
|
253
|
+
end
|
254
|
+
|
255
|
+
# Update a cookbook remote
|
256
|
+
# Trigger an asynchronous partial update task
|
257
|
+
# @param cookbook_cookbook_remote_href [String]
|
258
|
+
# @param patchedcookbook_cookbook_remote [PatchedcookbookCookbookRemote]
|
259
|
+
# @param [Hash] opts the optional parameters
|
260
|
+
# @return [AsyncOperationResponse]
|
261
|
+
def partial_update(cookbook_cookbook_remote_href, patchedcookbook_cookbook_remote, opts = {})
|
262
|
+
data, _status_code, _headers = partial_update_with_http_info(cookbook_cookbook_remote_href, patchedcookbook_cookbook_remote, opts)
|
263
|
+
data
|
264
|
+
end
|
265
|
+
|
266
|
+
# Update a cookbook remote
|
267
|
+
# Trigger an asynchronous partial update task
|
268
|
+
# @param cookbook_cookbook_remote_href [String]
|
269
|
+
# @param patchedcookbook_cookbook_remote [PatchedcookbookCookbookRemote]
|
270
|
+
# @param [Hash] opts the optional parameters
|
271
|
+
# @return [Array<(AsyncOperationResponse, Integer, Hash)>] AsyncOperationResponse data, response status code and response headers
|
272
|
+
def partial_update_with_http_info(cookbook_cookbook_remote_href, patchedcookbook_cookbook_remote, opts = {})
|
273
|
+
if @api_client.config.debugging
|
274
|
+
@api_client.config.logger.debug 'Calling API: RemotesCookbookApi.partial_update ...'
|
275
|
+
end
|
276
|
+
# verify the required parameter 'cookbook_cookbook_remote_href' is set
|
277
|
+
if @api_client.config.client_side_validation && cookbook_cookbook_remote_href.nil?
|
278
|
+
fail ArgumentError, "Missing the required parameter 'cookbook_cookbook_remote_href' when calling RemotesCookbookApi.partial_update"
|
279
|
+
end
|
280
|
+
# verify the required parameter 'patchedcookbook_cookbook_remote' is set
|
281
|
+
if @api_client.config.client_side_validation && patchedcookbook_cookbook_remote.nil?
|
282
|
+
fail ArgumentError, "Missing the required parameter 'patchedcookbook_cookbook_remote' when calling RemotesCookbookApi.partial_update"
|
283
|
+
end
|
284
|
+
# resource path
|
285
|
+
local_var_path = '{cookbook_cookbook_remote_href}'.sub('{' + 'cookbook_cookbook_remote_href' + '}', CGI.escape(cookbook_cookbook_remote_href.to_s).gsub('%2F', '/'))
|
286
|
+
|
287
|
+
# query parameters
|
288
|
+
query_params = opts[:query_params] || {}
|
289
|
+
|
290
|
+
# header parameters
|
291
|
+
header_params = opts[:header_params] || {}
|
292
|
+
# HTTP header 'Accept' (if needed)
|
293
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
294
|
+
# HTTP header 'Content-Type'
|
295
|
+
header_params['Content-Type'] = @api_client.select_header_content_type(['application/json', 'application/x-www-form-urlencoded', 'multipart/form-data'])
|
296
|
+
|
297
|
+
# form parameters
|
298
|
+
form_params = opts[:form_params] || {}
|
299
|
+
|
300
|
+
# http body (model)
|
301
|
+
post_body = opts[:body] || @api_client.object_to_http_body(patchedcookbook_cookbook_remote)
|
302
|
+
|
303
|
+
# return_type
|
304
|
+
return_type = opts[:return_type] || 'AsyncOperationResponse'
|
305
|
+
|
306
|
+
# auth_names
|
307
|
+
auth_names = opts[:auth_names] || ['basicAuth']
|
308
|
+
|
309
|
+
new_options = opts.merge(
|
310
|
+
:header_params => header_params,
|
311
|
+
:query_params => query_params,
|
312
|
+
:form_params => form_params,
|
313
|
+
:body => post_body,
|
314
|
+
:auth_names => auth_names,
|
315
|
+
:return_type => return_type
|
316
|
+
)
|
317
|
+
|
318
|
+
data, status_code, headers = @api_client.call_api(:PATCH, local_var_path, new_options)
|
319
|
+
if @api_client.config.debugging
|
320
|
+
@api_client.config.logger.debug "API called: RemotesCookbookApi#partial_update\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
321
|
+
end
|
322
|
+
return data, status_code, headers
|
323
|
+
end
|
324
|
+
|
325
|
+
# Inspect a cookbook remote
|
326
|
+
# Cookbook Remote Endpoint. CookbookRemote represents an external source of Cookbook Content. The target url of a CookbookRemote must point to a universe API endpont.
|
327
|
+
# @param cookbook_cookbook_remote_href [String]
|
328
|
+
# @param [Hash] opts the optional parameters
|
329
|
+
# @option opts [String] :fields A list of fields to include in the response.
|
330
|
+
# @option opts [String] :exclude_fields A list of fields to exclude from the response.
|
331
|
+
# @return [CookbookCookbookRemoteResponse]
|
332
|
+
def read(cookbook_cookbook_remote_href, opts = {})
|
333
|
+
data, _status_code, _headers = read_with_http_info(cookbook_cookbook_remote_href, opts)
|
334
|
+
data
|
335
|
+
end
|
336
|
+
|
337
|
+
# Inspect a cookbook remote
|
338
|
+
# Cookbook Remote Endpoint. CookbookRemote represents an external source of Cookbook Content. The target url of a CookbookRemote must point to a universe API endpont.
|
339
|
+
# @param cookbook_cookbook_remote_href [String]
|
340
|
+
# @param [Hash] opts the optional parameters
|
341
|
+
# @option opts [String] :fields A list of fields to include in the response.
|
342
|
+
# @option opts [String] :exclude_fields A list of fields to exclude from the response.
|
343
|
+
# @return [Array<(CookbookCookbookRemoteResponse, Integer, Hash)>] CookbookCookbookRemoteResponse data, response status code and response headers
|
344
|
+
def read_with_http_info(cookbook_cookbook_remote_href, opts = {})
|
345
|
+
if @api_client.config.debugging
|
346
|
+
@api_client.config.logger.debug 'Calling API: RemotesCookbookApi.read ...'
|
347
|
+
end
|
348
|
+
# verify the required parameter 'cookbook_cookbook_remote_href' is set
|
349
|
+
if @api_client.config.client_side_validation && cookbook_cookbook_remote_href.nil?
|
350
|
+
fail ArgumentError, "Missing the required parameter 'cookbook_cookbook_remote_href' when calling RemotesCookbookApi.read"
|
351
|
+
end
|
352
|
+
# resource path
|
353
|
+
local_var_path = '{cookbook_cookbook_remote_href}'.sub('{' + 'cookbook_cookbook_remote_href' + '}', CGI.escape(cookbook_cookbook_remote_href.to_s).gsub('%2F', '/'))
|
354
|
+
|
355
|
+
# query parameters
|
356
|
+
query_params = opts[:query_params] || {}
|
357
|
+
query_params[:'fields'] = opts[:'fields'] if !opts[:'fields'].nil?
|
358
|
+
query_params[:'exclude_fields'] = opts[:'exclude_fields'] if !opts[:'exclude_fields'].nil?
|
359
|
+
|
360
|
+
# header parameters
|
361
|
+
header_params = opts[:header_params] || {}
|
362
|
+
# HTTP header 'Accept' (if needed)
|
363
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
364
|
+
|
365
|
+
# form parameters
|
366
|
+
form_params = opts[:form_params] || {}
|
367
|
+
|
368
|
+
# http body (model)
|
369
|
+
post_body = opts[:body]
|
370
|
+
|
371
|
+
# return_type
|
372
|
+
return_type = opts[:return_type] || 'CookbookCookbookRemoteResponse'
|
373
|
+
|
374
|
+
# auth_names
|
375
|
+
auth_names = opts[:auth_names] || ['basicAuth']
|
376
|
+
|
377
|
+
new_options = opts.merge(
|
378
|
+
:header_params => header_params,
|
379
|
+
:query_params => query_params,
|
380
|
+
:form_params => form_params,
|
381
|
+
:body => post_body,
|
382
|
+
:auth_names => auth_names,
|
383
|
+
:return_type => return_type
|
384
|
+
)
|
385
|
+
|
386
|
+
data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
|
387
|
+
if @api_client.config.debugging
|
388
|
+
@api_client.config.logger.debug "API called: RemotesCookbookApi#read\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
389
|
+
end
|
390
|
+
return data, status_code, headers
|
391
|
+
end
|
392
|
+
|
393
|
+
# Update a cookbook remote
|
394
|
+
# Trigger an asynchronous update task
|
395
|
+
# @param cookbook_cookbook_remote_href [String]
|
396
|
+
# @param cookbook_cookbook_remote [CookbookCookbookRemote]
|
397
|
+
# @param [Hash] opts the optional parameters
|
398
|
+
# @return [AsyncOperationResponse]
|
399
|
+
def update(cookbook_cookbook_remote_href, cookbook_cookbook_remote, opts = {})
|
400
|
+
data, _status_code, _headers = update_with_http_info(cookbook_cookbook_remote_href, cookbook_cookbook_remote, opts)
|
401
|
+
data
|
402
|
+
end
|
403
|
+
|
404
|
+
# Update a cookbook remote
|
405
|
+
# Trigger an asynchronous update task
|
406
|
+
# @param cookbook_cookbook_remote_href [String]
|
407
|
+
# @param cookbook_cookbook_remote [CookbookCookbookRemote]
|
408
|
+
# @param [Hash] opts the optional parameters
|
409
|
+
# @return [Array<(AsyncOperationResponse, Integer, Hash)>] AsyncOperationResponse data, response status code and response headers
|
410
|
+
def update_with_http_info(cookbook_cookbook_remote_href, cookbook_cookbook_remote, opts = {})
|
411
|
+
if @api_client.config.debugging
|
412
|
+
@api_client.config.logger.debug 'Calling API: RemotesCookbookApi.update ...'
|
413
|
+
end
|
414
|
+
# verify the required parameter 'cookbook_cookbook_remote_href' is set
|
415
|
+
if @api_client.config.client_side_validation && cookbook_cookbook_remote_href.nil?
|
416
|
+
fail ArgumentError, "Missing the required parameter 'cookbook_cookbook_remote_href' when calling RemotesCookbookApi.update"
|
417
|
+
end
|
418
|
+
# verify the required parameter 'cookbook_cookbook_remote' is set
|
419
|
+
if @api_client.config.client_side_validation && cookbook_cookbook_remote.nil?
|
420
|
+
fail ArgumentError, "Missing the required parameter 'cookbook_cookbook_remote' when calling RemotesCookbookApi.update"
|
421
|
+
end
|
422
|
+
# resource path
|
423
|
+
local_var_path = '{cookbook_cookbook_remote_href}'.sub('{' + 'cookbook_cookbook_remote_href' + '}', CGI.escape(cookbook_cookbook_remote_href.to_s).gsub('%2F', '/'))
|
424
|
+
|
425
|
+
# query parameters
|
426
|
+
query_params = opts[:query_params] || {}
|
427
|
+
|
428
|
+
# header parameters
|
429
|
+
header_params = opts[:header_params] || {}
|
430
|
+
# HTTP header 'Accept' (if needed)
|
431
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
432
|
+
# HTTP header 'Content-Type'
|
433
|
+
header_params['Content-Type'] = @api_client.select_header_content_type(['application/json', 'application/x-www-form-urlencoded', 'multipart/form-data'])
|
434
|
+
|
435
|
+
# form parameters
|
436
|
+
form_params = opts[:form_params] || {}
|
437
|
+
|
438
|
+
# http body (model)
|
439
|
+
post_body = opts[:body] || @api_client.object_to_http_body(cookbook_cookbook_remote)
|
440
|
+
|
441
|
+
# return_type
|
442
|
+
return_type = opts[:return_type] || 'AsyncOperationResponse'
|
443
|
+
|
444
|
+
# auth_names
|
445
|
+
auth_names = opts[:auth_names] || ['basicAuth']
|
446
|
+
|
447
|
+
new_options = opts.merge(
|
448
|
+
:header_params => header_params,
|
449
|
+
:query_params => query_params,
|
450
|
+
:form_params => form_params,
|
451
|
+
:body => post_body,
|
452
|
+
:auth_names => auth_names,
|
453
|
+
:return_type => return_type
|
454
|
+
)
|
455
|
+
|
456
|
+
data, status_code, headers = @api_client.call_api(:PUT, local_var_path, new_options)
|
457
|
+
if @api_client.config.debugging
|
458
|
+
@api_client.config.logger.debug "API called: RemotesCookbookApi#update\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
459
|
+
end
|
460
|
+
return data, status_code, headers
|
461
|
+
end
|
462
|
+
end
|
463
|
+
end
|