pulpcore_client 3.42.0 → 3.43.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,741 @@
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 PulpcoreClient
16
+ class ContentguardsCompositeApi
17
+ attr_accessor :api_client
18
+
19
+ def initialize(api_client = ApiClient.default)
20
+ @api_client = api_client
21
+ end
22
+ # Add a role
23
+ # Add a role for this object to users/groups.
24
+ # @param composite_content_guard_href [String]
25
+ # @param nested_role [NestedRole]
26
+ # @param [Hash] opts the optional parameters
27
+ # @return [NestedRoleResponse]
28
+ def add_role(composite_content_guard_href, nested_role, opts = {})
29
+ data, _status_code, _headers = add_role_with_http_info(composite_content_guard_href, nested_role, opts)
30
+ data
31
+ end
32
+
33
+ # Add a role
34
+ # Add a role for this object to users/groups.
35
+ # @param composite_content_guard_href [String]
36
+ # @param nested_role [NestedRole]
37
+ # @param [Hash] opts the optional parameters
38
+ # @return [Array<(NestedRoleResponse, Integer, Hash)>] NestedRoleResponse data, response status code and response headers
39
+ def add_role_with_http_info(composite_content_guard_href, nested_role, opts = {})
40
+ if @api_client.config.debugging
41
+ @api_client.config.logger.debug 'Calling API: ContentguardsCompositeApi.add_role ...'
42
+ end
43
+ # verify the required parameter 'composite_content_guard_href' is set
44
+ if @api_client.config.client_side_validation && composite_content_guard_href.nil?
45
+ fail ArgumentError, "Missing the required parameter 'composite_content_guard_href' when calling ContentguardsCompositeApi.add_role"
46
+ end
47
+ # verify the required parameter 'nested_role' is set
48
+ if @api_client.config.client_side_validation && nested_role.nil?
49
+ fail ArgumentError, "Missing the required parameter 'nested_role' when calling ContentguardsCompositeApi.add_role"
50
+ end
51
+ # resource path
52
+ local_var_path = '{composite_content_guard_href}add_role/'.sub('{' + 'composite_content_guard_href' + '}', CGI.escape(composite_content_guard_href.to_s).gsub('%2F', '/'))
53
+
54
+ # query parameters
55
+ query_params = opts[:query_params] || {}
56
+
57
+ # header parameters
58
+ header_params = opts[:header_params] || {}
59
+ # HTTP header 'Accept' (if needed)
60
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
61
+ # HTTP header 'Content-Type'
62
+ header_params['Content-Type'] = @api_client.select_header_content_type(['application/json', 'application/x-www-form-urlencoded', 'multipart/form-data'])
63
+
64
+ # form parameters
65
+ form_params = opts[:form_params] || {}
66
+
67
+ # http body (model)
68
+ post_body = opts[:body] || @api_client.object_to_http_body(nested_role)
69
+
70
+ # return_type
71
+ return_type = opts[:return_type] || 'NestedRoleResponse'
72
+
73
+ # auth_names
74
+ auth_names = opts[:auth_names] || ['basicAuth']
75
+
76
+ new_options = opts.merge(
77
+ :header_params => header_params,
78
+ :query_params => query_params,
79
+ :form_params => form_params,
80
+ :body => post_body,
81
+ :auth_names => auth_names,
82
+ :return_type => return_type
83
+ )
84
+
85
+ data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
86
+ if @api_client.config.debugging
87
+ @api_client.config.logger.debug "API called: ContentguardsCompositeApi#add_role\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
88
+ end
89
+ return data, status_code, headers
90
+ end
91
+
92
+ # Create a composite content guard
93
+ # Content guard that queries a list-of content-guards for access permissions.
94
+ # @param composite_content_guard [CompositeContentGuard]
95
+ # @param [Hash] opts the optional parameters
96
+ # @return [CompositeContentGuardResponse]
97
+ def create(composite_content_guard, opts = {})
98
+ data, _status_code, _headers = create_with_http_info(composite_content_guard, opts)
99
+ data
100
+ end
101
+
102
+ # Create a composite content guard
103
+ # Content guard that queries a list-of content-guards for access permissions.
104
+ # @param composite_content_guard [CompositeContentGuard]
105
+ # @param [Hash] opts the optional parameters
106
+ # @return [Array<(CompositeContentGuardResponse, Integer, Hash)>] CompositeContentGuardResponse data, response status code and response headers
107
+ def create_with_http_info(composite_content_guard, opts = {})
108
+ if @api_client.config.debugging
109
+ @api_client.config.logger.debug 'Calling API: ContentguardsCompositeApi.create ...'
110
+ end
111
+ # verify the required parameter 'composite_content_guard' is set
112
+ if @api_client.config.client_side_validation && composite_content_guard.nil?
113
+ fail ArgumentError, "Missing the required parameter 'composite_content_guard' when calling ContentguardsCompositeApi.create"
114
+ end
115
+ # resource path
116
+ local_var_path = '/pulp/api/v3/contentguards/core/composite/'
117
+
118
+ # query parameters
119
+ query_params = opts[:query_params] || {}
120
+
121
+ # header parameters
122
+ header_params = opts[:header_params] || {}
123
+ # HTTP header 'Accept' (if needed)
124
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
125
+ # HTTP header 'Content-Type'
126
+ header_params['Content-Type'] = @api_client.select_header_content_type(['application/json', 'application/x-www-form-urlencoded', 'multipart/form-data'])
127
+
128
+ # form parameters
129
+ form_params = opts[:form_params] || {}
130
+
131
+ # http body (model)
132
+ post_body = opts[:body] || @api_client.object_to_http_body(composite_content_guard)
133
+
134
+ # return_type
135
+ return_type = opts[:return_type] || 'CompositeContentGuardResponse'
136
+
137
+ # auth_names
138
+ auth_names = opts[:auth_names] || ['basicAuth']
139
+
140
+ new_options = opts.merge(
141
+ :header_params => header_params,
142
+ :query_params => query_params,
143
+ :form_params => form_params,
144
+ :body => post_body,
145
+ :auth_names => auth_names,
146
+ :return_type => return_type
147
+ )
148
+
149
+ data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
150
+ if @api_client.config.debugging
151
+ @api_client.config.logger.debug "API called: ContentguardsCompositeApi#create\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
152
+ end
153
+ return data, status_code, headers
154
+ end
155
+
156
+ # Delete a composite content guard
157
+ # Content guard that queries a list-of content-guards for access permissions.
158
+ # @param composite_content_guard_href [String]
159
+ # @param [Hash] opts the optional parameters
160
+ # @return [nil]
161
+ def delete(composite_content_guard_href, opts = {})
162
+ delete_with_http_info(composite_content_guard_href, opts)
163
+ nil
164
+ end
165
+
166
+ # Delete a composite content guard
167
+ # Content guard that queries a list-of content-guards for access permissions.
168
+ # @param composite_content_guard_href [String]
169
+ # @param [Hash] opts the optional parameters
170
+ # @return [Array<(nil, Integer, Hash)>] nil, response status code and response headers
171
+ def delete_with_http_info(composite_content_guard_href, opts = {})
172
+ if @api_client.config.debugging
173
+ @api_client.config.logger.debug 'Calling API: ContentguardsCompositeApi.delete ...'
174
+ end
175
+ # verify the required parameter 'composite_content_guard_href' is set
176
+ if @api_client.config.client_side_validation && composite_content_guard_href.nil?
177
+ fail ArgumentError, "Missing the required parameter 'composite_content_guard_href' when calling ContentguardsCompositeApi.delete"
178
+ end
179
+ # resource path
180
+ local_var_path = '{composite_content_guard_href}'.sub('{' + 'composite_content_guard_href' + '}', CGI.escape(composite_content_guard_href.to_s).gsub('%2F', '/'))
181
+
182
+ # query parameters
183
+ query_params = opts[:query_params] || {}
184
+
185
+ # header parameters
186
+ header_params = opts[:header_params] || {}
187
+
188
+ # form parameters
189
+ form_params = opts[:form_params] || {}
190
+
191
+ # http body (model)
192
+ post_body = opts[:body]
193
+
194
+ # return_type
195
+ return_type = opts[:return_type]
196
+
197
+ # auth_names
198
+ auth_names = opts[:auth_names] || ['basicAuth']
199
+
200
+ new_options = opts.merge(
201
+ :header_params => header_params,
202
+ :query_params => query_params,
203
+ :form_params => form_params,
204
+ :body => post_body,
205
+ :auth_names => auth_names,
206
+ :return_type => return_type
207
+ )
208
+
209
+ data, status_code, headers = @api_client.call_api(:DELETE, local_var_path, new_options)
210
+ if @api_client.config.debugging
211
+ @api_client.config.logger.debug "API called: ContentguardsCompositeApi#delete\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
212
+ end
213
+ return data, status_code, headers
214
+ end
215
+
216
+ # List composite content guards
217
+ # Content guard that queries a list-of content-guards for access permissions.
218
+ # @param [Hash] opts the optional parameters
219
+ # @option opts [Integer] :limit Number of results to return per page.
220
+ # @option opts [String] :name Filter results where name matches value
221
+ # @option opts [String] :name__contains Filter results where name contains value
222
+ # @option opts [String] :name__icontains Filter results where name contains value
223
+ # @option opts [String] :name__iexact Filter results where name matches value
224
+ # @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
225
+ # @option opts [String] :name__iregex Filter results where name matches regex value
226
+ # @option opts [String] :name__istartswith Filter results where name starts with value
227
+ # @option opts [String] :name__regex Filter results where name matches regex value
228
+ # @option opts [String] :name__startswith Filter results where name starts with value
229
+ # @option opts [Integer] :offset The initial index from which to return the results.
230
+ # @option opts [Array<String>] :ordering Ordering * &#x60;pulp_id&#x60; - Pulp id * &#x60;-pulp_id&#x60; - Pulp id (descending) * &#x60;pulp_created&#x60; - Pulp created * &#x60;-pulp_created&#x60; - Pulp created (descending) * &#x60;pulp_last_updated&#x60; - Pulp last updated * &#x60;-pulp_last_updated&#x60; - Pulp last updated (descending) * &#x60;pulp_type&#x60; - Pulp type * &#x60;-pulp_type&#x60; - Pulp type (descending) * &#x60;name&#x60; - Name * &#x60;-name&#x60; - Name (descending) * &#x60;description&#x60; - Description * &#x60;-description&#x60; - Description (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
231
+ # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
232
+ # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
233
+ # @option opts [String] :q
234
+ # @option opts [Array<String>] :fields A list of fields to include in the response.
235
+ # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
236
+ # @return [PaginatedCompositeContentGuardResponseList]
237
+ def list(opts = {})
238
+ data, _status_code, _headers = list_with_http_info(opts)
239
+ data
240
+ end
241
+
242
+ # List composite content guards
243
+ # Content guard that queries a list-of content-guards for access permissions.
244
+ # @param [Hash] opts the optional parameters
245
+ # @option opts [Integer] :limit Number of results to return per page.
246
+ # @option opts [String] :name Filter results where name matches value
247
+ # @option opts [String] :name__contains Filter results where name contains value
248
+ # @option opts [String] :name__icontains Filter results where name contains value
249
+ # @option opts [String] :name__iexact Filter results where name matches value
250
+ # @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
251
+ # @option opts [String] :name__iregex Filter results where name matches regex value
252
+ # @option opts [String] :name__istartswith Filter results where name starts with value
253
+ # @option opts [String] :name__regex Filter results where name matches regex value
254
+ # @option opts [String] :name__startswith Filter results where name starts with value
255
+ # @option opts [Integer] :offset The initial index from which to return the results.
256
+ # @option opts [Array<String>] :ordering Ordering * &#x60;pulp_id&#x60; - Pulp id * &#x60;-pulp_id&#x60; - Pulp id (descending) * &#x60;pulp_created&#x60; - Pulp created * &#x60;-pulp_created&#x60; - Pulp created (descending) * &#x60;pulp_last_updated&#x60; - Pulp last updated * &#x60;-pulp_last_updated&#x60; - Pulp last updated (descending) * &#x60;pulp_type&#x60; - Pulp type * &#x60;-pulp_type&#x60; - Pulp type (descending) * &#x60;name&#x60; - Name * &#x60;-name&#x60; - Name (descending) * &#x60;description&#x60; - Description * &#x60;-description&#x60; - Description (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
257
+ # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
258
+ # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
259
+ # @option opts [String] :q
260
+ # @option opts [Array<String>] :fields A list of fields to include in the response.
261
+ # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
262
+ # @return [Array<(PaginatedCompositeContentGuardResponseList, Integer, Hash)>] PaginatedCompositeContentGuardResponseList data, response status code and response headers
263
+ def list_with_http_info(opts = {})
264
+ if @api_client.config.debugging
265
+ @api_client.config.logger.debug 'Calling API: ContentguardsCompositeApi.list ...'
266
+ end
267
+ allowable_values = ["-description", "-name", "-pk", "-pulp_created", "-pulp_id", "-pulp_last_updated", "-pulp_type", "description", "name", "pk", "pulp_created", "pulp_id", "pulp_last_updated", "pulp_type"]
268
+ if @api_client.config.client_side_validation && opts[:'ordering'] && !opts[:'ordering'].all? { |item| allowable_values.include?(item) }
269
+ fail ArgumentError, "invalid value for \"ordering\", must include one of #{allowable_values}"
270
+ end
271
+ # resource path
272
+ local_var_path = '/pulp/api/v3/contentguards/core/composite/'
273
+
274
+ # query parameters
275
+ query_params = opts[:query_params] || {}
276
+ query_params[:'limit'] = opts[:'limit'] if !opts[:'limit'].nil?
277
+ query_params[:'name'] = opts[:'name'] if !opts[:'name'].nil?
278
+ query_params[:'name__contains'] = opts[:'name__contains'] if !opts[:'name__contains'].nil?
279
+ query_params[:'name__icontains'] = opts[:'name__icontains'] if !opts[:'name__icontains'].nil?
280
+ query_params[:'name__iexact'] = opts[:'name__iexact'] if !opts[:'name__iexact'].nil?
281
+ query_params[:'name__in'] = @api_client.build_collection_param(opts[:'name__in'], :csv) if !opts[:'name__in'].nil?
282
+ query_params[:'name__iregex'] = opts[:'name__iregex'] if !opts[:'name__iregex'].nil?
283
+ query_params[:'name__istartswith'] = opts[:'name__istartswith'] if !opts[:'name__istartswith'].nil?
284
+ query_params[:'name__regex'] = opts[:'name__regex'] if !opts[:'name__regex'].nil?
285
+ query_params[:'name__startswith'] = opts[:'name__startswith'] if !opts[:'name__startswith'].nil?
286
+ query_params[:'offset'] = opts[:'offset'] if !opts[:'offset'].nil?
287
+ query_params[:'ordering'] = @api_client.build_collection_param(opts[:'ordering'], :csv) if !opts[:'ordering'].nil?
288
+ query_params[:'pulp_href__in'] = @api_client.build_collection_param(opts[:'pulp_href__in'], :csv) if !opts[:'pulp_href__in'].nil?
289
+ query_params[:'pulp_id__in'] = @api_client.build_collection_param(opts[:'pulp_id__in'], :csv) if !opts[:'pulp_id__in'].nil?
290
+ query_params[:'q'] = opts[:'q'] if !opts[:'q'].nil?
291
+ query_params[:'fields'] = @api_client.build_collection_param(opts[:'fields'], :multi) if !opts[:'fields'].nil?
292
+ query_params[:'exclude_fields'] = @api_client.build_collection_param(opts[:'exclude_fields'], :multi) if !opts[:'exclude_fields'].nil?
293
+
294
+ # header parameters
295
+ header_params = opts[:header_params] || {}
296
+ # HTTP header 'Accept' (if needed)
297
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
298
+
299
+ # form parameters
300
+ form_params = opts[:form_params] || {}
301
+
302
+ # http body (model)
303
+ post_body = opts[:body]
304
+
305
+ # return_type
306
+ return_type = opts[:return_type] || 'PaginatedCompositeContentGuardResponseList'
307
+
308
+ # auth_names
309
+ auth_names = opts[:auth_names] || ['basicAuth']
310
+
311
+ new_options = opts.merge(
312
+ :header_params => header_params,
313
+ :query_params => query_params,
314
+ :form_params => form_params,
315
+ :body => post_body,
316
+ :auth_names => auth_names,
317
+ :return_type => return_type
318
+ )
319
+
320
+ data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
321
+ if @api_client.config.debugging
322
+ @api_client.config.logger.debug "API called: ContentguardsCompositeApi#list\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
323
+ end
324
+ return data, status_code, headers
325
+ end
326
+
327
+ # List roles
328
+ # List roles assigned to this object.
329
+ # @param composite_content_guard_href [String]
330
+ # @param [Hash] opts the optional parameters
331
+ # @option opts [Array<String>] :fields A list of fields to include in the response.
332
+ # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
333
+ # @return [ObjectRolesResponse]
334
+ def list_roles(composite_content_guard_href, opts = {})
335
+ data, _status_code, _headers = list_roles_with_http_info(composite_content_guard_href, opts)
336
+ data
337
+ end
338
+
339
+ # List roles
340
+ # List roles assigned to this object.
341
+ # @param composite_content_guard_href [String]
342
+ # @param [Hash] opts the optional parameters
343
+ # @option opts [Array<String>] :fields A list of fields to include in the response.
344
+ # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
345
+ # @return [Array<(ObjectRolesResponse, Integer, Hash)>] ObjectRolesResponse data, response status code and response headers
346
+ def list_roles_with_http_info(composite_content_guard_href, opts = {})
347
+ if @api_client.config.debugging
348
+ @api_client.config.logger.debug 'Calling API: ContentguardsCompositeApi.list_roles ...'
349
+ end
350
+ # verify the required parameter 'composite_content_guard_href' is set
351
+ if @api_client.config.client_side_validation && composite_content_guard_href.nil?
352
+ fail ArgumentError, "Missing the required parameter 'composite_content_guard_href' when calling ContentguardsCompositeApi.list_roles"
353
+ end
354
+ # resource path
355
+ local_var_path = '{composite_content_guard_href}list_roles/'.sub('{' + 'composite_content_guard_href' + '}', CGI.escape(composite_content_guard_href.to_s).gsub('%2F', '/'))
356
+
357
+ # query parameters
358
+ query_params = opts[:query_params] || {}
359
+ query_params[:'fields'] = @api_client.build_collection_param(opts[:'fields'], :multi) if !opts[:'fields'].nil?
360
+ query_params[:'exclude_fields'] = @api_client.build_collection_param(opts[:'exclude_fields'], :multi) if !opts[:'exclude_fields'].nil?
361
+
362
+ # header parameters
363
+ header_params = opts[:header_params] || {}
364
+ # HTTP header 'Accept' (if needed)
365
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
366
+
367
+ # form parameters
368
+ form_params = opts[:form_params] || {}
369
+
370
+ # http body (model)
371
+ post_body = opts[:body]
372
+
373
+ # return_type
374
+ return_type = opts[:return_type] || 'ObjectRolesResponse'
375
+
376
+ # auth_names
377
+ auth_names = opts[:auth_names] || ['basicAuth']
378
+
379
+ new_options = opts.merge(
380
+ :header_params => header_params,
381
+ :query_params => query_params,
382
+ :form_params => form_params,
383
+ :body => post_body,
384
+ :auth_names => auth_names,
385
+ :return_type => return_type
386
+ )
387
+
388
+ data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
389
+ if @api_client.config.debugging
390
+ @api_client.config.logger.debug "API called: ContentguardsCompositeApi#list_roles\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
391
+ end
392
+ return data, status_code, headers
393
+ end
394
+
395
+ # List user permissions
396
+ # List permissions available to the current user on this object.
397
+ # @param composite_content_guard_href [String]
398
+ # @param [Hash] opts the optional parameters
399
+ # @option opts [Array<String>] :fields A list of fields to include in the response.
400
+ # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
401
+ # @return [MyPermissionsResponse]
402
+ def my_permissions(composite_content_guard_href, opts = {})
403
+ data, _status_code, _headers = my_permissions_with_http_info(composite_content_guard_href, opts)
404
+ data
405
+ end
406
+
407
+ # List user permissions
408
+ # List permissions available to the current user on this object.
409
+ # @param composite_content_guard_href [String]
410
+ # @param [Hash] opts the optional parameters
411
+ # @option opts [Array<String>] :fields A list of fields to include in the response.
412
+ # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
413
+ # @return [Array<(MyPermissionsResponse, Integer, Hash)>] MyPermissionsResponse data, response status code and response headers
414
+ def my_permissions_with_http_info(composite_content_guard_href, opts = {})
415
+ if @api_client.config.debugging
416
+ @api_client.config.logger.debug 'Calling API: ContentguardsCompositeApi.my_permissions ...'
417
+ end
418
+ # verify the required parameter 'composite_content_guard_href' is set
419
+ if @api_client.config.client_side_validation && composite_content_guard_href.nil?
420
+ fail ArgumentError, "Missing the required parameter 'composite_content_guard_href' when calling ContentguardsCompositeApi.my_permissions"
421
+ end
422
+ # resource path
423
+ local_var_path = '{composite_content_guard_href}my_permissions/'.sub('{' + 'composite_content_guard_href' + '}', CGI.escape(composite_content_guard_href.to_s).gsub('%2F', '/'))
424
+
425
+ # query parameters
426
+ query_params = opts[:query_params] || {}
427
+ query_params[:'fields'] = @api_client.build_collection_param(opts[:'fields'], :multi) if !opts[:'fields'].nil?
428
+ query_params[:'exclude_fields'] = @api_client.build_collection_param(opts[:'exclude_fields'], :multi) if !opts[:'exclude_fields'].nil?
429
+
430
+ # header parameters
431
+ header_params = opts[:header_params] || {}
432
+ # HTTP header 'Accept' (if needed)
433
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
434
+
435
+ # form parameters
436
+ form_params = opts[:form_params] || {}
437
+
438
+ # http body (model)
439
+ post_body = opts[:body]
440
+
441
+ # return_type
442
+ return_type = opts[:return_type] || 'MyPermissionsResponse'
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(:GET, local_var_path, new_options)
457
+ if @api_client.config.debugging
458
+ @api_client.config.logger.debug "API called: ContentguardsCompositeApi#my_permissions\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
459
+ end
460
+ return data, status_code, headers
461
+ end
462
+
463
+ # Update a composite content guard
464
+ # Content guard that queries a list-of content-guards for access permissions.
465
+ # @param composite_content_guard_href [String]
466
+ # @param patched_composite_content_guard [PatchedCompositeContentGuard]
467
+ # @param [Hash] opts the optional parameters
468
+ # @return [CompositeContentGuardResponse]
469
+ def partial_update(composite_content_guard_href, patched_composite_content_guard, opts = {})
470
+ data, _status_code, _headers = partial_update_with_http_info(composite_content_guard_href, patched_composite_content_guard, opts)
471
+ data
472
+ end
473
+
474
+ # Update a composite content guard
475
+ # Content guard that queries a list-of content-guards for access permissions.
476
+ # @param composite_content_guard_href [String]
477
+ # @param patched_composite_content_guard [PatchedCompositeContentGuard]
478
+ # @param [Hash] opts the optional parameters
479
+ # @return [Array<(CompositeContentGuardResponse, Integer, Hash)>] CompositeContentGuardResponse data, response status code and response headers
480
+ def partial_update_with_http_info(composite_content_guard_href, patched_composite_content_guard, opts = {})
481
+ if @api_client.config.debugging
482
+ @api_client.config.logger.debug 'Calling API: ContentguardsCompositeApi.partial_update ...'
483
+ end
484
+ # verify the required parameter 'composite_content_guard_href' is set
485
+ if @api_client.config.client_side_validation && composite_content_guard_href.nil?
486
+ fail ArgumentError, "Missing the required parameter 'composite_content_guard_href' when calling ContentguardsCompositeApi.partial_update"
487
+ end
488
+ # verify the required parameter 'patched_composite_content_guard' is set
489
+ if @api_client.config.client_side_validation && patched_composite_content_guard.nil?
490
+ fail ArgumentError, "Missing the required parameter 'patched_composite_content_guard' when calling ContentguardsCompositeApi.partial_update"
491
+ end
492
+ # resource path
493
+ local_var_path = '{composite_content_guard_href}'.sub('{' + 'composite_content_guard_href' + '}', CGI.escape(composite_content_guard_href.to_s).gsub('%2F', '/'))
494
+
495
+ # query parameters
496
+ query_params = opts[:query_params] || {}
497
+
498
+ # header parameters
499
+ header_params = opts[:header_params] || {}
500
+ # HTTP header 'Accept' (if needed)
501
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
502
+ # HTTP header 'Content-Type'
503
+ header_params['Content-Type'] = @api_client.select_header_content_type(['application/json', 'application/x-www-form-urlencoded', 'multipart/form-data'])
504
+
505
+ # form parameters
506
+ form_params = opts[:form_params] || {}
507
+
508
+ # http body (model)
509
+ post_body = opts[:body] || @api_client.object_to_http_body(patched_composite_content_guard)
510
+
511
+ # return_type
512
+ return_type = opts[:return_type] || 'CompositeContentGuardResponse'
513
+
514
+ # auth_names
515
+ auth_names = opts[:auth_names] || ['basicAuth']
516
+
517
+ new_options = opts.merge(
518
+ :header_params => header_params,
519
+ :query_params => query_params,
520
+ :form_params => form_params,
521
+ :body => post_body,
522
+ :auth_names => auth_names,
523
+ :return_type => return_type
524
+ )
525
+
526
+ data, status_code, headers = @api_client.call_api(:PATCH, local_var_path, new_options)
527
+ if @api_client.config.debugging
528
+ @api_client.config.logger.debug "API called: ContentguardsCompositeApi#partial_update\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
529
+ end
530
+ return data, status_code, headers
531
+ end
532
+
533
+ # Inspect a composite content guard
534
+ # Content guard that queries a list-of content-guards for access permissions.
535
+ # @param composite_content_guard_href [String]
536
+ # @param [Hash] opts the optional parameters
537
+ # @option opts [Array<String>] :fields A list of fields to include in the response.
538
+ # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
539
+ # @return [CompositeContentGuardResponse]
540
+ def read(composite_content_guard_href, opts = {})
541
+ data, _status_code, _headers = read_with_http_info(composite_content_guard_href, opts)
542
+ data
543
+ end
544
+
545
+ # Inspect a composite content guard
546
+ # Content guard that queries a list-of content-guards for access permissions.
547
+ # @param composite_content_guard_href [String]
548
+ # @param [Hash] opts the optional parameters
549
+ # @option opts [Array<String>] :fields A list of fields to include in the response.
550
+ # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
551
+ # @return [Array<(CompositeContentGuardResponse, Integer, Hash)>] CompositeContentGuardResponse data, response status code and response headers
552
+ def read_with_http_info(composite_content_guard_href, opts = {})
553
+ if @api_client.config.debugging
554
+ @api_client.config.logger.debug 'Calling API: ContentguardsCompositeApi.read ...'
555
+ end
556
+ # verify the required parameter 'composite_content_guard_href' is set
557
+ if @api_client.config.client_side_validation && composite_content_guard_href.nil?
558
+ fail ArgumentError, "Missing the required parameter 'composite_content_guard_href' when calling ContentguardsCompositeApi.read"
559
+ end
560
+ # resource path
561
+ local_var_path = '{composite_content_guard_href}'.sub('{' + 'composite_content_guard_href' + '}', CGI.escape(composite_content_guard_href.to_s).gsub('%2F', '/'))
562
+
563
+ # query parameters
564
+ query_params = opts[:query_params] || {}
565
+ query_params[:'fields'] = @api_client.build_collection_param(opts[:'fields'], :multi) if !opts[:'fields'].nil?
566
+ query_params[:'exclude_fields'] = @api_client.build_collection_param(opts[:'exclude_fields'], :multi) if !opts[:'exclude_fields'].nil?
567
+
568
+ # header parameters
569
+ header_params = opts[:header_params] || {}
570
+ # HTTP header 'Accept' (if needed)
571
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
572
+
573
+ # form parameters
574
+ form_params = opts[:form_params] || {}
575
+
576
+ # http body (model)
577
+ post_body = opts[:body]
578
+
579
+ # return_type
580
+ return_type = opts[:return_type] || 'CompositeContentGuardResponse'
581
+
582
+ # auth_names
583
+ auth_names = opts[:auth_names] || ['basicAuth']
584
+
585
+ new_options = opts.merge(
586
+ :header_params => header_params,
587
+ :query_params => query_params,
588
+ :form_params => form_params,
589
+ :body => post_body,
590
+ :auth_names => auth_names,
591
+ :return_type => return_type
592
+ )
593
+
594
+ data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
595
+ if @api_client.config.debugging
596
+ @api_client.config.logger.debug "API called: ContentguardsCompositeApi#read\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
597
+ end
598
+ return data, status_code, headers
599
+ end
600
+
601
+ # Remove a role
602
+ # Remove a role for this object from users/groups.
603
+ # @param composite_content_guard_href [String]
604
+ # @param nested_role [NestedRole]
605
+ # @param [Hash] opts the optional parameters
606
+ # @return [NestedRoleResponse]
607
+ def remove_role(composite_content_guard_href, nested_role, opts = {})
608
+ data, _status_code, _headers = remove_role_with_http_info(composite_content_guard_href, nested_role, opts)
609
+ data
610
+ end
611
+
612
+ # Remove a role
613
+ # Remove a role for this object from users/groups.
614
+ # @param composite_content_guard_href [String]
615
+ # @param nested_role [NestedRole]
616
+ # @param [Hash] opts the optional parameters
617
+ # @return [Array<(NestedRoleResponse, Integer, Hash)>] NestedRoleResponse data, response status code and response headers
618
+ def remove_role_with_http_info(composite_content_guard_href, nested_role, opts = {})
619
+ if @api_client.config.debugging
620
+ @api_client.config.logger.debug 'Calling API: ContentguardsCompositeApi.remove_role ...'
621
+ end
622
+ # verify the required parameter 'composite_content_guard_href' is set
623
+ if @api_client.config.client_side_validation && composite_content_guard_href.nil?
624
+ fail ArgumentError, "Missing the required parameter 'composite_content_guard_href' when calling ContentguardsCompositeApi.remove_role"
625
+ end
626
+ # verify the required parameter 'nested_role' is set
627
+ if @api_client.config.client_side_validation && nested_role.nil?
628
+ fail ArgumentError, "Missing the required parameter 'nested_role' when calling ContentguardsCompositeApi.remove_role"
629
+ end
630
+ # resource path
631
+ local_var_path = '{composite_content_guard_href}remove_role/'.sub('{' + 'composite_content_guard_href' + '}', CGI.escape(composite_content_guard_href.to_s).gsub('%2F', '/'))
632
+
633
+ # query parameters
634
+ query_params = opts[:query_params] || {}
635
+
636
+ # header parameters
637
+ header_params = opts[:header_params] || {}
638
+ # HTTP header 'Accept' (if needed)
639
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
640
+ # HTTP header 'Content-Type'
641
+ header_params['Content-Type'] = @api_client.select_header_content_type(['application/json', 'application/x-www-form-urlencoded', 'multipart/form-data'])
642
+
643
+ # form parameters
644
+ form_params = opts[:form_params] || {}
645
+
646
+ # http body (model)
647
+ post_body = opts[:body] || @api_client.object_to_http_body(nested_role)
648
+
649
+ # return_type
650
+ return_type = opts[:return_type] || 'NestedRoleResponse'
651
+
652
+ # auth_names
653
+ auth_names = opts[:auth_names] || ['basicAuth']
654
+
655
+ new_options = opts.merge(
656
+ :header_params => header_params,
657
+ :query_params => query_params,
658
+ :form_params => form_params,
659
+ :body => post_body,
660
+ :auth_names => auth_names,
661
+ :return_type => return_type
662
+ )
663
+
664
+ data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
665
+ if @api_client.config.debugging
666
+ @api_client.config.logger.debug "API called: ContentguardsCompositeApi#remove_role\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
667
+ end
668
+ return data, status_code, headers
669
+ end
670
+
671
+ # Update a composite content guard
672
+ # Content guard that queries a list-of content-guards for access permissions.
673
+ # @param composite_content_guard_href [String]
674
+ # @param composite_content_guard [CompositeContentGuard]
675
+ # @param [Hash] opts the optional parameters
676
+ # @return [CompositeContentGuardResponse]
677
+ def update(composite_content_guard_href, composite_content_guard, opts = {})
678
+ data, _status_code, _headers = update_with_http_info(composite_content_guard_href, composite_content_guard, opts)
679
+ data
680
+ end
681
+
682
+ # Update a composite content guard
683
+ # Content guard that queries a list-of content-guards for access permissions.
684
+ # @param composite_content_guard_href [String]
685
+ # @param composite_content_guard [CompositeContentGuard]
686
+ # @param [Hash] opts the optional parameters
687
+ # @return [Array<(CompositeContentGuardResponse, Integer, Hash)>] CompositeContentGuardResponse data, response status code and response headers
688
+ def update_with_http_info(composite_content_guard_href, composite_content_guard, opts = {})
689
+ if @api_client.config.debugging
690
+ @api_client.config.logger.debug 'Calling API: ContentguardsCompositeApi.update ...'
691
+ end
692
+ # verify the required parameter 'composite_content_guard_href' is set
693
+ if @api_client.config.client_side_validation && composite_content_guard_href.nil?
694
+ fail ArgumentError, "Missing the required parameter 'composite_content_guard_href' when calling ContentguardsCompositeApi.update"
695
+ end
696
+ # verify the required parameter 'composite_content_guard' is set
697
+ if @api_client.config.client_side_validation && composite_content_guard.nil?
698
+ fail ArgumentError, "Missing the required parameter 'composite_content_guard' when calling ContentguardsCompositeApi.update"
699
+ end
700
+ # resource path
701
+ local_var_path = '{composite_content_guard_href}'.sub('{' + 'composite_content_guard_href' + '}', CGI.escape(composite_content_guard_href.to_s).gsub('%2F', '/'))
702
+
703
+ # query parameters
704
+ query_params = opts[:query_params] || {}
705
+
706
+ # header parameters
707
+ header_params = opts[:header_params] || {}
708
+ # HTTP header 'Accept' (if needed)
709
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
710
+ # HTTP header 'Content-Type'
711
+ header_params['Content-Type'] = @api_client.select_header_content_type(['application/json', 'application/x-www-form-urlencoded', 'multipart/form-data'])
712
+
713
+ # form parameters
714
+ form_params = opts[:form_params] || {}
715
+
716
+ # http body (model)
717
+ post_body = opts[:body] || @api_client.object_to_http_body(composite_content_guard)
718
+
719
+ # return_type
720
+ return_type = opts[:return_type] || 'CompositeContentGuardResponse'
721
+
722
+ # auth_names
723
+ auth_names = opts[:auth_names] || ['basicAuth']
724
+
725
+ new_options = opts.merge(
726
+ :header_params => header_params,
727
+ :query_params => query_params,
728
+ :form_params => form_params,
729
+ :body => post_body,
730
+ :auth_names => auth_names,
731
+ :return_type => return_type
732
+ )
733
+
734
+ data, status_code, headers = @api_client.call_api(:PUT, local_var_path, new_options)
735
+ if @api_client.config.debugging
736
+ @api_client.config.logger.debug "API called: ContentguardsCompositeApi#update\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
737
+ end
738
+ return data, status_code, headers
739
+ end
740
+ end
741
+ end