pulp_deb_client 2.20.2 → 2.20.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (58) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +4 -4
  3. data/docs/ContentGenericContentsApi.md +6 -2
  4. data/docs/ContentInstallerFileIndicesApi.md +6 -2
  5. data/docs/ContentInstallerPackagesApi.md +12 -8
  6. data/docs/ContentPackageIndicesApi.md +6 -2
  7. data/docs/ContentPackageReleaseComponentsApi.md +6 -2
  8. data/docs/ContentPackagesApi.md +12 -8
  9. data/docs/ContentReleaseArchitecturesApi.md +6 -2
  10. data/docs/ContentReleaseComponentsApi.md +6 -2
  11. data/docs/ContentReleaseFilesApi.md +6 -2
  12. data/docs/ContentReleasesApi.md +6 -2
  13. data/docs/DebAptRemote.md +1 -1
  14. data/docs/DebAptRemoteResponse.md +1 -1
  15. data/docs/DistributionsAptApi.md +6 -2
  16. data/docs/PatcheddebAptRemote.md +1 -1
  17. data/docs/PublicationsAptApi.md +6 -2
  18. data/docs/PublicationsVerbatimApi.md +6 -2
  19. data/docs/RemotesAptApi.md +6 -2
  20. data/docs/RepositoriesAptApi.md +6 -2
  21. data/docs/RepositoriesAptVersionsApi.md +4 -2
  22. data/lib/pulp_deb_client/api/content_generic_contents_api.rb +8 -2
  23. data/lib/pulp_deb_client/api/content_installer_file_indices_api.rb +8 -2
  24. data/lib/pulp_deb_client/api/content_installer_packages_api.rb +14 -8
  25. data/lib/pulp_deb_client/api/content_package_indices_api.rb +8 -2
  26. data/lib/pulp_deb_client/api/content_package_release_components_api.rb +8 -2
  27. data/lib/pulp_deb_client/api/content_packages_api.rb +14 -8
  28. data/lib/pulp_deb_client/api/content_release_architectures_api.rb +8 -2
  29. data/lib/pulp_deb_client/api/content_release_components_api.rb +8 -2
  30. data/lib/pulp_deb_client/api/content_release_files_api.rb +8 -2
  31. data/lib/pulp_deb_client/api/content_releases_api.rb +8 -2
  32. data/lib/pulp_deb_client/api/distributions_apt_api.rb +8 -2
  33. data/lib/pulp_deb_client/api/publications_apt_api.rb +8 -2
  34. data/lib/pulp_deb_client/api/publications_verbatim_api.rb +8 -2
  35. data/lib/pulp_deb_client/api/remotes_apt_api.rb +8 -2
  36. data/lib/pulp_deb_client/api/repositories_apt_api.rb +8 -2
  37. data/lib/pulp_deb_client/api/repositories_apt_versions_api.rb +5 -2
  38. data/lib/pulp_deb_client/models/deb_apt_remote.rb +1 -1
  39. data/lib/pulp_deb_client/models/deb_apt_remote_response.rb +1 -1
  40. data/lib/pulp_deb_client/models/patcheddeb_apt_remote.rb +1 -1
  41. data/lib/pulp_deb_client/version.rb +1 -1
  42. data/spec/api/content_generic_contents_api_spec.rb +3 -1
  43. data/spec/api/content_installer_file_indices_api_spec.rb +3 -1
  44. data/spec/api/content_installer_packages_api_spec.rb +6 -4
  45. data/spec/api/content_package_indices_api_spec.rb +3 -1
  46. data/spec/api/content_package_release_components_api_spec.rb +3 -1
  47. data/spec/api/content_packages_api_spec.rb +6 -4
  48. data/spec/api/content_release_architectures_api_spec.rb +3 -1
  49. data/spec/api/content_release_components_api_spec.rb +3 -1
  50. data/spec/api/content_release_files_api_spec.rb +3 -1
  51. data/spec/api/content_releases_api_spec.rb +3 -1
  52. data/spec/api/distributions_apt_api_spec.rb +3 -1
  53. data/spec/api/publications_apt_api_spec.rb +3 -1
  54. data/spec/api/publications_verbatim_api_spec.rb +3 -1
  55. data/spec/api/remotes_apt_api_spec.rb +3 -1
  56. data/spec/api/repositories_apt_api_spec.rb +3 -1
  57. data/spec/api/repositories_apt_versions_api_spec.rb +2 -1
  58. metadata +56 -56
@@ -150,7 +150,9 @@ opts = {
150
150
  name__in: ['name__in_example'], # Array<String> | Filter results where name is in a comma-separated list of values
151
151
  name__startswith: 'name__startswith_example', # String | Filter results where name starts with value
152
152
  offset: 56, # Integer | The initial index from which to return the results.
153
- ordering: ['ordering_example'], # Array<String> | Ordering
153
+ ordering: ['ordering_example'], # Array<String> | Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `name` - Name * `-name` - Name (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `description` - Description * `-description` - Description (descending) * `next_version` - Next version * `-next_version` - Next version (descending) * `retain_repo_versions` - Retain repo versions * `-retain_repo_versions` - Retain repo versions (descending) * `user_hidden` - User hidden * `-user_hidden` - User hidden (descending) * `pk` - Pk * `-pk` - Pk (descending)
154
+ pulp_href__in: ['pulp_href__in_example'], # Array<String> | Multiple values may be separated by commas.
155
+ pulp_id__in: ['pulp_id__in_example'], # Array<String> | Multiple values may be separated by commas.
154
156
  pulp_label_select: 'pulp_label_select_example', # String | Filter labels by search string
155
157
  remote: 'remote_example', # String | Foreign Key referenced by HREF
156
158
  retain_repo_versions: 56, # Integer | Filter results where retain_repo_versions matches value
@@ -186,7 +188,9 @@ Name | Type | Description | Notes
186
188
  **name__in** | [**Array&lt;String&gt;**](String.md)| Filter results where name is in a comma-separated list of values | [optional]
187
189
  **name__startswith** | **String**| Filter results where name starts with value | [optional]
188
190
  **offset** | **Integer**| The initial index from which to return the results. | [optional]
189
- **ordering** | [**Array&lt;String&gt;**](String.md)| Ordering | [optional]
191
+ **ordering** | [**Array&lt;String&gt;**](String.md)| 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;pulp_labels&#x60; - Pulp labels * &#x60;-pulp_labels&#x60; - Pulp labels (descending) * &#x60;description&#x60; - Description * &#x60;-description&#x60; - Description (descending) * &#x60;next_version&#x60; - Next version * &#x60;-next_version&#x60; - Next version (descending) * &#x60;retain_repo_versions&#x60; - Retain repo versions * &#x60;-retain_repo_versions&#x60; - Retain repo versions (descending) * &#x60;user_hidden&#x60; - User hidden * &#x60;-user_hidden&#x60; - User hidden (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending) | [optional]
192
+ **pulp_href__in** | [**Array&lt;String&gt;**](String.md)| Multiple values may be separated by commas. | [optional]
193
+ **pulp_id__in** | [**Array&lt;String&gt;**](String.md)| Multiple values may be separated by commas. | [optional]
190
194
  **pulp_label_select** | **String**| Filter labels by search string | [optional]
191
195
  **remote** | **String**| Foreign Key referenced by HREF | [optional]
192
196
  **retain_repo_versions** | **Integer**| Filter results where retain_repo_versions matches value | [optional]
@@ -97,13 +97,14 @@ opts = {
97
97
  number__lte: 56, # Integer | Filter results where number is less than or equal to value
98
98
  number__range: [56], # Array<Integer> | Filter results where number is between two comma separated values
99
99
  offset: 56, # Integer | The initial index from which to return the results.
100
- ordering: ['ordering_example'], # Array<String> | Ordering
100
+ ordering: ['ordering_example'], # Array<String> | Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `number` - Number * `-number` - Number (descending) * `complete` - Complete * `-complete` - Complete (descending) * `info` - Info * `-info` - Info (descending) * `pk` - Pk * `-pk` - Pk (descending)
101
101
  pulp_created: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where pulp_created matches value
102
102
  pulp_created__gt: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where pulp_created is greater than value
103
103
  pulp_created__gte: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where pulp_created is greater than or equal to value
104
104
  pulp_created__lt: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where pulp_created is less than value
105
105
  pulp_created__lte: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where pulp_created is less than or equal to value
106
106
  pulp_created__range: [DateTime.parse('2013-10-20T19:20:30+01:00')], # Array<DateTime> | Filter results where pulp_created is between two comma separated values
107
+ pulp_href__in: ['pulp_href__in_example'], # Array<String> | Multiple values may be separated by commas.
107
108
  fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
108
109
  exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
109
110
  }
@@ -133,13 +134,14 @@ Name | Type | Description | Notes
133
134
  **number__lte** | **Integer**| Filter results where number is less than or equal to value | [optional]
134
135
  **number__range** | [**Array&lt;Integer&gt;**](Integer.md)| Filter results where number is between two comma separated values | [optional]
135
136
  **offset** | **Integer**| The initial index from which to return the results. | [optional]
136
- **ordering** | [**Array&lt;String&gt;**](String.md)| Ordering | [optional]
137
+ **ordering** | [**Array&lt;String&gt;**](String.md)| 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;number&#x60; - Number * &#x60;-number&#x60; - Number (descending) * &#x60;complete&#x60; - Complete * &#x60;-complete&#x60; - Complete (descending) * &#x60;info&#x60; - Info * &#x60;-info&#x60; - Info (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending) | [optional]
137
138
  **pulp_created** | **DateTime**| Filter results where pulp_created matches value | [optional]
138
139
  **pulp_created__gt** | **DateTime**| Filter results where pulp_created is greater than value | [optional]
139
140
  **pulp_created__gte** | **DateTime**| Filter results where pulp_created is greater than or equal to value | [optional]
140
141
  **pulp_created__lt** | **DateTime**| Filter results where pulp_created is less than value | [optional]
141
142
  **pulp_created__lte** | **DateTime**| Filter results where pulp_created is less than or equal to value | [optional]
142
143
  **pulp_created__range** | [**Array&lt;DateTime&gt;**](DateTime.md)| Filter results where pulp_created is between two comma separated values | [optional]
144
+ **pulp_href__in** | [**Array&lt;String&gt;**](String.md)| Multiple values may be separated by commas. | [optional]
143
145
  **fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to include in the response. | [optional]
144
146
  **exclude_fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to exclude from the response. | [optional]
145
147
 
@@ -105,7 +105,9 @@ module PulpDebClient
105
105
  # @param [Hash] opts the optional parameters
106
106
  # @option opts [Integer] :limit Number of results to return per page.
107
107
  # @option opts [Integer] :offset The initial index from which to return the results.
108
- # @option opts [Array<String>] :ordering Ordering
108
+ # @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;upstream_id&#x60; - Upstream id * &#x60;-upstream_id&#x60; - Upstream id (descending) * &#x60;timestamp_of_interest&#x60; - Timestamp of interest * &#x60;-timestamp_of_interest&#x60; - Timestamp of interest (descending) * &#x60;relative_path&#x60; - Relative path * &#x60;-relative_path&#x60; - Relative path (descending) * &#x60;sha256&#x60; - Sha256 * &#x60;-sha256&#x60; - Sha256 (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
109
+ # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
110
+ # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
109
111
  # @option opts [String] :relative_path Filter results where relative_path matches value
110
112
  # @option opts [String] :repository_version Repository Version referenced by HREF
111
113
  # @option opts [String] :repository_version_added Repository Version referenced by HREF
@@ -124,7 +126,9 @@ module PulpDebClient
124
126
  # @param [Hash] opts the optional parameters
125
127
  # @option opts [Integer] :limit Number of results to return per page.
126
128
  # @option opts [Integer] :offset The initial index from which to return the results.
127
- # @option opts [Array<String>] :ordering Ordering
129
+ # @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;upstream_id&#x60; - Upstream id * &#x60;-upstream_id&#x60; - Upstream id (descending) * &#x60;timestamp_of_interest&#x60; - Timestamp of interest * &#x60;-timestamp_of_interest&#x60; - Timestamp of interest (descending) * &#x60;relative_path&#x60; - Relative path * &#x60;-relative_path&#x60; - Relative path (descending) * &#x60;sha256&#x60; - Sha256 * &#x60;-sha256&#x60; - Sha256 (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
130
+ # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
131
+ # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
128
132
  # @option opts [String] :relative_path Filter results where relative_path matches value
129
133
  # @option opts [String] :repository_version Repository Version referenced by HREF
130
134
  # @option opts [String] :repository_version_added Repository Version referenced by HREF
@@ -149,6 +153,8 @@ module PulpDebClient
149
153
  query_params[:'limit'] = opts[:'limit'] if !opts[:'limit'].nil?
150
154
  query_params[:'offset'] = opts[:'offset'] if !opts[:'offset'].nil?
151
155
  query_params[:'ordering'] = @api_client.build_collection_param(opts[:'ordering'], :csv) if !opts[:'ordering'].nil?
156
+ query_params[:'pulp_href__in'] = @api_client.build_collection_param(opts[:'pulp_href__in'], :csv) if !opts[:'pulp_href__in'].nil?
157
+ query_params[:'pulp_id__in'] = @api_client.build_collection_param(opts[:'pulp_id__in'], :csv) if !opts[:'pulp_id__in'].nil?
152
158
  query_params[:'relative_path'] = opts[:'relative_path'] if !opts[:'relative_path'].nil?
153
159
  query_params[:'repository_version'] = opts[:'repository_version'] if !opts[:'repository_version'].nil?
154
160
  query_params[:'repository_version_added'] = opts[:'repository_version_added'] if !opts[:'repository_version_added'].nil?
@@ -90,7 +90,9 @@ module PulpDebClient
90
90
  # @option opts [String] :component Filter results where component matches value
91
91
  # @option opts [Integer] :limit Number of results to return per page.
92
92
  # @option opts [Integer] :offset The initial index from which to return the results.
93
- # @option opts [Array<String>] :ordering Ordering
93
+ # @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;upstream_id&#x60; - Upstream id * &#x60;-upstream_id&#x60; - Upstream id (descending) * &#x60;timestamp_of_interest&#x60; - Timestamp of interest * &#x60;-timestamp_of_interest&#x60; - Timestamp of interest (descending) * &#x60;component&#x60; - Component * &#x60;-component&#x60; - Component (descending) * &#x60;architecture&#x60; - Architecture * &#x60;-architecture&#x60; - Architecture (descending) * &#x60;relative_path&#x60; - Relative path * &#x60;-relative_path&#x60; - Relative path (descending) * &#x60;sha256&#x60; - Sha256 * &#x60;-sha256&#x60; - Sha256 (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
94
+ # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
95
+ # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
94
96
  # @option opts [String] :relative_path Filter results where relative_path matches value
95
97
  # @option opts [String] :repository_version Repository Version referenced by HREF
96
98
  # @option opts [String] :repository_version_added Repository Version referenced by HREF
@@ -111,7 +113,9 @@ module PulpDebClient
111
113
  # @option opts [String] :component Filter results where component matches value
112
114
  # @option opts [Integer] :limit Number of results to return per page.
113
115
  # @option opts [Integer] :offset The initial index from which to return the results.
114
- # @option opts [Array<String>] :ordering Ordering
116
+ # @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;upstream_id&#x60; - Upstream id * &#x60;-upstream_id&#x60; - Upstream id (descending) * &#x60;timestamp_of_interest&#x60; - Timestamp of interest * &#x60;-timestamp_of_interest&#x60; - Timestamp of interest (descending) * &#x60;component&#x60; - Component * &#x60;-component&#x60; - Component (descending) * &#x60;architecture&#x60; - Architecture * &#x60;-architecture&#x60; - Architecture (descending) * &#x60;relative_path&#x60; - Relative path * &#x60;-relative_path&#x60; - Relative path (descending) * &#x60;sha256&#x60; - Sha256 * &#x60;-sha256&#x60; - Sha256 (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
117
+ # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
118
+ # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
115
119
  # @option opts [String] :relative_path Filter results where relative_path matches value
116
120
  # @option opts [String] :repository_version Repository Version referenced by HREF
117
121
  # @option opts [String] :repository_version_added Repository Version referenced by HREF
@@ -138,6 +142,8 @@ module PulpDebClient
138
142
  query_params[:'limit'] = opts[:'limit'] if !opts[:'limit'].nil?
139
143
  query_params[:'offset'] = opts[:'offset'] if !opts[:'offset'].nil?
140
144
  query_params[:'ordering'] = @api_client.build_collection_param(opts[:'ordering'], :csv) if !opts[:'ordering'].nil?
145
+ query_params[:'pulp_href__in'] = @api_client.build_collection_param(opts[:'pulp_href__in'], :csv) if !opts[:'pulp_href__in'].nil?
146
+ query_params[:'pulp_id__in'] = @api_client.build_collection_param(opts[:'pulp_id__in'], :csv) if !opts[:'pulp_id__in'].nil?
141
147
  query_params[:'relative_path'] = opts[:'relative_path'] if !opts[:'relative_path'].nil?
142
148
  query_params[:'repository_version'] = opts[:'repository_version'] if !opts[:'repository_version'].nil?
143
149
  query_params[:'repository_version_added'] = opts[:'repository_version_added'] if !opts[:'repository_version_added'].nil?
@@ -101,19 +101,21 @@ module PulpDebClient
101
101
  # @param [Hash] opts the optional parameters
102
102
  # @option opts [String] :architecture Filter results where architecture matches value
103
103
  # @option opts [String] :auto_built_package Filter results where auto_built_package matches value
104
- # @option opts [Boolean] :build_essential Filter results where build_essential matches value
104
+ # @option opts [Boolean] :build_essential Filter results where build_essential matches value * &#x60;True&#x60; - yes * &#x60;False&#x60; - no
105
105
  # @option opts [String] :built_using Filter results where built_using matches value
106
- # @option opts [Boolean] :essential Filter results where essential matches value
106
+ # @option opts [Boolean] :essential Filter results where essential matches value * &#x60;True&#x60; - yes * &#x60;False&#x60; - no
107
107
  # @option opts [Integer] :installed_size Filter results where installed_size matches value
108
108
  # @option opts [Integer] :limit Number of results to return per page.
109
109
  # @option opts [String] :maintainer Filter results where maintainer matches value
110
- # @option opts [String] :multi_arch Filter results where multi_arch matches value
110
+ # @option opts [String] :multi_arch Filter results where multi_arch matches value * &#x60;no&#x60; - no * &#x60;same&#x60; - same * &#x60;foreign&#x60; - foreign * &#x60;allowed&#x60; - allowed
111
111
  # @option opts [Integer] :offset The initial index from which to return the results.
112
- # @option opts [Array<String>] :ordering Ordering
112
+ # @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;upstream_id&#x60; - Upstream id * &#x60;-upstream_id&#x60; - Upstream id (descending) * &#x60;timestamp_of_interest&#x60; - Timestamp of interest * &#x60;-timestamp_of_interest&#x60; - Timestamp of interest (descending) * &#x60;package&#x60; - Package * &#x60;-package&#x60; - Package (descending) * &#x60;source&#x60; - Source * &#x60;-source&#x60; - Source (descending) * &#x60;version&#x60; - Version * &#x60;-version&#x60; - Version (descending) * &#x60;architecture&#x60; - Architecture * &#x60;-architecture&#x60; - Architecture (descending) * &#x60;section&#x60; - Section * &#x60;-section&#x60; - Section (descending) * &#x60;priority&#x60; - Priority * &#x60;-priority&#x60; - Priority (descending) * &#x60;origin&#x60; - Origin * &#x60;-origin&#x60; - Origin (descending) * &#x60;tag&#x60; - Tag * &#x60;-tag&#x60; - Tag (descending) * &#x60;bugs&#x60; - Bugs * &#x60;-bugs&#x60; - Bugs (descending) * &#x60;essential&#x60; - Essential * &#x60;-essential&#x60; - Essential (descending) * &#x60;build_essential&#x60; - Build essential * &#x60;-build_essential&#x60; - Build essential (descending) * &#x60;installed_size&#x60; - Installed size * &#x60;-installed_size&#x60; - Installed size (descending) * &#x60;maintainer&#x60; - Maintainer * &#x60;-maintainer&#x60; - Maintainer (descending) * &#x60;original_maintainer&#x60; - Original maintainer * &#x60;-original_maintainer&#x60; - Original maintainer (descending) * &#x60;description&#x60; - Description * &#x60;-description&#x60; - Description (descending) * &#x60;description_md5&#x60; - Description md5 * &#x60;-description_md5&#x60; - Description md5 (descending) * &#x60;homepage&#x60; - Homepage * &#x60;-homepage&#x60; - Homepage (descending) * &#x60;built_using&#x60; - Built using * &#x60;-built_using&#x60; - Built using (descending) * &#x60;auto_built_package&#x60; - Auto built package * &#x60;-auto_built_package&#x60; - Auto built package (descending) * &#x60;multi_arch&#x60; - Multi arch * &#x60;-multi_arch&#x60; - Multi arch (descending) * &#x60;breaks&#x60; - Breaks * &#x60;-breaks&#x60; - Breaks (descending) * &#x60;conflicts&#x60; - Conflicts * &#x60;-conflicts&#x60; - Conflicts (descending) * &#x60;depends&#x60; - Depends * &#x60;-depends&#x60; - Depends (descending) * &#x60;recommends&#x60; - Recommends * &#x60;-recommends&#x60; - Recommends (descending) * &#x60;suggests&#x60; - Suggests * &#x60;-suggests&#x60; - Suggests (descending) * &#x60;enhances&#x60; - Enhances * &#x60;-enhances&#x60; - Enhances (descending) * &#x60;pre_depends&#x60; - Pre depends * &#x60;-pre_depends&#x60; - Pre depends (descending) * &#x60;provides&#x60; - Provides * &#x60;-provides&#x60; - Provides (descending) * &#x60;replaces&#x60; - Replaces * &#x60;-replaces&#x60; - Replaces (descending) * &#x60;relative_path&#x60; - Relative path * &#x60;-relative_path&#x60; - Relative path (descending) * &#x60;sha256&#x60; - Sha256 * &#x60;-sha256&#x60; - Sha256 (descending) * &#x60;custom_fields&#x60; - Custom fields * &#x60;-custom_fields&#x60; - Custom fields (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
113
113
  # @option opts [String] :origin Filter results where origin matches value
114
114
  # @option opts [String] :original_maintainer Filter results where original_maintainer matches value
115
115
  # @option opts [String] :package Filter results where package matches value
116
116
  # @option opts [String] :priority Filter results where priority matches value
117
+ # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
118
+ # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
117
119
  # @option opts [String] :repository_version Repository Version referenced by HREF
118
120
  # @option opts [String] :repository_version_added Repository Version referenced by HREF
119
121
  # @option opts [String] :repository_version_removed Repository Version referenced by HREF
@@ -135,19 +137,21 @@ module PulpDebClient
135
137
  # @param [Hash] opts the optional parameters
136
138
  # @option opts [String] :architecture Filter results where architecture matches value
137
139
  # @option opts [String] :auto_built_package Filter results where auto_built_package matches value
138
- # @option opts [Boolean] :build_essential Filter results where build_essential matches value
140
+ # @option opts [Boolean] :build_essential Filter results where build_essential matches value * &#x60;True&#x60; - yes * &#x60;False&#x60; - no
139
141
  # @option opts [String] :built_using Filter results where built_using matches value
140
- # @option opts [Boolean] :essential Filter results where essential matches value
142
+ # @option opts [Boolean] :essential Filter results where essential matches value * &#x60;True&#x60; - yes * &#x60;False&#x60; - no
141
143
  # @option opts [Integer] :installed_size Filter results where installed_size matches value
142
144
  # @option opts [Integer] :limit Number of results to return per page.
143
145
  # @option opts [String] :maintainer Filter results where maintainer matches value
144
- # @option opts [String] :multi_arch Filter results where multi_arch matches value
146
+ # @option opts [String] :multi_arch Filter results where multi_arch matches value * &#x60;no&#x60; - no * &#x60;same&#x60; - same * &#x60;foreign&#x60; - foreign * &#x60;allowed&#x60; - allowed
145
147
  # @option opts [Integer] :offset The initial index from which to return the results.
146
- # @option opts [Array<String>] :ordering Ordering
148
+ # @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;upstream_id&#x60; - Upstream id * &#x60;-upstream_id&#x60; - Upstream id (descending) * &#x60;timestamp_of_interest&#x60; - Timestamp of interest * &#x60;-timestamp_of_interest&#x60; - Timestamp of interest (descending) * &#x60;package&#x60; - Package * &#x60;-package&#x60; - Package (descending) * &#x60;source&#x60; - Source * &#x60;-source&#x60; - Source (descending) * &#x60;version&#x60; - Version * &#x60;-version&#x60; - Version (descending) * &#x60;architecture&#x60; - Architecture * &#x60;-architecture&#x60; - Architecture (descending) * &#x60;section&#x60; - Section * &#x60;-section&#x60; - Section (descending) * &#x60;priority&#x60; - Priority * &#x60;-priority&#x60; - Priority (descending) * &#x60;origin&#x60; - Origin * &#x60;-origin&#x60; - Origin (descending) * &#x60;tag&#x60; - Tag * &#x60;-tag&#x60; - Tag (descending) * &#x60;bugs&#x60; - Bugs * &#x60;-bugs&#x60; - Bugs (descending) * &#x60;essential&#x60; - Essential * &#x60;-essential&#x60; - Essential (descending) * &#x60;build_essential&#x60; - Build essential * &#x60;-build_essential&#x60; - Build essential (descending) * &#x60;installed_size&#x60; - Installed size * &#x60;-installed_size&#x60; - Installed size (descending) * &#x60;maintainer&#x60; - Maintainer * &#x60;-maintainer&#x60; - Maintainer (descending) * &#x60;original_maintainer&#x60; - Original maintainer * &#x60;-original_maintainer&#x60; - Original maintainer (descending) * &#x60;description&#x60; - Description * &#x60;-description&#x60; - Description (descending) * &#x60;description_md5&#x60; - Description md5 * &#x60;-description_md5&#x60; - Description md5 (descending) * &#x60;homepage&#x60; - Homepage * &#x60;-homepage&#x60; - Homepage (descending) * &#x60;built_using&#x60; - Built using * &#x60;-built_using&#x60; - Built using (descending) * &#x60;auto_built_package&#x60; - Auto built package * &#x60;-auto_built_package&#x60; - Auto built package (descending) * &#x60;multi_arch&#x60; - Multi arch * &#x60;-multi_arch&#x60; - Multi arch (descending) * &#x60;breaks&#x60; - Breaks * &#x60;-breaks&#x60; - Breaks (descending) * &#x60;conflicts&#x60; - Conflicts * &#x60;-conflicts&#x60; - Conflicts (descending) * &#x60;depends&#x60; - Depends * &#x60;-depends&#x60; - Depends (descending) * &#x60;recommends&#x60; - Recommends * &#x60;-recommends&#x60; - Recommends (descending) * &#x60;suggests&#x60; - Suggests * &#x60;-suggests&#x60; - Suggests (descending) * &#x60;enhances&#x60; - Enhances * &#x60;-enhances&#x60; - Enhances (descending) * &#x60;pre_depends&#x60; - Pre depends * &#x60;-pre_depends&#x60; - Pre depends (descending) * &#x60;provides&#x60; - Provides * &#x60;-provides&#x60; - Provides (descending) * &#x60;replaces&#x60; - Replaces * &#x60;-replaces&#x60; - Replaces (descending) * &#x60;relative_path&#x60; - Relative path * &#x60;-relative_path&#x60; - Relative path (descending) * &#x60;sha256&#x60; - Sha256 * &#x60;-sha256&#x60; - Sha256 (descending) * &#x60;custom_fields&#x60; - Custom fields * &#x60;-custom_fields&#x60; - Custom fields (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
147
149
  # @option opts [String] :origin Filter results where origin matches value
148
150
  # @option opts [String] :original_maintainer Filter results where original_maintainer matches value
149
151
  # @option opts [String] :package Filter results where package matches value
150
152
  # @option opts [String] :priority Filter results where priority matches value
153
+ # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
154
+ # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
151
155
  # @option opts [String] :repository_version Repository Version referenced by HREF
152
156
  # @option opts [String] :repository_version_added Repository Version referenced by HREF
153
157
  # @option opts [String] :repository_version_removed Repository Version referenced by HREF
@@ -199,6 +203,8 @@ module PulpDebClient
199
203
  query_params[:'original_maintainer'] = opts[:'original_maintainer'] if !opts[:'original_maintainer'].nil?
200
204
  query_params[:'package'] = opts[:'package'] if !opts[:'package'].nil?
201
205
  query_params[:'priority'] = opts[:'priority'] if !opts[:'priority'].nil?
206
+ query_params[:'pulp_href__in'] = @api_client.build_collection_param(opts[:'pulp_href__in'], :csv) if !opts[:'pulp_href__in'].nil?
207
+ query_params[:'pulp_id__in'] = @api_client.build_collection_param(opts[:'pulp_id__in'], :csv) if !opts[:'pulp_id__in'].nil?
202
208
  query_params[:'repository_version'] = opts[:'repository_version'] if !opts[:'repository_version'].nil?
203
209
  query_params[:'repository_version_added'] = opts[:'repository_version_added'] if !opts[:'repository_version_added'].nil?
204
210
  query_params[:'repository_version_removed'] = opts[:'repository_version_removed'] if !opts[:'repository_version_removed'].nil?
@@ -90,7 +90,9 @@ module PulpDebClient
90
90
  # @option opts [String] :component Filter results where component matches value
91
91
  # @option opts [Integer] :limit Number of results to return per page.
92
92
  # @option opts [Integer] :offset The initial index from which to return the results.
93
- # @option opts [Array<String>] :ordering Ordering
93
+ # @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;upstream_id&#x60; - Upstream id * &#x60;-upstream_id&#x60; - Upstream id (descending) * &#x60;timestamp_of_interest&#x60; - Timestamp of interest * &#x60;-timestamp_of_interest&#x60; - Timestamp of interest (descending) * &#x60;component&#x60; - Component * &#x60;-component&#x60; - Component (descending) * &#x60;architecture&#x60; - Architecture * &#x60;-architecture&#x60; - Architecture (descending) * &#x60;relative_path&#x60; - Relative path * &#x60;-relative_path&#x60; - Relative path (descending) * &#x60;sha256&#x60; - Sha256 * &#x60;-sha256&#x60; - Sha256 (descending) * &#x60;artifact_set_sha256&#x60; - Artifact set sha256 * &#x60;-artifact_set_sha256&#x60; - Artifact set sha256 (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
94
+ # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
95
+ # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
94
96
  # @option opts [String] :relative_path Filter results where relative_path matches value
95
97
  # @option opts [String] :repository_version Repository Version referenced by HREF
96
98
  # @option opts [String] :repository_version_added Repository Version referenced by HREF
@@ -111,7 +113,9 @@ module PulpDebClient
111
113
  # @option opts [String] :component Filter results where component matches value
112
114
  # @option opts [Integer] :limit Number of results to return per page.
113
115
  # @option opts [Integer] :offset The initial index from which to return the results.
114
- # @option opts [Array<String>] :ordering Ordering
116
+ # @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;upstream_id&#x60; - Upstream id * &#x60;-upstream_id&#x60; - Upstream id (descending) * &#x60;timestamp_of_interest&#x60; - Timestamp of interest * &#x60;-timestamp_of_interest&#x60; - Timestamp of interest (descending) * &#x60;component&#x60; - Component * &#x60;-component&#x60; - Component (descending) * &#x60;architecture&#x60; - Architecture * &#x60;-architecture&#x60; - Architecture (descending) * &#x60;relative_path&#x60; - Relative path * &#x60;-relative_path&#x60; - Relative path (descending) * &#x60;sha256&#x60; - Sha256 * &#x60;-sha256&#x60; - Sha256 (descending) * &#x60;artifact_set_sha256&#x60; - Artifact set sha256 * &#x60;-artifact_set_sha256&#x60; - Artifact set sha256 (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
117
+ # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
118
+ # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
115
119
  # @option opts [String] :relative_path Filter results where relative_path matches value
116
120
  # @option opts [String] :repository_version Repository Version referenced by HREF
117
121
  # @option opts [String] :repository_version_added Repository Version referenced by HREF
@@ -138,6 +142,8 @@ module PulpDebClient
138
142
  query_params[:'limit'] = opts[:'limit'] if !opts[:'limit'].nil?
139
143
  query_params[:'offset'] = opts[:'offset'] if !opts[:'offset'].nil?
140
144
  query_params[:'ordering'] = @api_client.build_collection_param(opts[:'ordering'], :csv) if !opts[:'ordering'].nil?
145
+ query_params[:'pulp_href__in'] = @api_client.build_collection_param(opts[:'pulp_href__in'], :csv) if !opts[:'pulp_href__in'].nil?
146
+ query_params[:'pulp_id__in'] = @api_client.build_collection_param(opts[:'pulp_id__in'], :csv) if !opts[:'pulp_id__in'].nil?
141
147
  query_params[:'relative_path'] = opts[:'relative_path'] if !opts[:'relative_path'].nil?
142
148
  query_params[:'repository_version'] = opts[:'repository_version'] if !opts[:'repository_version'].nil?
143
149
  query_params[:'repository_version_added'] = opts[:'repository_version_added'] if !opts[:'repository_version_added'].nil?
@@ -88,8 +88,10 @@ module PulpDebClient
88
88
  # @param [Hash] opts the optional parameters
89
89
  # @option opts [Integer] :limit Number of results to return per page.
90
90
  # @option opts [Integer] :offset The initial index from which to return the results.
91
- # @option opts [Array<String>] :ordering Ordering
91
+ # @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;upstream_id&#x60; - Upstream id * &#x60;-upstream_id&#x60; - Upstream id (descending) * &#x60;timestamp_of_interest&#x60; - Timestamp of interest * &#x60;-timestamp_of_interest&#x60; - Timestamp of interest (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
92
92
  # @option opts [String] :package Filter results where package matches value
93
+ # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
94
+ # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
93
95
  # @option opts [String] :release_component Filter results where release_component matches value
94
96
  # @option opts [String] :repository_version Repository Version referenced by HREF
95
97
  # @option opts [String] :repository_version_added Repository Version referenced by HREF
@@ -107,8 +109,10 @@ module PulpDebClient
107
109
  # @param [Hash] opts the optional parameters
108
110
  # @option opts [Integer] :limit Number of results to return per page.
109
111
  # @option opts [Integer] :offset The initial index from which to return the results.
110
- # @option opts [Array<String>] :ordering Ordering
112
+ # @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;upstream_id&#x60; - Upstream id * &#x60;-upstream_id&#x60; - Upstream id (descending) * &#x60;timestamp_of_interest&#x60; - Timestamp of interest * &#x60;-timestamp_of_interest&#x60; - Timestamp of interest (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
111
113
  # @option opts [String] :package Filter results where package matches value
114
+ # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
115
+ # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
112
116
  # @option opts [String] :release_component Filter results where release_component matches value
113
117
  # @option opts [String] :repository_version Repository Version referenced by HREF
114
118
  # @option opts [String] :repository_version_added Repository Version referenced by HREF
@@ -133,6 +137,8 @@ module PulpDebClient
133
137
  query_params[:'offset'] = opts[:'offset'] if !opts[:'offset'].nil?
134
138
  query_params[:'ordering'] = @api_client.build_collection_param(opts[:'ordering'], :csv) if !opts[:'ordering'].nil?
135
139
  query_params[:'package'] = opts[:'package'] if !opts[:'package'].nil?
140
+ query_params[:'pulp_href__in'] = @api_client.build_collection_param(opts[:'pulp_href__in'], :csv) if !opts[:'pulp_href__in'].nil?
141
+ query_params[:'pulp_id__in'] = @api_client.build_collection_param(opts[:'pulp_id__in'], :csv) if !opts[:'pulp_id__in'].nil?
136
142
  query_params[:'release_component'] = opts[:'release_component'] if !opts[:'release_component'].nil?
137
143
  query_params[:'repository_version'] = opts[:'repository_version'] if !opts[:'repository_version'].nil?
138
144
  query_params[:'repository_version_added'] = opts[:'repository_version_added'] if !opts[:'repository_version_added'].nil?
@@ -101,19 +101,21 @@ module PulpDebClient
101
101
  # @param [Hash] opts the optional parameters
102
102
  # @option opts [String] :architecture Filter results where architecture matches value
103
103
  # @option opts [String] :auto_built_package Filter results where auto_built_package matches value
104
- # @option opts [Boolean] :build_essential Filter results where build_essential matches value
104
+ # @option opts [Boolean] :build_essential Filter results where build_essential matches value * &#x60;True&#x60; - yes * &#x60;False&#x60; - no
105
105
  # @option opts [String] :built_using Filter results where built_using matches value
106
- # @option opts [Boolean] :essential Filter results where essential matches value
106
+ # @option opts [Boolean] :essential Filter results where essential matches value * &#x60;True&#x60; - yes * &#x60;False&#x60; - no
107
107
  # @option opts [Integer] :installed_size Filter results where installed_size matches value
108
108
  # @option opts [Integer] :limit Number of results to return per page.
109
109
  # @option opts [String] :maintainer Filter results where maintainer matches value
110
- # @option opts [String] :multi_arch Filter results where multi_arch matches value
110
+ # @option opts [String] :multi_arch Filter results where multi_arch matches value * &#x60;no&#x60; - no * &#x60;same&#x60; - same * &#x60;foreign&#x60; - foreign * &#x60;allowed&#x60; - allowed
111
111
  # @option opts [Integer] :offset The initial index from which to return the results.
112
- # @option opts [Array<String>] :ordering Ordering
112
+ # @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;upstream_id&#x60; - Upstream id * &#x60;-upstream_id&#x60; - Upstream id (descending) * &#x60;timestamp_of_interest&#x60; - Timestamp of interest * &#x60;-timestamp_of_interest&#x60; - Timestamp of interest (descending) * &#x60;package&#x60; - Package * &#x60;-package&#x60; - Package (descending) * &#x60;source&#x60; - Source * &#x60;-source&#x60; - Source (descending) * &#x60;version&#x60; - Version * &#x60;-version&#x60; - Version (descending) * &#x60;architecture&#x60; - Architecture * &#x60;-architecture&#x60; - Architecture (descending) * &#x60;section&#x60; - Section * &#x60;-section&#x60; - Section (descending) * &#x60;priority&#x60; - Priority * &#x60;-priority&#x60; - Priority (descending) * &#x60;origin&#x60; - Origin * &#x60;-origin&#x60; - Origin (descending) * &#x60;tag&#x60; - Tag * &#x60;-tag&#x60; - Tag (descending) * &#x60;bugs&#x60; - Bugs * &#x60;-bugs&#x60; - Bugs (descending) * &#x60;essential&#x60; - Essential * &#x60;-essential&#x60; - Essential (descending) * &#x60;build_essential&#x60; - Build essential * &#x60;-build_essential&#x60; - Build essential (descending) * &#x60;installed_size&#x60; - Installed size * &#x60;-installed_size&#x60; - Installed size (descending) * &#x60;maintainer&#x60; - Maintainer * &#x60;-maintainer&#x60; - Maintainer (descending) * &#x60;original_maintainer&#x60; - Original maintainer * &#x60;-original_maintainer&#x60; - Original maintainer (descending) * &#x60;description&#x60; - Description * &#x60;-description&#x60; - Description (descending) * &#x60;description_md5&#x60; - Description md5 * &#x60;-description_md5&#x60; - Description md5 (descending) * &#x60;homepage&#x60; - Homepage * &#x60;-homepage&#x60; - Homepage (descending) * &#x60;built_using&#x60; - Built using * &#x60;-built_using&#x60; - Built using (descending) * &#x60;auto_built_package&#x60; - Auto built package * &#x60;-auto_built_package&#x60; - Auto built package (descending) * &#x60;multi_arch&#x60; - Multi arch * &#x60;-multi_arch&#x60; - Multi arch (descending) * &#x60;breaks&#x60; - Breaks * &#x60;-breaks&#x60; - Breaks (descending) * &#x60;conflicts&#x60; - Conflicts * &#x60;-conflicts&#x60; - Conflicts (descending) * &#x60;depends&#x60; - Depends * &#x60;-depends&#x60; - Depends (descending) * &#x60;recommends&#x60; - Recommends * &#x60;-recommends&#x60; - Recommends (descending) * &#x60;suggests&#x60; - Suggests * &#x60;-suggests&#x60; - Suggests (descending) * &#x60;enhances&#x60; - Enhances * &#x60;-enhances&#x60; - Enhances (descending) * &#x60;pre_depends&#x60; - Pre depends * &#x60;-pre_depends&#x60; - Pre depends (descending) * &#x60;provides&#x60; - Provides * &#x60;-provides&#x60; - Provides (descending) * &#x60;replaces&#x60; - Replaces * &#x60;-replaces&#x60; - Replaces (descending) * &#x60;relative_path&#x60; - Relative path * &#x60;-relative_path&#x60; - Relative path (descending) * &#x60;sha256&#x60; - Sha256 * &#x60;-sha256&#x60; - Sha256 (descending) * &#x60;custom_fields&#x60; - Custom fields * &#x60;-custom_fields&#x60; - Custom fields (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
113
113
  # @option opts [String] :origin Filter results where origin matches value
114
114
  # @option opts [String] :original_maintainer Filter results where original_maintainer matches value
115
115
  # @option opts [String] :package Filter results where package matches value
116
116
  # @option opts [String] :priority Filter results where priority matches value
117
+ # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
118
+ # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
117
119
  # @option opts [String] :relative_path Filter results where relative_path matches value
118
120
  # @option opts [String] :repository_version Repository Version referenced by HREF
119
121
  # @option opts [String] :repository_version_added Repository Version referenced by HREF
@@ -136,19 +138,21 @@ module PulpDebClient
136
138
  # @param [Hash] opts the optional parameters
137
139
  # @option opts [String] :architecture Filter results where architecture matches value
138
140
  # @option opts [String] :auto_built_package Filter results where auto_built_package matches value
139
- # @option opts [Boolean] :build_essential Filter results where build_essential matches value
141
+ # @option opts [Boolean] :build_essential Filter results where build_essential matches value * &#x60;True&#x60; - yes * &#x60;False&#x60; - no
140
142
  # @option opts [String] :built_using Filter results where built_using matches value
141
- # @option opts [Boolean] :essential Filter results where essential matches value
143
+ # @option opts [Boolean] :essential Filter results where essential matches value * &#x60;True&#x60; - yes * &#x60;False&#x60; - no
142
144
  # @option opts [Integer] :installed_size Filter results where installed_size matches value
143
145
  # @option opts [Integer] :limit Number of results to return per page.
144
146
  # @option opts [String] :maintainer Filter results where maintainer matches value
145
- # @option opts [String] :multi_arch Filter results where multi_arch matches value
147
+ # @option opts [String] :multi_arch Filter results where multi_arch matches value * &#x60;no&#x60; - no * &#x60;same&#x60; - same * &#x60;foreign&#x60; - foreign * &#x60;allowed&#x60; - allowed
146
148
  # @option opts [Integer] :offset The initial index from which to return the results.
147
- # @option opts [Array<String>] :ordering Ordering
149
+ # @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;upstream_id&#x60; - Upstream id * &#x60;-upstream_id&#x60; - Upstream id (descending) * &#x60;timestamp_of_interest&#x60; - Timestamp of interest * &#x60;-timestamp_of_interest&#x60; - Timestamp of interest (descending) * &#x60;package&#x60; - Package * &#x60;-package&#x60; - Package (descending) * &#x60;source&#x60; - Source * &#x60;-source&#x60; - Source (descending) * &#x60;version&#x60; - Version * &#x60;-version&#x60; - Version (descending) * &#x60;architecture&#x60; - Architecture * &#x60;-architecture&#x60; - Architecture (descending) * &#x60;section&#x60; - Section * &#x60;-section&#x60; - Section (descending) * &#x60;priority&#x60; - Priority * &#x60;-priority&#x60; - Priority (descending) * &#x60;origin&#x60; - Origin * &#x60;-origin&#x60; - Origin (descending) * &#x60;tag&#x60; - Tag * &#x60;-tag&#x60; - Tag (descending) * &#x60;bugs&#x60; - Bugs * &#x60;-bugs&#x60; - Bugs (descending) * &#x60;essential&#x60; - Essential * &#x60;-essential&#x60; - Essential (descending) * &#x60;build_essential&#x60; - Build essential * &#x60;-build_essential&#x60; - Build essential (descending) * &#x60;installed_size&#x60; - Installed size * &#x60;-installed_size&#x60; - Installed size (descending) * &#x60;maintainer&#x60; - Maintainer * &#x60;-maintainer&#x60; - Maintainer (descending) * &#x60;original_maintainer&#x60; - Original maintainer * &#x60;-original_maintainer&#x60; - Original maintainer (descending) * &#x60;description&#x60; - Description * &#x60;-description&#x60; - Description (descending) * &#x60;description_md5&#x60; - Description md5 * &#x60;-description_md5&#x60; - Description md5 (descending) * &#x60;homepage&#x60; - Homepage * &#x60;-homepage&#x60; - Homepage (descending) * &#x60;built_using&#x60; - Built using * &#x60;-built_using&#x60; - Built using (descending) * &#x60;auto_built_package&#x60; - Auto built package * &#x60;-auto_built_package&#x60; - Auto built package (descending) * &#x60;multi_arch&#x60; - Multi arch * &#x60;-multi_arch&#x60; - Multi arch (descending) * &#x60;breaks&#x60; - Breaks * &#x60;-breaks&#x60; - Breaks (descending) * &#x60;conflicts&#x60; - Conflicts * &#x60;-conflicts&#x60; - Conflicts (descending) * &#x60;depends&#x60; - Depends * &#x60;-depends&#x60; - Depends (descending) * &#x60;recommends&#x60; - Recommends * &#x60;-recommends&#x60; - Recommends (descending) * &#x60;suggests&#x60; - Suggests * &#x60;-suggests&#x60; - Suggests (descending) * &#x60;enhances&#x60; - Enhances * &#x60;-enhances&#x60; - Enhances (descending) * &#x60;pre_depends&#x60; - Pre depends * &#x60;-pre_depends&#x60; - Pre depends (descending) * &#x60;provides&#x60; - Provides * &#x60;-provides&#x60; - Provides (descending) * &#x60;replaces&#x60; - Replaces * &#x60;-replaces&#x60; - Replaces (descending) * &#x60;relative_path&#x60; - Relative path * &#x60;-relative_path&#x60; - Relative path (descending) * &#x60;sha256&#x60; - Sha256 * &#x60;-sha256&#x60; - Sha256 (descending) * &#x60;custom_fields&#x60; - Custom fields * &#x60;-custom_fields&#x60; - Custom fields (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
148
150
  # @option opts [String] :origin Filter results where origin matches value
149
151
  # @option opts [String] :original_maintainer Filter results where original_maintainer matches value
150
152
  # @option opts [String] :package Filter results where package matches value
151
153
  # @option opts [String] :priority Filter results where priority matches value
154
+ # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
155
+ # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
152
156
  # @option opts [String] :relative_path Filter results where relative_path matches value
153
157
  # @option opts [String] :repository_version Repository Version referenced by HREF
154
158
  # @option opts [String] :repository_version_added Repository Version referenced by HREF
@@ -201,6 +205,8 @@ module PulpDebClient
201
205
  query_params[:'original_maintainer'] = opts[:'original_maintainer'] if !opts[:'original_maintainer'].nil?
202
206
  query_params[:'package'] = opts[:'package'] if !opts[:'package'].nil?
203
207
  query_params[:'priority'] = opts[:'priority'] if !opts[:'priority'].nil?
208
+ query_params[:'pulp_href__in'] = @api_client.build_collection_param(opts[:'pulp_href__in'], :csv) if !opts[:'pulp_href__in'].nil?
209
+ query_params[:'pulp_id__in'] = @api_client.build_collection_param(opts[:'pulp_id__in'], :csv) if !opts[:'pulp_id__in'].nil?
204
210
  query_params[:'relative_path'] = opts[:'relative_path'] if !opts[:'relative_path'].nil?
205
211
  query_params[:'repository_version'] = opts[:'repository_version'] if !opts[:'repository_version'].nil?
206
212
  query_params[:'repository_version_added'] = opts[:'repository_version_added'] if !opts[:'repository_version_added'].nil?
@@ -89,7 +89,9 @@ module PulpDebClient
89
89
  # @option opts [String] :architecture Filter results where architecture matches value
90
90
  # @option opts [Integer] :limit Number of results to return per page.
91
91
  # @option opts [Integer] :offset The initial index from which to return the results.
92
- # @option opts [Array<String>] :ordering Ordering
92
+ # @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;upstream_id&#x60; - Upstream id * &#x60;-upstream_id&#x60; - Upstream id (descending) * &#x60;timestamp_of_interest&#x60; - Timestamp of interest * &#x60;-timestamp_of_interest&#x60; - Timestamp of interest (descending) * &#x60;architecture&#x60; - Architecture * &#x60;-architecture&#x60; - Architecture (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
93
+ # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
94
+ # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
93
95
  # @option opts [String] :release Filter results where release matches value
94
96
  # @option opts [String] :repository_version Repository Version referenced by HREF
95
97
  # @option opts [String] :repository_version_added Repository Version referenced by HREF
@@ -108,7 +110,9 @@ module PulpDebClient
108
110
  # @option opts [String] :architecture Filter results where architecture matches value
109
111
  # @option opts [Integer] :limit Number of results to return per page.
110
112
  # @option opts [Integer] :offset The initial index from which to return the results.
111
- # @option opts [Array<String>] :ordering Ordering
113
+ # @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;upstream_id&#x60; - Upstream id * &#x60;-upstream_id&#x60; - Upstream id (descending) * &#x60;timestamp_of_interest&#x60; - Timestamp of interest * &#x60;-timestamp_of_interest&#x60; - Timestamp of interest (descending) * &#x60;architecture&#x60; - Architecture * &#x60;-architecture&#x60; - Architecture (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
114
+ # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
115
+ # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
112
116
  # @option opts [String] :release Filter results where release matches value
113
117
  # @option opts [String] :repository_version Repository Version referenced by HREF
114
118
  # @option opts [String] :repository_version_added Repository Version referenced by HREF
@@ -133,6 +137,8 @@ module PulpDebClient
133
137
  query_params[:'limit'] = opts[:'limit'] if !opts[:'limit'].nil?
134
138
  query_params[:'offset'] = opts[:'offset'] if !opts[:'offset'].nil?
135
139
  query_params[:'ordering'] = @api_client.build_collection_param(opts[:'ordering'], :csv) if !opts[:'ordering'].nil?
140
+ query_params[:'pulp_href__in'] = @api_client.build_collection_param(opts[:'pulp_href__in'], :csv) if !opts[:'pulp_href__in'].nil?
141
+ query_params[:'pulp_id__in'] = @api_client.build_collection_param(opts[:'pulp_id__in'], :csv) if !opts[:'pulp_id__in'].nil?
136
142
  query_params[:'release'] = opts[:'release'] if !opts[:'release'].nil?
137
143
  query_params[:'repository_version'] = opts[:'repository_version'] if !opts[:'repository_version'].nil?
138
144
  query_params[:'repository_version_added'] = opts[:'repository_version_added'] if !opts[:'repository_version_added'].nil?
@@ -89,7 +89,9 @@ module PulpDebClient
89
89
  # @option opts [String] :component Filter results where component matches value
90
90
  # @option opts [Integer] :limit Number of results to return per page.
91
91
  # @option opts [Integer] :offset The initial index from which to return the results.
92
- # @option opts [Array<String>] :ordering Ordering
92
+ # @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;upstream_id&#x60; - Upstream id * &#x60;-upstream_id&#x60; - Upstream id (descending) * &#x60;timestamp_of_interest&#x60; - Timestamp of interest * &#x60;-timestamp_of_interest&#x60; - Timestamp of interest (descending) * &#x60;component&#x60; - Component * &#x60;-component&#x60; - Component (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
93
+ # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
94
+ # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
93
95
  # @option opts [String] :release Filter results where release matches value
94
96
  # @option opts [String] :repository_version Repository Version referenced by HREF
95
97
  # @option opts [String] :repository_version_added Repository Version referenced by HREF
@@ -108,7 +110,9 @@ module PulpDebClient
108
110
  # @option opts [String] :component Filter results where component matches value
109
111
  # @option opts [Integer] :limit Number of results to return per page.
110
112
  # @option opts [Integer] :offset The initial index from which to return the results.
111
- # @option opts [Array<String>] :ordering Ordering
113
+ # @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;upstream_id&#x60; - Upstream id * &#x60;-upstream_id&#x60; - Upstream id (descending) * &#x60;timestamp_of_interest&#x60; - Timestamp of interest * &#x60;-timestamp_of_interest&#x60; - Timestamp of interest (descending) * &#x60;component&#x60; - Component * &#x60;-component&#x60; - Component (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
114
+ # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
115
+ # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
112
116
  # @option opts [String] :release Filter results where release matches value
113
117
  # @option opts [String] :repository_version Repository Version referenced by HREF
114
118
  # @option opts [String] :repository_version_added Repository Version referenced by HREF
@@ -133,6 +137,8 @@ module PulpDebClient
133
137
  query_params[:'limit'] = opts[:'limit'] if !opts[:'limit'].nil?
134
138
  query_params[:'offset'] = opts[:'offset'] if !opts[:'offset'].nil?
135
139
  query_params[:'ordering'] = @api_client.build_collection_param(opts[:'ordering'], :csv) if !opts[:'ordering'].nil?
140
+ query_params[:'pulp_href__in'] = @api_client.build_collection_param(opts[:'pulp_href__in'], :csv) if !opts[:'pulp_href__in'].nil?
141
+ query_params[:'pulp_id__in'] = @api_client.build_collection_param(opts[:'pulp_id__in'], :csv) if !opts[:'pulp_id__in'].nil?
136
142
  query_params[:'release'] = opts[:'release'] if !opts[:'release'].nil?
137
143
  query_params[:'repository_version'] = opts[:'repository_version'] if !opts[:'repository_version'].nil?
138
144
  query_params[:'repository_version_added'] = opts[:'repository_version_added'] if !opts[:'repository_version_added'].nil?
@@ -89,7 +89,9 @@ module PulpDebClient
89
89
  # @option opts [String] :codename Filter results where codename matches value
90
90
  # @option opts [Integer] :limit Number of results to return per page.
91
91
  # @option opts [Integer] :offset The initial index from which to return the results.
92
- # @option opts [Array<String>] :ordering Ordering
92
+ # @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;upstream_id&#x60; - Upstream id * &#x60;-upstream_id&#x60; - Upstream id (descending) * &#x60;timestamp_of_interest&#x60; - Timestamp of interest * &#x60;-timestamp_of_interest&#x60; - Timestamp of interest (descending) * &#x60;codename&#x60; - Codename * &#x60;-codename&#x60; - Codename (descending) * &#x60;suite&#x60; - Suite * &#x60;-suite&#x60; - Suite (descending) * &#x60;distribution&#x60; - Distribution * &#x60;-distribution&#x60; - Distribution (descending) * &#x60;components&#x60; - Components * &#x60;-components&#x60; - Components (descending) * &#x60;architectures&#x60; - Architectures * &#x60;-architectures&#x60; - Architectures (descending) * &#x60;relative_path&#x60; - Relative path * &#x60;-relative_path&#x60; - Relative path (descending) * &#x60;sha256&#x60; - Sha256 * &#x60;-sha256&#x60; - Sha256 (descending) * &#x60;artifact_set_sha256&#x60; - Artifact set sha256 * &#x60;-artifact_set_sha256&#x60; - Artifact set sha256 (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
93
+ # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
94
+ # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
93
95
  # @option opts [String] :relative_path Filter results where relative_path matches value
94
96
  # @option opts [String] :repository_version Repository Version referenced by HREF
95
97
  # @option opts [String] :repository_version_added Repository Version referenced by HREF
@@ -110,7 +112,9 @@ module PulpDebClient
110
112
  # @option opts [String] :codename Filter results where codename matches value
111
113
  # @option opts [Integer] :limit Number of results to return per page.
112
114
  # @option opts [Integer] :offset The initial index from which to return the results.
113
- # @option opts [Array<String>] :ordering Ordering
115
+ # @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;upstream_id&#x60; - Upstream id * &#x60;-upstream_id&#x60; - Upstream id (descending) * &#x60;timestamp_of_interest&#x60; - Timestamp of interest * &#x60;-timestamp_of_interest&#x60; - Timestamp of interest (descending) * &#x60;codename&#x60; - Codename * &#x60;-codename&#x60; - Codename (descending) * &#x60;suite&#x60; - Suite * &#x60;-suite&#x60; - Suite (descending) * &#x60;distribution&#x60; - Distribution * &#x60;-distribution&#x60; - Distribution (descending) * &#x60;components&#x60; - Components * &#x60;-components&#x60; - Components (descending) * &#x60;architectures&#x60; - Architectures * &#x60;-architectures&#x60; - Architectures (descending) * &#x60;relative_path&#x60; - Relative path * &#x60;-relative_path&#x60; - Relative path (descending) * &#x60;sha256&#x60; - Sha256 * &#x60;-sha256&#x60; - Sha256 (descending) * &#x60;artifact_set_sha256&#x60; - Artifact set sha256 * &#x60;-artifact_set_sha256&#x60; - Artifact set sha256 (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
116
+ # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
117
+ # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
114
118
  # @option opts [String] :relative_path Filter results where relative_path matches value
115
119
  # @option opts [String] :repository_version Repository Version referenced by HREF
116
120
  # @option opts [String] :repository_version_added Repository Version referenced by HREF
@@ -137,6 +141,8 @@ module PulpDebClient
137
141
  query_params[:'limit'] = opts[:'limit'] if !opts[:'limit'].nil?
138
142
  query_params[:'offset'] = opts[:'offset'] if !opts[:'offset'].nil?
139
143
  query_params[:'ordering'] = @api_client.build_collection_param(opts[:'ordering'], :csv) if !opts[:'ordering'].nil?
144
+ query_params[:'pulp_href__in'] = @api_client.build_collection_param(opts[:'pulp_href__in'], :csv) if !opts[:'pulp_href__in'].nil?
145
+ query_params[:'pulp_id__in'] = @api_client.build_collection_param(opts[:'pulp_id__in'], :csv) if !opts[:'pulp_id__in'].nil?
140
146
  query_params[:'relative_path'] = opts[:'relative_path'] if !opts[:'relative_path'].nil?
141
147
  query_params[:'repository_version'] = opts[:'repository_version'] if !opts[:'repository_version'].nil?
142
148
  query_params[:'repository_version_added'] = opts[:'repository_version_added'] if !opts[:'repository_version_added'].nil?
@@ -90,7 +90,9 @@ module PulpDebClient
90
90
  # @option opts [String] :distribution Filter results where distribution matches value
91
91
  # @option opts [Integer] :limit Number of results to return per page.
92
92
  # @option opts [Integer] :offset The initial index from which to return the results.
93
- # @option opts [Array<String>] :ordering Ordering
93
+ # @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;upstream_id&#x60; - Upstream id * &#x60;-upstream_id&#x60; - Upstream id (descending) * &#x60;timestamp_of_interest&#x60; - Timestamp of interest * &#x60;-timestamp_of_interest&#x60; - Timestamp of interest (descending) * &#x60;codename&#x60; - Codename * &#x60;-codename&#x60; - Codename (descending) * &#x60;suite&#x60; - Suite * &#x60;-suite&#x60; - Suite (descending) * &#x60;distribution&#x60; - Distribution * &#x60;-distribution&#x60; - Distribution (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
94
+ # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
95
+ # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
94
96
  # @option opts [String] :repository_version Repository Version referenced by HREF
95
97
  # @option opts [String] :repository_version_added Repository Version referenced by HREF
96
98
  # @option opts [String] :repository_version_removed Repository Version referenced by HREF
@@ -110,7 +112,9 @@ module PulpDebClient
110
112
  # @option opts [String] :distribution Filter results where distribution matches value
111
113
  # @option opts [Integer] :limit Number of results to return per page.
112
114
  # @option opts [Integer] :offset The initial index from which to return the results.
113
- # @option opts [Array<String>] :ordering Ordering
115
+ # @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;upstream_id&#x60; - Upstream id * &#x60;-upstream_id&#x60; - Upstream id (descending) * &#x60;timestamp_of_interest&#x60; - Timestamp of interest * &#x60;-timestamp_of_interest&#x60; - Timestamp of interest (descending) * &#x60;codename&#x60; - Codename * &#x60;-codename&#x60; - Codename (descending) * &#x60;suite&#x60; - Suite * &#x60;-suite&#x60; - Suite (descending) * &#x60;distribution&#x60; - Distribution * &#x60;-distribution&#x60; - Distribution (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
116
+ # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
117
+ # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
114
118
  # @option opts [String] :repository_version Repository Version referenced by HREF
115
119
  # @option opts [String] :repository_version_added Repository Version referenced by HREF
116
120
  # @option opts [String] :repository_version_removed Repository Version referenced by HREF
@@ -136,6 +140,8 @@ module PulpDebClient
136
140
  query_params[:'limit'] = opts[:'limit'] if !opts[:'limit'].nil?
137
141
  query_params[:'offset'] = opts[:'offset'] if !opts[:'offset'].nil?
138
142
  query_params[:'ordering'] = @api_client.build_collection_param(opts[:'ordering'], :csv) if !opts[:'ordering'].nil?
143
+ query_params[:'pulp_href__in'] = @api_client.build_collection_param(opts[:'pulp_href__in'], :csv) if !opts[:'pulp_href__in'].nil?
144
+ query_params[:'pulp_id__in'] = @api_client.build_collection_param(opts[:'pulp_id__in'], :csv) if !opts[:'pulp_id__in'].nil?
139
145
  query_params[:'repository_version'] = opts[:'repository_version'] if !opts[:'repository_version'].nil?
140
146
  query_params[:'repository_version_added'] = opts[:'repository_version_added'] if !opts[:'repository_version_added'].nil?
141
147
  query_params[:'repository_version_removed'] = opts[:'repository_version_removed'] if !opts[:'repository_version_removed'].nil?
@@ -159,7 +159,9 @@ module PulpDebClient
159
159
  # @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
160
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
- # @option opts [Array<String>] :ordering Ordering
162
+ # @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;pulp_labels&#x60; - Pulp labels * &#x60;-pulp_labels&#x60; - Pulp labels (descending) * &#x60;base_path&#x60; - Base path * &#x60;-base_path&#x60; - Base path (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
163
+ # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
164
+ # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
163
165
  # @option opts [String] :pulp_label_select Filter labels by search string
164
166
  # @option opts [String] :repository Filter results where repository matches value
165
167
  # @option opts [Array<String>] :repository__in Filter results where repository is in a comma-separated list of values
@@ -186,7 +188,9 @@ module PulpDebClient
186
188
  # @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
187
189
  # @option opts [String] :name__startswith Filter results where name starts with value
188
190
  # @option opts [Integer] :offset The initial index from which to return the results.
189
- # @option opts [Array<String>] :ordering Ordering
191
+ # @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;pulp_labels&#x60; - Pulp labels * &#x60;-pulp_labels&#x60; - Pulp labels (descending) * &#x60;base_path&#x60; - Base path * &#x60;-base_path&#x60; - Base path (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
192
+ # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
193
+ # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
190
194
  # @option opts [String] :pulp_label_select Filter labels by search string
191
195
  # @option opts [String] :repository Filter results where repository matches value
192
196
  # @option opts [Array<String>] :repository__in Filter results where repository is in a comma-separated list of values
@@ -219,6 +223,8 @@ module PulpDebClient
219
223
  query_params[:'name__startswith'] = opts[:'name__startswith'] if !opts[:'name__startswith'].nil?
220
224
  query_params[:'offset'] = opts[:'offset'] if !opts[:'offset'].nil?
221
225
  query_params[:'ordering'] = @api_client.build_collection_param(opts[:'ordering'], :csv) if !opts[:'ordering'].nil?
226
+ query_params[:'pulp_href__in'] = @api_client.build_collection_param(opts[:'pulp_href__in'], :csv) if !opts[:'pulp_href__in'].nil?
227
+ query_params[:'pulp_id__in'] = @api_client.build_collection_param(opts[:'pulp_id__in'], :csv) if !opts[:'pulp_id__in'].nil?
222
228
  query_params[:'pulp_label_select'] = opts[:'pulp_label_select'] if !opts[:'pulp_label_select'].nil?
223
229
  query_params[:'repository'] = opts[:'repository'] if !opts[:'repository'].nil?
224
230
  query_params[:'repository__in'] = @api_client.build_collection_param(opts[:'repository__in'], :csv) if !opts[:'repository__in'].nil?