pulp_ansible_client 0.7.1 → 0.7.2

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 (65) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +6 -6
  3. data/docs/AnsibleCollectionRemote.md +7 -1
  4. data/docs/AnsibleCollectionRemoteResponse.md +3 -7
  5. data/docs/AnsibleCollectionVersionResponse.md +3 -3
  6. data/docs/AnsibleCollectionsApi.md +4 -4
  7. data/docs/AnsibleRoleRemote.md +7 -1
  8. data/docs/AnsibleRoleRemoteResponse.md +3 -7
  9. data/docs/AnsibleRoleResponse.md +3 -3
  10. data/docs/ContentCollectionVersionsApi.md +18 -18
  11. data/docs/ContentRolesApi.md +12 -12
  12. data/docs/ContentSummary.md +3 -3
  13. data/docs/ContentSummaryResponse.md +3 -3
  14. data/docs/DistributionsAnsibleApi.md +20 -20
  15. data/docs/PatchedansibleCollectionRemote.md +7 -1
  16. data/docs/PatchedansibleRoleRemote.md +7 -1
  17. data/docs/PulpAnsibleGalaxyApiCollectionsApi.md +6 -6
  18. data/docs/PulpAnsibleGalaxyApiV3AllApi.md +6 -24
  19. data/docs/PulpAnsibleGalaxyApiV3VersionsApi.md +18 -18
  20. data/docs/RemotesCollectionApi.md +24 -24
  21. data/docs/RemotesRoleApi.md +24 -24
  22. data/docs/RepositoriesAnsibleApi.md +12 -12
  23. data/docs/RepositoriesAnsibleVersionsApi.md +28 -28
  24. data/lib/pulp_ansible_client/api/ansible_collections_api.rb +4 -4
  25. data/lib/pulp_ansible_client/api/content_collection_versions_api.rb +18 -18
  26. data/lib/pulp_ansible_client/api/content_roles_api.rb +12 -12
  27. data/lib/pulp_ansible_client/api/distributions_ansible_api.rb +22 -22
  28. data/lib/pulp_ansible_client/api/pulp_ansible_galaxy_api_collections_api.rb +6 -6
  29. data/lib/pulp_ansible_client/api/pulp_ansible_galaxy_api_v3_all_api.rb +6 -33
  30. data/lib/pulp_ansible_client/api/pulp_ansible_galaxy_api_v3_versions_api.rb +18 -18
  31. data/lib/pulp_ansible_client/api/remotes_collection_api.rb +26 -26
  32. data/lib/pulp_ansible_client/api/remotes_role_api.rb +26 -26
  33. data/lib/pulp_ansible_client/api/repositories_ansible_api.rb +13 -13
  34. data/lib/pulp_ansible_client/api/repositories_ansible_versions_api.rb +30 -30
  35. data/lib/pulp_ansible_client/models/ansible_collection_remote.rb +36 -2
  36. data/lib/pulp_ansible_client/models/ansible_collection_remote_response.rb +14 -35
  37. data/lib/pulp_ansible_client/models/ansible_collection_version_response.rb +11 -11
  38. data/lib/pulp_ansible_client/models/ansible_role_remote.rb +36 -2
  39. data/lib/pulp_ansible_client/models/ansible_role_remote_response.rb +14 -35
  40. data/lib/pulp_ansible_client/models/ansible_role_response.rb +11 -11
  41. data/lib/pulp_ansible_client/models/content_summary.rb +12 -6
  42. data/lib/pulp_ansible_client/models/content_summary_response.rb +12 -6
  43. data/lib/pulp_ansible_client/models/patchedansible_collection_remote.rb +36 -2
  44. data/lib/pulp_ansible_client/models/patchedansible_role_remote.rb +36 -2
  45. data/lib/pulp_ansible_client/version.rb +1 -1
  46. data/spec/api/ansible_collections_api_spec.rb +2 -2
  47. data/spec/api/content_collection_versions_api_spec.rb +9 -9
  48. data/spec/api/content_roles_api_spec.rb +6 -6
  49. data/spec/api/distributions_ansible_api_spec.rb +10 -10
  50. data/spec/api/pulp_ansible_galaxy_api_collections_api_spec.rb +3 -3
  51. data/spec/api/pulp_ansible_galaxy_api_v3_all_api_spec.rb +3 -12
  52. data/spec/api/pulp_ansible_galaxy_api_v3_versions_api_spec.rb +9 -9
  53. data/spec/api/remotes_collection_api_spec.rb +12 -12
  54. data/spec/api/remotes_role_api_spec.rb +12 -12
  55. data/spec/api/repositories_ansible_api_spec.rb +6 -6
  56. data/spec/api/repositories_ansible_versions_api_spec.rb +14 -14
  57. data/spec/models/ansible_collection_remote_response_spec.rb +6 -18
  58. data/spec/models/ansible_collection_remote_spec.rb +18 -0
  59. data/spec/models/ansible_collection_version_response_spec.rb +3 -3
  60. data/spec/models/ansible_role_remote_response_spec.rb +6 -18
  61. data/spec/models/ansible_role_remote_spec.rb +18 -0
  62. data/spec/models/ansible_role_response_spec.rb +3 -3
  63. data/spec/models/patchedansible_collection_remote_spec.rb +18 -0
  64. data/spec/models/patchedansible_role_remote_spec.rb +18 -0
  65. metadata +65 -65
@@ -23,8 +23,8 @@ module PulpAnsibleClient
23
23
  # Viewset for Ansible Collections.
24
24
  # @param [Hash] opts the optional parameters
25
25
  # @option opts [Integer] :limit Number of results to return per page.
26
- # @option opts [String] :name name
27
- # @option opts [String] :namespace namespace
26
+ # @option opts [String] :name
27
+ # @option opts [String] :namespace
28
28
  # @option opts [Integer] :offset The initial index from which to return the results.
29
29
  # @option opts [String] :ordering Which field to use when ordering the results.
30
30
  # @option opts [String] :fields A list of fields to include in the response.
@@ -39,8 +39,8 @@ module PulpAnsibleClient
39
39
  # Viewset for Ansible Collections.
40
40
  # @param [Hash] opts the optional parameters
41
41
  # @option opts [Integer] :limit Number of results to return per page.
42
- # @option opts [String] :name name
43
- # @option opts [String] :namespace namespace
42
+ # @option opts [String] :name
43
+ # @option opts [String] :namespace
44
44
  # @option opts [Integer] :offset The initial index from which to return the results.
45
45
  # @option opts [String] :ordering Which field to use when ordering the results.
46
46
  # @option opts [String] :fields A list of fields to include in the response.
@@ -86,18 +86,18 @@ module PulpAnsibleClient
86
86
  # List collection versions
87
87
  # ViewSet for Ansible Collection.
88
88
  # @param [Hash] opts the optional parameters
89
- # @option opts [String] :is_highest is_highest
89
+ # @option opts [Boolean] :is_highest
90
90
  # @option opts [Integer] :limit Number of results to return per page.
91
- # @option opts [String] :name name
92
- # @option opts [String] :namespace namespace
91
+ # @option opts [String] :name
92
+ # @option opts [String] :namespace
93
93
  # @option opts [Integer] :offset The initial index from which to return the results.
94
94
  # @option opts [String] :ordering Which field to use when ordering the results.
95
- # @option opts [String] :q q
96
- # @option opts [String] :repository_version repository_version
97
- # @option opts [String] :repository_version_added repository_version_added
98
- # @option opts [String] :repository_version_removed repository_version_removed
99
- # @option opts [String] :tags tags
100
- # @option opts [String] :version version
95
+ # @option opts [String] :q
96
+ # @option opts [String] :repository_version Repository Version referenced by HREF
97
+ # @option opts [String] :repository_version_added Repository Version referenced by HREF
98
+ # @option opts [String] :repository_version_removed Repository Version referenced by HREF
99
+ # @option opts [String] :tags Filter by comma separate list of tags that must all be matched
100
+ # @option opts [String] :version Filter results where version matches value
101
101
  # @option opts [String] :fields A list of fields to include in the response.
102
102
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
103
103
  # @return [PaginatedansibleCollectionVersionResponseList]
@@ -109,18 +109,18 @@ module PulpAnsibleClient
109
109
  # List collection versions
110
110
  # ViewSet for Ansible Collection.
111
111
  # @param [Hash] opts the optional parameters
112
- # @option opts [String] :is_highest is_highest
112
+ # @option opts [Boolean] :is_highest
113
113
  # @option opts [Integer] :limit Number of results to return per page.
114
- # @option opts [String] :name name
115
- # @option opts [String] :namespace namespace
114
+ # @option opts [String] :name
115
+ # @option opts [String] :namespace
116
116
  # @option opts [Integer] :offset The initial index from which to return the results.
117
117
  # @option opts [String] :ordering Which field to use when ordering the results.
118
- # @option opts [String] :q q
119
- # @option opts [String] :repository_version repository_version
120
- # @option opts [String] :repository_version_added repository_version_added
121
- # @option opts [String] :repository_version_removed repository_version_removed
122
- # @option opts [String] :tags tags
123
- # @option opts [String] :version version
118
+ # @option opts [String] :q
119
+ # @option opts [String] :repository_version Repository Version referenced by HREF
120
+ # @option opts [String] :repository_version_added Repository Version referenced by HREF
121
+ # @option opts [String] :repository_version_removed Repository Version referenced by HREF
122
+ # @option opts [String] :tags Filter by comma separate list of tags that must all be matched
123
+ # @option opts [String] :version Filter results where version matches value
124
124
  # @option opts [String] :fields A list of fields to include in the response.
125
125
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
126
126
  # @return [Array<(PaginatedansibleCollectionVersionResponseList, Integer, Hash)>] PaginatedansibleCollectionVersionResponseList data, response status code and response headers
@@ -87,14 +87,14 @@ module PulpAnsibleClient
87
87
  # ViewSet for Role.
88
88
  # @param [Hash] opts the optional parameters
89
89
  # @option opts [Integer] :limit Number of results to return per page.
90
- # @option opts [String] :name name
91
- # @option opts [String] :namespace namespace
90
+ # @option opts [String] :name Filter results where name matches value
91
+ # @option opts [String] :namespace Filter results where namespace matches value
92
92
  # @option opts [Integer] :offset The initial index from which to return the results.
93
93
  # @option opts [String] :ordering Which field to use when ordering the results.
94
- # @option opts [String] :repository_version repository_version
95
- # @option opts [String] :repository_version_added repository_version_added
96
- # @option opts [String] :repository_version_removed repository_version_removed
97
- # @option opts [String] :version version
94
+ # @option opts [String] :repository_version Repository Version referenced by HREF
95
+ # @option opts [String] :repository_version_added Repository Version referenced by HREF
96
+ # @option opts [String] :repository_version_removed Repository Version referenced by HREF
97
+ # @option opts [String] :version Filter results where version matches value
98
98
  # @option opts [String] :fields A list of fields to include in the response.
99
99
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
100
100
  # @return [PaginatedansibleRoleResponseList]
@@ -107,14 +107,14 @@ module PulpAnsibleClient
107
107
  # ViewSet for Role.
108
108
  # @param [Hash] opts the optional parameters
109
109
  # @option opts [Integer] :limit Number of results to return per page.
110
- # @option opts [String] :name name
111
- # @option opts [String] :namespace namespace
110
+ # @option opts [String] :name Filter results where name matches value
111
+ # @option opts [String] :namespace Filter results where namespace matches value
112
112
  # @option opts [Integer] :offset The initial index from which to return the results.
113
113
  # @option opts [String] :ordering Which field to use when ordering the results.
114
- # @option opts [String] :repository_version repository_version
115
- # @option opts [String] :repository_version_added repository_version_added
116
- # @option opts [String] :repository_version_removed repository_version_removed
117
- # @option opts [String] :version version
114
+ # @option opts [String] :repository_version Repository Version referenced by HREF
115
+ # @option opts [String] :repository_version_added Repository Version referenced by HREF
116
+ # @option opts [String] :repository_version_removed Repository Version referenced by HREF
117
+ # @option opts [String] :version Filter results where version matches value
118
118
  # @option opts [String] :fields A list of fields to include in the response.
119
119
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
120
120
  # @return [Array<(PaginatedansibleRoleResponseList, Integer, Hash)>] PaginatedansibleRoleResponseList data, response status code and response headers
@@ -148,19 +148,19 @@ module PulpAnsibleClient
148
148
  # List ansible distributions
149
149
  # ViewSet for Ansible Distributions.
150
150
  # @param [Hash] opts the optional parameters
151
- # @option opts [String] :base_path base_path
152
- # @option opts [String] :base_path__contains base_path__contains
153
- # @option opts [String] :base_path__icontains base_path__icontains
154
- # @option opts [String] :base_path__in base_path__in
151
+ # @option opts [String] :base_path
152
+ # @option opts [String] :base_path__contains Filter results where base_path contains value
153
+ # @option opts [String] :base_path__icontains Filter results where base_path contains value
154
+ # @option opts [Array<String>] :base_path__in Filter results where base_path is in a comma-separated list of values
155
155
  # @option opts [Integer] :limit Number of results to return per page.
156
- # @option opts [String] :name name
157
- # @option opts [String] :name__contains name__contains
158
- # @option opts [String] :name__icontains name__icontains
159
- # @option opts [String] :name__in name__in
160
- # @option opts [String] :name__startswith name__startswith
156
+ # @option opts [String] :name
157
+ # @option opts [String] :name__contains Filter results where name contains value
158
+ # @option opts [String] :name__icontains Filter results where name contains value
159
+ # @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
160
+ # @option opts [String] :name__startswith Filter results where name starts with value
161
161
  # @option opts [Integer] :offset The initial index from which to return the results.
162
162
  # @option opts [String] :ordering Which field to use when ordering the results.
163
- # @option opts [String] :pulp_label_select pulp_label_select
163
+ # @option opts [String] :pulp_label_select Filter labels by search string
164
164
  # @option opts [String] :fields A list of fields to include in the response.
165
165
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
166
166
  # @return [PaginatedansibleAnsibleDistributionResponseList]
@@ -172,19 +172,19 @@ module PulpAnsibleClient
172
172
  # List ansible distributions
173
173
  # ViewSet for Ansible Distributions.
174
174
  # @param [Hash] opts the optional parameters
175
- # @option opts [String] :base_path base_path
176
- # @option opts [String] :base_path__contains base_path__contains
177
- # @option opts [String] :base_path__icontains base_path__icontains
178
- # @option opts [String] :base_path__in base_path__in
175
+ # @option opts [String] :base_path
176
+ # @option opts [String] :base_path__contains Filter results where base_path contains value
177
+ # @option opts [String] :base_path__icontains Filter results where base_path contains value
178
+ # @option opts [Array<String>] :base_path__in Filter results where base_path is in a comma-separated list of values
179
179
  # @option opts [Integer] :limit Number of results to return per page.
180
- # @option opts [String] :name name
181
- # @option opts [String] :name__contains name__contains
182
- # @option opts [String] :name__icontains name__icontains
183
- # @option opts [String] :name__in name__in
184
- # @option opts [String] :name__startswith name__startswith
180
+ # @option opts [String] :name
181
+ # @option opts [String] :name__contains Filter results where name contains value
182
+ # @option opts [String] :name__icontains Filter results where name contains value
183
+ # @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
184
+ # @option opts [String] :name__startswith Filter results where name starts with value
185
185
  # @option opts [Integer] :offset The initial index from which to return the results.
186
186
  # @option opts [String] :ordering Which field to use when ordering the results.
187
- # @option opts [String] :pulp_label_select pulp_label_select
187
+ # @option opts [String] :pulp_label_select Filter labels by search string
188
188
  # @option opts [String] :fields A list of fields to include in the response.
189
189
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
190
190
  # @return [Array<(PaginatedansibleAnsibleDistributionResponseList, Integer, Hash)>] PaginatedansibleAnsibleDistributionResponseList data, response status code and response headers
@@ -200,12 +200,12 @@ module PulpAnsibleClient
200
200
  query_params[:'base_path'] = opts[:'base_path'] if !opts[:'base_path'].nil?
201
201
  query_params[:'base_path__contains'] = opts[:'base_path__contains'] if !opts[:'base_path__contains'].nil?
202
202
  query_params[:'base_path__icontains'] = opts[:'base_path__icontains'] if !opts[:'base_path__icontains'].nil?
203
- query_params[:'base_path__in'] = opts[:'base_path__in'] if !opts[:'base_path__in'].nil?
203
+ query_params[:'base_path__in'] = @api_client.build_collection_param(opts[:'base_path__in'], :csv) if !opts[:'base_path__in'].nil?
204
204
  query_params[:'limit'] = opts[:'limit'] if !opts[:'limit'].nil?
205
205
  query_params[:'name'] = opts[:'name'] if !opts[:'name'].nil?
206
206
  query_params[:'name__contains'] = opts[:'name__contains'] if !opts[:'name__contains'].nil?
207
207
  query_params[:'name__icontains'] = opts[:'name__icontains'] if !opts[:'name__icontains'].nil?
208
- query_params[:'name__in'] = opts[:'name__in'] if !opts[:'name__in'].nil?
208
+ query_params[:'name__in'] = @api_client.build_collection_param(opts[:'name__in'], :csv) if !opts[:'name__in'].nil?
209
209
  query_params[:'name__startswith'] = opts[:'name__startswith'] if !opts[:'name__startswith'].nil?
210
210
  query_params[:'offset'] = opts[:'offset'] if !opts[:'offset'].nil?
211
211
  query_params[:'ordering'] = opts[:'ordering'] if !opts[:'ordering'].nil?
@@ -22,10 +22,10 @@ module PulpAnsibleClient
22
22
  # ViewSet for Collections.
23
23
  # @param path [String]
24
24
  # @param [Hash] opts the optional parameters
25
- # @option opts [String] :deprecated deprecated
25
+ # @option opts [String] :deprecated
26
26
  # @option opts [Integer] :limit Number of results to return per page.
27
- # @option opts [String] :name name
28
- # @option opts [String] :namespace namespace
27
+ # @option opts [String] :name
28
+ # @option opts [String] :namespace
29
29
  # @option opts [Integer] :offset The initial index from which to return the results.
30
30
  # @option opts [String] :fields A list of fields to include in the response.
31
31
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
@@ -38,10 +38,10 @@ module PulpAnsibleClient
38
38
  # ViewSet for Collections.
39
39
  # @param path [String]
40
40
  # @param [Hash] opts the optional parameters
41
- # @option opts [String] :deprecated deprecated
41
+ # @option opts [String] :deprecated
42
42
  # @option opts [Integer] :limit Number of results to return per page.
43
- # @option opts [String] :name name
44
- # @option opts [String] :namespace namespace
43
+ # @option opts [String] :name
44
+ # @option opts [String] :namespace
45
45
  # @option opts [Integer] :offset The initial index from which to return the results.
46
46
  # @option opts [String] :fields A list of fields to include in the response.
47
47
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
@@ -22,15 +22,6 @@ module PulpAnsibleClient
22
22
  # Returns paginated CollectionVersions list.
23
23
  # @param path [String]
24
24
  # @param [Hash] opts the optional parameters
25
- # @option opts [String] :is_highest is_highest
26
- # @option opts [String] :name name
27
- # @option opts [String] :namespace namespace
28
- # @option opts [String] :q q
29
- # @option opts [String] :repository_version repository_version
30
- # @option opts [String] :repository_version_added repository_version_added
31
- # @option opts [String] :repository_version_removed repository_version_removed
32
- # @option opts [String] :tags tags
33
- # @option opts [String] :version version
34
25
  # @option opts [String] :fields A list of fields to include in the response.
35
26
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
36
27
  # @return [Array<UnpaginatedCollectionVersionResponse>]
@@ -42,15 +33,6 @@ module PulpAnsibleClient
42
33
  # Returns paginated CollectionVersions list.
43
34
  # @param path [String]
44
35
  # @param [Hash] opts the optional parameters
45
- # @option opts [String] :is_highest is_highest
46
- # @option opts [String] :name name
47
- # @option opts [String] :namespace namespace
48
- # @option opts [String] :q q
49
- # @option opts [String] :repository_version repository_version
50
- # @option opts [String] :repository_version_added repository_version_added
51
- # @option opts [String] :repository_version_removed repository_version_removed
52
- # @option opts [String] :tags tags
53
- # @option opts [String] :version version
54
36
  # @option opts [String] :fields A list of fields to include in the response.
55
37
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
56
38
  # @return [Array<(Array<UnpaginatedCollectionVersionResponse>, Integer, Hash)>] Array<UnpaginatedCollectionVersionResponse> data, response status code and response headers
@@ -67,15 +49,6 @@ module PulpAnsibleClient
67
49
 
68
50
  # query parameters
69
51
  query_params = opts[:query_params] || {}
70
- query_params[:'is_highest'] = opts[:'is_highest'] if !opts[:'is_highest'].nil?
71
- query_params[:'name'] = opts[:'name'] if !opts[:'name'].nil?
72
- query_params[:'namespace'] = opts[:'namespace'] if !opts[:'namespace'].nil?
73
- query_params[:'q'] = opts[:'q'] if !opts[:'q'].nil?
74
- query_params[:'repository_version'] = opts[:'repository_version'] if !opts[:'repository_version'].nil?
75
- query_params[:'repository_version_added'] = opts[:'repository_version_added'] if !opts[:'repository_version_added'].nil?
76
- query_params[:'repository_version_removed'] = opts[:'repository_version_removed'] if !opts[:'repository_version_removed'].nil?
77
- query_params[:'tags'] = opts[:'tags'] if !opts[:'tags'].nil?
78
- query_params[:'version'] = opts[:'version'] if !opts[:'version'].nil?
79
52
  query_params[:'fields'] = opts[:'fields'] if !opts[:'fields'].nil?
80
53
  query_params[:'exclude_fields'] = opts[:'exclude_fields'] if !opts[:'exclude_fields'].nil?
81
54
 
@@ -115,9 +88,9 @@ module PulpAnsibleClient
115
88
  # Unpaginated ViewSet for Collections.
116
89
  # @param path [String]
117
90
  # @param [Hash] opts the optional parameters
118
- # @option opts [String] :deprecated deprecated
119
- # @option opts [String] :name name
120
- # @option opts [String] :namespace namespace
91
+ # @option opts [String] :deprecated
92
+ # @option opts [String] :name
93
+ # @option opts [String] :namespace
121
94
  # @option opts [String] :fields A list of fields to include in the response.
122
95
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
123
96
  # @return [Array<CollectionResponse>]
@@ -129,9 +102,9 @@ module PulpAnsibleClient
129
102
  # Unpaginated ViewSet for Collections.
130
103
  # @param path [String]
131
104
  # @param [Hash] opts the optional parameters
132
- # @option opts [String] :deprecated deprecated
133
- # @option opts [String] :name name
134
- # @option opts [String] :namespace namespace
105
+ # @option opts [String] :deprecated
106
+ # @option opts [String] :name
107
+ # @option opts [String] :namespace
135
108
  # @option opts [String] :fields A list of fields to include in the response.
136
109
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
137
110
  # @return [Array<(Array<CollectionResponse>, Integer, Hash)>] Array<CollectionResponse> data, response status code and response headers
@@ -24,17 +24,17 @@ module PulpAnsibleClient
24
24
  # @param namespace [String]
25
25
  # @param path [String]
26
26
  # @param [Hash] opts the optional parameters
27
- # @option opts [String] :is_highest is_highest
27
+ # @option opts [Boolean] :is_highest
28
28
  # @option opts [Integer] :limit Number of results to return per page.
29
- # @option opts [String] :name2 name
30
- # @option opts [String] :namespace2 namespace
29
+ # @option opts [String] :name2
30
+ # @option opts [String] :namespace2
31
31
  # @option opts [Integer] :offset The initial index from which to return the results.
32
- # @option opts [String] :q q
33
- # @option opts [String] :repository_version repository_version
34
- # @option opts [String] :repository_version_added repository_version_added
35
- # @option opts [String] :repository_version_removed repository_version_removed
36
- # @option opts [String] :tags tags
37
- # @option opts [String] :version version
32
+ # @option opts [String] :q
33
+ # @option opts [String] :repository_version Repository Version referenced by HREF
34
+ # @option opts [String] :repository_version_added Repository Version referenced by HREF
35
+ # @option opts [String] :repository_version_removed Repository Version referenced by HREF
36
+ # @option opts [String] :tags Filter by comma separate list of tags that must all be matched
37
+ # @option opts [String] :version Filter results where version matches value
38
38
  # @option opts [String] :fields A list of fields to include in the response.
39
39
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
40
40
  # @return [PaginatedCollectionVersionResponseList]
@@ -48,17 +48,17 @@ module PulpAnsibleClient
48
48
  # @param namespace [String]
49
49
  # @param path [String]
50
50
  # @param [Hash] opts the optional parameters
51
- # @option opts [String] :is_highest is_highest
51
+ # @option opts [Boolean] :is_highest
52
52
  # @option opts [Integer] :limit Number of results to return per page.
53
- # @option opts [String] :name2 name
54
- # @option opts [String] :namespace2 namespace
53
+ # @option opts [String] :name2
54
+ # @option opts [String] :namespace2
55
55
  # @option opts [Integer] :offset The initial index from which to return the results.
56
- # @option opts [String] :q q
57
- # @option opts [String] :repository_version repository_version
58
- # @option opts [String] :repository_version_added repository_version_added
59
- # @option opts [String] :repository_version_removed repository_version_removed
60
- # @option opts [String] :tags tags
61
- # @option opts [String] :version version
56
+ # @option opts [String] :q
57
+ # @option opts [String] :repository_version Repository Version referenced by HREF
58
+ # @option opts [String] :repository_version_added Repository Version referenced by HREF
59
+ # @option opts [String] :repository_version_removed Repository Version referenced by HREF
60
+ # @option opts [String] :tags Filter by comma separate list of tags that must all be matched
61
+ # @option opts [String] :version Filter results where version matches value
62
62
  # @option opts [String] :fields A list of fields to include in the response.
63
63
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
64
64
  # @return [Array<(PaginatedCollectionVersionResponseList, Integer, Hash)>] PaginatedCollectionVersionResponseList data, response status code and response headers
@@ -149,20 +149,20 @@ module PulpAnsibleClient
149
149
  # ViewSet for Collection Remotes.
150
150
  # @param [Hash] opts the optional parameters
151
151
  # @option opts [Integer] :limit Number of results to return per page.
152
- # @option opts [String] :name name
153
- # @option opts [String] :name__contains name__contains
154
- # @option opts [String] :name__icontains name__icontains
155
- # @option opts [String] :name__in name__in
156
- # @option opts [String] :name__startswith name__startswith
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
157
  # @option opts [Integer] :offset The initial index from which to return the results.
158
158
  # @option opts [String] :ordering Which field to use when ordering the results.
159
- # @option opts [String] :pulp_label_select pulp_label_select
160
- # @option opts [String] :pulp_last_updated pulp_last_updated
161
- # @option opts [String] :pulp_last_updated__gt pulp_last_updated__gt
162
- # @option opts [String] :pulp_last_updated__gte pulp_last_updated__gte
163
- # @option opts [String] :pulp_last_updated__lt pulp_last_updated__lt
164
- # @option opts [String] :pulp_last_updated__lte pulp_last_updated__lte
165
- # @option opts [String] :pulp_last_updated__range pulp_last_updated__range
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
166
  # @option opts [String] :fields A list of fields to include in the response.
167
167
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
168
168
  # @return [PaginatedansibleCollectionRemoteResponseList]
@@ -175,20 +175,20 @@ module PulpAnsibleClient
175
175
  # ViewSet for Collection Remotes.
176
176
  # @param [Hash] opts the optional parameters
177
177
  # @option opts [Integer] :limit Number of results to return per page.
178
- # @option opts [String] :name name
179
- # @option opts [String] :name__contains name__contains
180
- # @option opts [String] :name__icontains name__icontains
181
- # @option opts [String] :name__in name__in
182
- # @option opts [String] :name__startswith name__startswith
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
183
  # @option opts [Integer] :offset The initial index from which to return the results.
184
184
  # @option opts [String] :ordering Which field to use when ordering the results.
185
- # @option opts [String] :pulp_label_select pulp_label_select
186
- # @option opts [String] :pulp_last_updated pulp_last_updated
187
- # @option opts [String] :pulp_last_updated__gt pulp_last_updated__gt
188
- # @option opts [String] :pulp_last_updated__gte pulp_last_updated__gte
189
- # @option opts [String] :pulp_last_updated__lt pulp_last_updated__lt
190
- # @option opts [String] :pulp_last_updated__lte pulp_last_updated__lte
191
- # @option opts [String] :pulp_last_updated__range pulp_last_updated__range
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
192
  # @option opts [String] :fields A list of fields to include in the response.
193
193
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
194
194
  # @return [Array<(PaginatedansibleCollectionRemoteResponseList, Integer, Hash)>] PaginatedansibleCollectionRemoteResponseList data, response status code and response headers
@@ -205,7 +205,7 @@ module PulpAnsibleClient
205
205
  query_params[:'name'] = opts[:'name'] if !opts[:'name'].nil?
206
206
  query_params[:'name__contains'] = opts[:'name__contains'] if !opts[:'name__contains'].nil?
207
207
  query_params[:'name__icontains'] = opts[:'name__icontains'] if !opts[:'name__icontains'].nil?
208
- query_params[:'name__in'] = opts[:'name__in'] if !opts[:'name__in'].nil?
208
+ query_params[:'name__in'] = @api_client.build_collection_param(opts[:'name__in'], :csv) if !opts[:'name__in'].nil?
209
209
  query_params[:'name__startswith'] = opts[:'name__startswith'] if !opts[:'name__startswith'].nil?
210
210
  query_params[:'offset'] = opts[:'offset'] if !opts[:'offset'].nil?
211
211
  query_params[:'ordering'] = opts[:'ordering'] if !opts[:'ordering'].nil?
@@ -215,7 +215,7 @@ module PulpAnsibleClient
215
215
  query_params[:'pulp_last_updated__gte'] = opts[:'pulp_last_updated__gte'] if !opts[:'pulp_last_updated__gte'].nil?
216
216
  query_params[:'pulp_last_updated__lt'] = opts[:'pulp_last_updated__lt'] if !opts[:'pulp_last_updated__lt'].nil?
217
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'] = opts[:'pulp_last_updated__range'] if !opts[:'pulp_last_updated__range'].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
219
  query_params[:'fields'] = opts[:'fields'] if !opts[:'fields'].nil?
220
220
  query_params[:'exclude_fields'] = opts[:'exclude_fields'] if !opts[:'exclude_fields'].nil?
221
221
 
@@ -149,20 +149,20 @@ module PulpAnsibleClient
149
149
  # ViewSet for Role Remotes.
150
150
  # @param [Hash] opts the optional parameters
151
151
  # @option opts [Integer] :limit Number of results to return per page.
152
- # @option opts [String] :name name
153
- # @option opts [String] :name__contains name__contains
154
- # @option opts [String] :name__icontains name__icontains
155
- # @option opts [String] :name__in name__in
156
- # @option opts [String] :name__startswith name__startswith
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
157
  # @option opts [Integer] :offset The initial index from which to return the results.
158
158
  # @option opts [String] :ordering Which field to use when ordering the results.
159
- # @option opts [String] :pulp_label_select pulp_label_select
160
- # @option opts [String] :pulp_last_updated pulp_last_updated
161
- # @option opts [String] :pulp_last_updated__gt pulp_last_updated__gt
162
- # @option opts [String] :pulp_last_updated__gte pulp_last_updated__gte
163
- # @option opts [String] :pulp_last_updated__lt pulp_last_updated__lt
164
- # @option opts [String] :pulp_last_updated__lte pulp_last_updated__lte
165
- # @option opts [String] :pulp_last_updated__range pulp_last_updated__range
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
166
  # @option opts [String] :fields A list of fields to include in the response.
167
167
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
168
168
  # @return [PaginatedansibleRoleRemoteResponseList]
@@ -175,20 +175,20 @@ module PulpAnsibleClient
175
175
  # ViewSet for Role Remotes.
176
176
  # @param [Hash] opts the optional parameters
177
177
  # @option opts [Integer] :limit Number of results to return per page.
178
- # @option opts [String] :name name
179
- # @option opts [String] :name__contains name__contains
180
- # @option opts [String] :name__icontains name__icontains
181
- # @option opts [String] :name__in name__in
182
- # @option opts [String] :name__startswith name__startswith
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
183
  # @option opts [Integer] :offset The initial index from which to return the results.
184
184
  # @option opts [String] :ordering Which field to use when ordering the results.
185
- # @option opts [String] :pulp_label_select pulp_label_select
186
- # @option opts [String] :pulp_last_updated pulp_last_updated
187
- # @option opts [String] :pulp_last_updated__gt pulp_last_updated__gt
188
- # @option opts [String] :pulp_last_updated__gte pulp_last_updated__gte
189
- # @option opts [String] :pulp_last_updated__lt pulp_last_updated__lt
190
- # @option opts [String] :pulp_last_updated__lte pulp_last_updated__lte
191
- # @option opts [String] :pulp_last_updated__range pulp_last_updated__range
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
192
  # @option opts [String] :fields A list of fields to include in the response.
193
193
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
194
194
  # @return [Array<(PaginatedansibleRoleRemoteResponseList, Integer, Hash)>] PaginatedansibleRoleRemoteResponseList data, response status code and response headers
@@ -205,7 +205,7 @@ module PulpAnsibleClient
205
205
  query_params[:'name'] = opts[:'name'] if !opts[:'name'].nil?
206
206
  query_params[:'name__contains'] = opts[:'name__contains'] if !opts[:'name__contains'].nil?
207
207
  query_params[:'name__icontains'] = opts[:'name__icontains'] if !opts[:'name__icontains'].nil?
208
- query_params[:'name__in'] = opts[:'name__in'] if !opts[:'name__in'].nil?
208
+ query_params[:'name__in'] = @api_client.build_collection_param(opts[:'name__in'], :csv) if !opts[:'name__in'].nil?
209
209
  query_params[:'name__startswith'] = opts[:'name__startswith'] if !opts[:'name__startswith'].nil?
210
210
  query_params[:'offset'] = opts[:'offset'] if !opts[:'offset'].nil?
211
211
  query_params[:'ordering'] = opts[:'ordering'] if !opts[:'ordering'].nil?
@@ -215,7 +215,7 @@ module PulpAnsibleClient
215
215
  query_params[:'pulp_last_updated__gte'] = opts[:'pulp_last_updated__gte'] if !opts[:'pulp_last_updated__gte'].nil?
216
216
  query_params[:'pulp_last_updated__lt'] = opts[:'pulp_last_updated__lt'] if !opts[:'pulp_last_updated__lt'].nil?
217
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'] = opts[:'pulp_last_updated__range'] if !opts[:'pulp_last_updated__range'].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
219
  query_params[:'fields'] = opts[:'fields'] if !opts[:'fields'].nil?
220
220
  query_params[:'exclude_fields'] = opts[:'exclude_fields'] if !opts[:'exclude_fields'].nil?
221
221