pulp_maven_client 0.8.1 → 0.8.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (37) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +5 -5
  3. data/docs/ContentArtifactApi.md +11 -9
  4. data/docs/DistributionsMavenApi.md +5 -3
  5. data/docs/MavenMavenArtifactResponse.md +2 -0
  6. data/docs/MavenMavenDistributionResponse.md +4 -0
  7. data/docs/MavenMavenRemoteResponse.md +2 -0
  8. data/docs/MavenMavenRepositoryResponse.md +2 -0
  9. data/docs/PulpMavenApi.md +1 -1
  10. data/docs/RemotesMavenApi.md +5 -3
  11. data/docs/RepositoriesMavenApi.md +9 -7
  12. data/docs/RepositoriesMavenVersionsApi.md +9 -7
  13. data/docs/RepositoryVersionResponse.md +2 -0
  14. data/lib/pulp_maven_client/api/content_artifact_api.rb +11 -8
  15. data/lib/pulp_maven_client/api/distributions_maven_api.rb +5 -2
  16. data/lib/pulp_maven_client/api/remotes_maven_api.rb +5 -2
  17. data/lib/pulp_maven_client/api/repositories_maven_api.rb +9 -6
  18. data/lib/pulp_maven_client/api/repositories_maven_versions_api.rb +10 -7
  19. data/lib/pulp_maven_client/configuration.rb +2 -2
  20. data/lib/pulp_maven_client/models/maven_maven_artifact_response.rb +11 -1
  21. data/lib/pulp_maven_client/models/maven_maven_distribution_response.rb +21 -1
  22. data/lib/pulp_maven_client/models/maven_maven_remote_response.rb +11 -1
  23. data/lib/pulp_maven_client/models/maven_maven_repository_response.rb +11 -1
  24. data/lib/pulp_maven_client/models/repository_version_response.rb +12 -2
  25. data/lib/pulp_maven_client/version.rb +1 -1
  26. data/spec/api/content_artifact_api_spec.rb +5 -4
  27. data/spec/api/distributions_maven_api_spec.rb +2 -1
  28. data/spec/api/remotes_maven_api_spec.rb +2 -1
  29. data/spec/api/repositories_maven_api_spec.rb +4 -3
  30. data/spec/api/repositories_maven_versions_api_spec.rb +4 -3
  31. data/spec/configuration_spec.rb +3 -3
  32. data/spec/models/maven_maven_artifact_response_spec.rb +6 -0
  33. data/spec/models/maven_maven_distribution_response_spec.rb +12 -0
  34. data/spec/models/maven_maven_remote_response_spec.rb +6 -0
  35. data/spec/models/maven_maven_repository_response_spec.rb +6 -0
  36. data/spec/models/repository_version_response_spec.rb +6 -0
  37. metadata +38 -38
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 37207515145fe9cae4d6b938af17d5318ee80f8fe02b0b6da85e3c8b65984b7a
4
- data.tar.gz: 1c8fdc6ee34600a49b46c1fb375c849c1967097b3e0b7e3c9901c2ea62579341
3
+ metadata.gz: 604d6fd817882ade48f9e4f87efa856eb5b97a49db6d6d4fc862641a754a79f6
4
+ data.tar.gz: 4ec2a31623f718762910ec9b2bf0182085fcc02641395858e4c51881ab5d7e07
5
5
  SHA512:
6
- metadata.gz: e965909476296c32264b54ba47a79b43e5d83de17d0ac9b729f62f416424a8dc5454eff0a6350c6abd63e989e3badcc05979bd43e901f36ba24ab79d6fcc68eb
7
- data.tar.gz: 7b7a809cf81711843f0889441f0916b2e9d583258c755f35f2527b66eb4326cbc9072cf404412bdefc63d7bd71af6881dfba07be225be5ba83c31877d6a19912
6
+ metadata.gz: 8b7dc80a057a3c50061c751566ea32fffb14fd31591aaf1329530ebe34d06c116c945bd177c8e0f9fb76aa6ccd48b63d5d9bf7be6b18abfdc82d798867a387db
7
+ data.tar.gz: 7001d4ac7c26991c7da22182174cde87e1c073dac2c88c8fbfc468d027be572bfc8ed4975bd1c609739fcd553b54f7b7b3ad0667d6e38e7064e3d307a4c002e7
data/README.md CHANGED
@@ -7,7 +7,7 @@ Fetch, Upload, Organize, and Distribute Software Packages
7
7
  This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
8
8
 
9
9
  - API version: v3
10
- - Package version: 0.8.1
10
+ - Package version: 0.8.2
11
11
  - Build package: org.openapitools.codegen.languages.RubyClientCodegen
12
12
  For more information, please visit [https://pulpproject.org](https://pulpproject.org)
13
13
 
@@ -24,16 +24,16 @@ gem build pulp_maven_client.gemspec
24
24
  Then either install the gem locally:
25
25
 
26
26
  ```shell
27
- gem install ./pulp_maven_client-0.8.1.gem
27
+ gem install ./pulp_maven_client-0.8.2.gem
28
28
  ```
29
29
 
30
- (for development, run `gem install --dev ./pulp_maven_client-0.8.1.gem` to install the development dependencies)
30
+ (for development, run `gem install --dev ./pulp_maven_client-0.8.2.gem` to install the development dependencies)
31
31
 
32
32
  or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
33
33
 
34
34
  Finally add this to the Gemfile:
35
35
 
36
- gem 'pulp_maven_client', '~> 0.8.1'
36
+ gem 'pulp_maven_client', '~> 0.8.2'
37
37
 
38
38
  ### Install from Git
39
39
 
@@ -79,7 +79,7 @@ end
79
79
 
80
80
  ## Documentation for API Endpoints
81
81
 
82
- All URIs are relative to *http://pulp*
82
+ All URIs are relative to *http://localhost:24817*
83
83
 
84
84
  Class | Method | HTTP request | Description
85
85
  ------------ | ------------- | ------------- | -------------
@@ -1,6 +1,6 @@
1
1
  # PulpMavenClient::ContentArtifactApi
2
2
 
3
- All URIs are relative to *http://pulp*
3
+ All URIs are relative to *http://localhost:24817*
4
4
 
5
5
  Method | HTTP request | Description
6
6
  ------------- | ------------- | -------------
@@ -92,12 +92,13 @@ opts = {
92
92
  offset: 56, # Integer | The initial index from which to return the results.
93
93
  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) * `upstream_id` - Upstream id * `-upstream_id` - Upstream id (descending) * `timestamp_of_interest` - Timestamp of interest * `-timestamp_of_interest` - Timestamp of interest (descending) * `group_id` - Group id * `-group_id` - Group id (descending) * `artifact_id` - Artifact id * `-artifact_id` - Artifact id (descending) * `version` - Version * `-version` - Version (descending) * `filename` - Filename * `-filename` - Filename (descending) * `pk` - Pk * `-pk` - Pk (descending)
94
94
  orphaned_for: 3.4, # Float | Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.
95
+ prn__in: ['prn__in_example'], # Array<String> | Multiple values may be separated by commas.
95
96
  pulp_href__in: ['pulp_href__in_example'], # Array<String> | Multiple values may be separated by commas.
96
97
  pulp_id__in: ['pulp_id__in_example'], # Array<String> | Multiple values may be separated by commas.
97
- q: 'q_example', # String |
98
- repository_version: 'repository_version_example', # String | Repository Version referenced by HREF
99
- repository_version_added: 'repository_version_added_example', # String | Repository Version referenced by HREF
100
- repository_version_removed: 'repository_version_removed_example', # String | Repository Version referenced by HREF
98
+ q: 'q_example', # String | Filter results by using NOT, AND and OR operations on other filters
99
+ repository_version: 'repository_version_example', # String | Repository Version referenced by HREF/PRN
100
+ repository_version_added: 'repository_version_added_example', # String | Repository Version referenced by HREF/PRN
101
+ repository_version_removed: 'repository_version_removed_example', # String | Repository Version referenced by HREF/PRN
101
102
  version: 'version_example', # String | Filter results where version matches value
102
103
  fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
103
104
  exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
@@ -124,12 +125,13 @@ Name | Type | Description | Notes
124
125
  **offset** | **Integer**| The initial index from which to return the results. | [optional]
125
126
  **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;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;group_id&#x60; - Group id * &#x60;-group_id&#x60; - Group id (descending) * &#x60;artifact_id&#x60; - Artifact id * &#x60;-artifact_id&#x60; - Artifact id (descending) * &#x60;version&#x60; - Version * &#x60;-version&#x60; - Version (descending) * &#x60;filename&#x60; - Filename * &#x60;-filename&#x60; - Filename (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending) | [optional]
126
127
  **orphaned_for** | **Float**| Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME. | [optional]
128
+ **prn__in** | [**Array&lt;String&gt;**](String.md)| Multiple values may be separated by commas. | [optional]
127
129
  **pulp_href__in** | [**Array&lt;String&gt;**](String.md)| Multiple values may be separated by commas. | [optional]
128
130
  **pulp_id__in** | [**Array&lt;String&gt;**](String.md)| Multiple values may be separated by commas. | [optional]
129
- **q** | **String**| | [optional]
130
- **repository_version** | **String**| Repository Version referenced by HREF | [optional]
131
- **repository_version_added** | **String**| Repository Version referenced by HREF | [optional]
132
- **repository_version_removed** | **String**| Repository Version referenced by HREF | [optional]
131
+ **q** | **String**| Filter results by using NOT, AND and OR operations on other filters | [optional]
132
+ **repository_version** | **String**| Repository Version referenced by HREF/PRN | [optional]
133
+ **repository_version_added** | **String**| Repository Version referenced by HREF/PRN | [optional]
134
+ **repository_version_removed** | **String**| Repository Version referenced by HREF/PRN | [optional]
133
135
  **version** | **String**| Filter results where version matches value | [optional]
134
136
  **fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to include in the response. | [optional]
135
137
  **exclude_fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to exclude from the response. | [optional]
@@ -1,6 +1,6 @@
1
1
  # PulpMavenClient::DistributionsMavenApi
2
2
 
3
- All URIs are relative to *http://pulp*
3
+ All URIs are relative to *http://localhost:24817*
4
4
 
5
5
  Method | HTTP request | Description
6
6
  ------------- | ------------- | -------------
@@ -159,10 +159,11 @@ opts = {
159
159
  name__startswith: 'name__startswith_example', # String | Filter results where name starts with value
160
160
  offset: 56, # Integer | The initial index from which to return the results.
161
161
  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) * `base_path` - Base path * `-base_path` - Base path (descending) * `hidden` - Hidden * `-hidden` - Hidden (descending) * `pk` - Pk * `-pk` - Pk (descending)
162
+ prn__in: ['prn__in_example'], # Array<String> | Multiple values may be separated by commas.
162
163
  pulp_href__in: ['pulp_href__in_example'], # Array<String> | Multiple values may be separated by commas.
163
164
  pulp_id__in: ['pulp_id__in_example'], # Array<String> | Multiple values may be separated by commas.
164
165
  pulp_label_select: 'pulp_label_select_example', # String | Filter labels by search string
165
- q: 'q_example', # String |
166
+ q: 'q_example', # String | Filter results by using NOT, AND and OR operations on other filters
166
167
  repository: 'repository_example', # String | Filter results where repository matches value
167
168
  repository__in: ['repository__in_example'], # Array<String> | Filter results where repository is in a comma-separated list of values
168
169
  with_content: 'with_content_example', # String | Filter distributions based on the content served by them
@@ -200,10 +201,11 @@ Name | Type | Description | Notes
200
201
  **name__startswith** | **String**| Filter results where name starts with value | [optional]
201
202
  **offset** | **Integer**| The initial index from which to return the results. | [optional]
202
203
  **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;base_path&#x60; - Base path * &#x60;-base_path&#x60; - Base path (descending) * &#x60;hidden&#x60; - Hidden * &#x60;-hidden&#x60; - Hidden (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending) | [optional]
204
+ **prn__in** | [**Array&lt;String&gt;**](String.md)| Multiple values may be separated by commas. | [optional]
203
205
  **pulp_href__in** | [**Array&lt;String&gt;**](String.md)| Multiple values may be separated by commas. | [optional]
204
206
  **pulp_id__in** | [**Array&lt;String&gt;**](String.md)| Multiple values may be separated by commas. | [optional]
205
207
  **pulp_label_select** | **String**| Filter labels by search string | [optional]
206
- **q** | **String**| | [optional]
208
+ **q** | **String**| Filter results by using NOT, AND and OR operations on other filters | [optional]
207
209
  **repository** | [**String**](.md)| Filter results where repository matches value | [optional]
208
210
  **repository__in** | [**Array&lt;String&gt;**](String.md)| Filter results where repository is in a comma-separated list of values | [optional]
209
211
  **with_content** | **String**| Filter distributions based on the content served by them | [optional]
@@ -5,6 +5,7 @@
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
7
  **pulp_href** | **String** | | [optional] [readonly]
8
+ **prn** | **String** | The Pulp Resource Name (PRN). | [optional] [readonly]
8
9
  **pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
9
10
  **pulp_last_updated** | **DateTime** | Timestamp of the last time this resource was updated. Note: for immutable resources - like content, repository versions, and publication - pulp_created and pulp_last_updated dates will be the same. | [optional] [readonly]
10
11
  **artifact** | **String** | Artifact file representing the physical content |
@@ -19,6 +20,7 @@ Name | Type | Description | Notes
19
20
  require 'PulpMavenClient'
20
21
 
21
22
  instance = PulpMavenClient::MavenMavenArtifactResponse.new(pulp_href: null,
23
+ prn: null,
22
24
  pulp_created: null,
23
25
  pulp_last_updated: null,
24
26
  artifact: null,
@@ -5,11 +5,13 @@
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
7
  **pulp_href** | **String** | | [optional] [readonly]
8
+ **prn** | **String** | The Pulp Resource Name (PRN). | [optional] [readonly]
8
9
  **pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
9
10
  **pulp_last_updated** | **DateTime** | Timestamp of the last time this resource was updated. Note: for immutable resources - like content, repository versions, and publication - pulp_created and pulp_last_updated dates will be the same. | [optional] [readonly]
10
11
  **base_path** | **String** | The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \&quot;foo\&quot; and \&quot;foo/bar\&quot;) |
11
12
  **base_url** | **String** | The URL for accessing the publication as defined by this distribution. | [optional] [readonly]
12
13
  **content_guard** | **String** | An optional content-guard. | [optional]
14
+ **no_content_change_since** | **String** | Timestamp since when the distributed content served by this distribution has not changed. If equals to &#x60;null&#x60;, no guarantee is provided about content changes. | [optional] [readonly]
13
15
  **hidden** | **Boolean** | Whether this distribution should be shown in the content app. | [optional] [default to false]
14
16
  **pulp_labels** | **Hash&lt;String, String&gt;** | | [optional]
15
17
  **name** | **String** | A unique name. Ex, &#x60;rawhide&#x60; and &#x60;stable&#x60;. |
@@ -22,11 +24,13 @@ Name | Type | Description | Notes
22
24
  require 'PulpMavenClient'
23
25
 
24
26
  instance = PulpMavenClient::MavenMavenDistributionResponse.new(pulp_href: null,
27
+ prn: null,
25
28
  pulp_created: null,
26
29
  pulp_last_updated: null,
27
30
  base_path: null,
28
31
  base_url: null,
29
32
  content_guard: null,
33
+ no_content_change_since: null,
30
34
  hidden: null,
31
35
  pulp_labels: null,
32
36
  name: null,
@@ -5,6 +5,7 @@
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
7
  **pulp_href** | **String** | | [optional] [readonly]
8
+ **prn** | **String** | The Pulp Resource Name (PRN). | [optional] [readonly]
8
9
  **pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
9
10
  **pulp_last_updated** | **DateTime** | Timestamp of the most recent update of the remote. | [optional] [readonly]
10
11
  **name** | **String** | A unique name for this remote. |
@@ -31,6 +32,7 @@ Name | Type | Description | Notes
31
32
  require 'PulpMavenClient'
32
33
 
33
34
  instance = PulpMavenClient::MavenMavenRemoteResponse.new(pulp_href: null,
35
+ prn: null,
34
36
  pulp_created: null,
35
37
  pulp_last_updated: null,
36
38
  name: null,
@@ -5,6 +5,7 @@
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
7
  **pulp_href** | **String** | | [optional] [readonly]
8
+ **prn** | **String** | The Pulp Resource Name (PRN). | [optional] [readonly]
8
9
  **pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
9
10
  **pulp_last_updated** | **DateTime** | Timestamp of the last time this resource was updated. Note: for immutable resources - like content, repository versions, and publication - pulp_created and pulp_last_updated dates will be the same. | [optional] [readonly]
10
11
  **versions_href** | **String** | | [optional] [readonly]
@@ -21,6 +22,7 @@ Name | Type | Description | Notes
21
22
  require 'PulpMavenClient'
22
23
 
23
24
  instance = PulpMavenClient::MavenMavenRepositoryResponse.new(pulp_href: null,
25
+ prn: null,
24
26
  pulp_created: null,
25
27
  pulp_last_updated: null,
26
28
  versions_href: null,
data/docs/PulpMavenApi.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # PulpMavenClient::PulpMavenApi
2
2
 
3
- All URIs are relative to *http://pulp*
3
+ All URIs are relative to *http://localhost:24817*
4
4
 
5
5
  Method | HTTP request | Description
6
6
  ------------- | ------------- | -------------
@@ -1,6 +1,6 @@
1
1
  # PulpMavenClient::RemotesMavenApi
2
2
 
3
- All URIs are relative to *http://pulp*
3
+ All URIs are relative to *http://localhost:24817*
4
4
 
5
5
  Method | HTTP request | Description
6
6
  ------------- | ------------- | -------------
@@ -155,6 +155,7 @@ opts = {
155
155
  name__startswith: 'name__startswith_example', # String | Filter results where name starts with value
156
156
  offset: 56, # Integer | The initial index from which to return the results.
157
157
  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) * `url` - Url * `-url` - Url (descending) * `ca_cert` - Ca cert * `-ca_cert` - Ca cert (descending) * `client_cert` - Client cert * `-client_cert` - Client cert (descending) * `client_key` - Client key * `-client_key` - Client key (descending) * `tls_validation` - Tls validation * `-tls_validation` - Tls validation (descending) * `username` - Username * `-username` - Username (descending) * `password` - Password * `-password` - Password (descending) * `proxy_url` - Proxy url * `-proxy_url` - Proxy url (descending) * `proxy_username` - Proxy username * `-proxy_username` - Proxy username (descending) * `proxy_password` - Proxy password * `-proxy_password` - Proxy password (descending) * `download_concurrency` - Download concurrency * `-download_concurrency` - Download concurrency (descending) * `max_retries` - Max retries * `-max_retries` - Max retries (descending) * `policy` - Policy * `-policy` - Policy (descending) * `total_timeout` - Total timeout * `-total_timeout` - Total timeout (descending) * `connect_timeout` - Connect timeout * `-connect_timeout` - Connect timeout (descending) * `sock_connect_timeout` - Sock connect timeout * `-sock_connect_timeout` - Sock connect timeout (descending) * `sock_read_timeout` - Sock read timeout * `-sock_read_timeout` - Sock read timeout (descending) * `headers` - Headers * `-headers` - Headers (descending) * `rate_limit` - Rate limit * `-rate_limit` - Rate limit (descending) * `pk` - Pk * `-pk` - Pk (descending)
158
+ prn__in: ['prn__in_example'], # Array<String> | Multiple values may be separated by commas.
158
159
  pulp_href__in: ['pulp_href__in_example'], # Array<String> | Multiple values may be separated by commas.
159
160
  pulp_id__in: ['pulp_id__in_example'], # Array<String> | Multiple values may be separated by commas.
160
161
  pulp_label_select: 'pulp_label_select_example', # String | Filter labels by search string
@@ -164,7 +165,7 @@ opts = {
164
165
  pulp_last_updated__lt: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where pulp_last_updated is less than value
165
166
  pulp_last_updated__lte: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where pulp_last_updated is less than or equal to value
166
167
  pulp_last_updated__range: [DateTime.parse('2013-10-20T19:20:30+01:00')], # Array<DateTime> | Filter results where pulp_last_updated is between two comma separated values
167
- q: 'q_example', # String |
168
+ q: 'q_example', # String | Filter results by using NOT, AND and OR operations on other filters
168
169
  fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
169
170
  exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
170
171
  }
@@ -195,6 +196,7 @@ Name | Type | Description | Notes
195
196
  **name__startswith** | **String**| Filter results where name starts with value | [optional]
196
197
  **offset** | **Integer**| The initial index from which to return the results. | [optional]
197
198
  **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;url&#x60; - Url * &#x60;-url&#x60; - Url (descending) * &#x60;ca_cert&#x60; - Ca cert * &#x60;-ca_cert&#x60; - Ca cert (descending) * &#x60;client_cert&#x60; - Client cert * &#x60;-client_cert&#x60; - Client cert (descending) * &#x60;client_key&#x60; - Client key * &#x60;-client_key&#x60; - Client key (descending) * &#x60;tls_validation&#x60; - Tls validation * &#x60;-tls_validation&#x60; - Tls validation (descending) * &#x60;username&#x60; - Username * &#x60;-username&#x60; - Username (descending) * &#x60;password&#x60; - Password * &#x60;-password&#x60; - Password (descending) * &#x60;proxy_url&#x60; - Proxy url * &#x60;-proxy_url&#x60; - Proxy url (descending) * &#x60;proxy_username&#x60; - Proxy username * &#x60;-proxy_username&#x60; - Proxy username (descending) * &#x60;proxy_password&#x60; - Proxy password * &#x60;-proxy_password&#x60; - Proxy password (descending) * &#x60;download_concurrency&#x60; - Download concurrency * &#x60;-download_concurrency&#x60; - Download concurrency (descending) * &#x60;max_retries&#x60; - Max retries * &#x60;-max_retries&#x60; - Max retries (descending) * &#x60;policy&#x60; - Policy * &#x60;-policy&#x60; - Policy (descending) * &#x60;total_timeout&#x60; - Total timeout * &#x60;-total_timeout&#x60; - Total timeout (descending) * &#x60;connect_timeout&#x60; - Connect timeout * &#x60;-connect_timeout&#x60; - Connect timeout (descending) * &#x60;sock_connect_timeout&#x60; - Sock connect timeout * &#x60;-sock_connect_timeout&#x60; - Sock connect timeout (descending) * &#x60;sock_read_timeout&#x60; - Sock read timeout * &#x60;-sock_read_timeout&#x60; - Sock read timeout (descending) * &#x60;headers&#x60; - Headers * &#x60;-headers&#x60; - Headers (descending) * &#x60;rate_limit&#x60; - Rate limit * &#x60;-rate_limit&#x60; - Rate limit (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending) | [optional]
199
+ **prn__in** | [**Array&lt;String&gt;**](String.md)| Multiple values may be separated by commas. | [optional]
198
200
  **pulp_href__in** | [**Array&lt;String&gt;**](String.md)| Multiple values may be separated by commas. | [optional]
199
201
  **pulp_id__in** | [**Array&lt;String&gt;**](String.md)| Multiple values may be separated by commas. | [optional]
200
202
  **pulp_label_select** | **String**| Filter labels by search string | [optional]
@@ -204,7 +206,7 @@ Name | Type | Description | Notes
204
206
  **pulp_last_updated__lt** | **DateTime**| Filter results where pulp_last_updated is less than value | [optional]
205
207
  **pulp_last_updated__lte** | **DateTime**| Filter results where pulp_last_updated is less than or equal to value | [optional]
206
208
  **pulp_last_updated__range** | [**Array&lt;DateTime&gt;**](DateTime.md)| Filter results where pulp_last_updated is between two comma separated values | [optional]
207
- **q** | **String**| | [optional]
209
+ **q** | **String**| Filter results by using NOT, AND and OR operations on other filters | [optional]
208
210
  **fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to include in the response. | [optional]
209
211
  **exclude_fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to exclude from the response. | [optional]
210
212
 
@@ -1,6 +1,6 @@
1
1
  # PulpMavenClient::RepositoriesMavenApi
2
2
 
3
- All URIs are relative to *http://pulp*
3
+ All URIs are relative to *http://localhost:24817*
4
4
 
5
5
  Method | HTTP request | Description
6
6
  ------------- | ------------- | -------------
@@ -199,7 +199,7 @@ end
199
199
 
200
200
  api_instance = PulpMavenClient::RepositoriesMavenApi.new
201
201
  opts = {
202
- latest_with_content: 'latest_with_content_example', # String | Content Unit referenced by HREF
202
+ latest_with_content: 'latest_with_content_example', # String | Content Unit referenced by HREF/PRN
203
203
  limit: 56, # Integer | Number of results to return per page.
204
204
  name: 'name_example', # String | Filter results where name matches value
205
205
  name__contains: 'name__contains_example', # String | Filter results where name contains value
@@ -212,10 +212,11 @@ opts = {
212
212
  name__startswith: 'name__startswith_example', # String | Filter results where name starts with value
213
213
  offset: 56, # Integer | The initial index from which to return the results.
214
214
  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)
215
+ prn__in: ['prn__in_example'], # Array<String> | Multiple values may be separated by commas.
215
216
  pulp_href__in: ['pulp_href__in_example'], # Array<String> | Multiple values may be separated by commas.
216
217
  pulp_id__in: ['pulp_id__in_example'], # Array<String> | Multiple values may be separated by commas.
217
218
  pulp_label_select: 'pulp_label_select_example', # String | Filter labels by search string
218
- q: 'q_example', # String |
219
+ q: 'q_example', # String | Filter results by using NOT, AND and OR operations on other filters
219
220
  remote: 'remote_example', # String | Foreign Key referenced by HREF
220
221
  retain_repo_versions: 56, # Integer | Filter results where retain_repo_versions matches value
221
222
  retain_repo_versions__gt: 56, # Integer | Filter results where retain_repo_versions is greater than value
@@ -225,7 +226,7 @@ opts = {
225
226
  retain_repo_versions__lte: 56, # Integer | Filter results where retain_repo_versions is less than or equal to value
226
227
  retain_repo_versions__ne: 56, # Integer | Filter results where retain_repo_versions not equal to value
227
228
  retain_repo_versions__range: [56], # Array<Integer> | Filter results where retain_repo_versions is between two comma separated values
228
- with_content: 'with_content_example', # String | Content Unit referenced by HREF
229
+ with_content: 'with_content_example', # String | Content Unit referenced by HREF/PRN
229
230
  fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
230
231
  exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
231
232
  }
@@ -244,7 +245,7 @@ end
244
245
 
245
246
  Name | Type | Description | Notes
246
247
  ------------- | ------------- | ------------- | -------------
247
- **latest_with_content** | **String**| Content Unit referenced by HREF | [optional]
248
+ **latest_with_content** | **String**| Content Unit referenced by HREF/PRN | [optional]
248
249
  **limit** | **Integer**| Number of results to return per page. | [optional]
249
250
  **name** | **String**| Filter results where name matches value | [optional]
250
251
  **name__contains** | **String**| Filter results where name contains value | [optional]
@@ -257,10 +258,11 @@ Name | Type | Description | Notes
257
258
  **name__startswith** | **String**| Filter results where name starts with value | [optional]
258
259
  **offset** | **Integer**| The initial index from which to return the results. | [optional]
259
260
  **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]
261
+ **prn__in** | [**Array&lt;String&gt;**](String.md)| Multiple values may be separated by commas. | [optional]
260
262
  **pulp_href__in** | [**Array&lt;String&gt;**](String.md)| Multiple values may be separated by commas. | [optional]
261
263
  **pulp_id__in** | [**Array&lt;String&gt;**](String.md)| Multiple values may be separated by commas. | [optional]
262
264
  **pulp_label_select** | **String**| Filter labels by search string | [optional]
263
- **q** | **String**| | [optional]
265
+ **q** | **String**| Filter results by using NOT, AND and OR operations on other filters | [optional]
264
266
  **remote** | [**String**](.md)| Foreign Key referenced by HREF | [optional]
265
267
  **retain_repo_versions** | **Integer**| Filter results where retain_repo_versions matches value | [optional]
266
268
  **retain_repo_versions__gt** | **Integer**| Filter results where retain_repo_versions is greater than value | [optional]
@@ -270,7 +272,7 @@ Name | Type | Description | Notes
270
272
  **retain_repo_versions__lte** | **Integer**| Filter results where retain_repo_versions is less than or equal to value | [optional]
271
273
  **retain_repo_versions__ne** | **Integer**| Filter results where retain_repo_versions not equal to value | [optional]
272
274
  **retain_repo_versions__range** | [**Array&lt;Integer&gt;**](Integer.md)| Filter results where retain_repo_versions is between two comma separated values | [optional]
273
- **with_content** | **String**| Content Unit referenced by HREF | [optional]
275
+ **with_content** | **String**| Content Unit referenced by HREF/PRN | [optional]
274
276
  **fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to include in the response. | [optional]
275
277
  **exclude_fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to exclude from the response. | [optional]
276
278
 
@@ -1,6 +1,6 @@
1
1
  # PulpMavenClient::RepositoriesMavenVersionsApi
2
2
 
3
- All URIs are relative to *http://pulp*
3
+ All URIs are relative to *http://localhost:24817*
4
4
 
5
5
  Method | HTTP request | Description
6
6
  ------------- | ------------- | -------------
@@ -87,8 +87,8 @@ end
87
87
  api_instance = PulpMavenClient::RepositoriesMavenVersionsApi.new
88
88
  maven_maven_repository_href = 'maven_maven_repository_href_example' # String |
89
89
  opts = {
90
- content: 'content_example', # String | Content Unit referenced by HREF
91
- content__in: 'content__in_example', # String | Content Unit referenced by HREF
90
+ content: 'content_example', # String | Content Unit referenced by HREF/PRN
91
+ content__in: ['content__in_example'], # Array<String> | Multiple values may be separated by commas.
92
92
  limit: 56, # Integer | Number of results to return per page.
93
93
  number: 56, # Integer | Filter results where number matches value
94
94
  number__gt: 56, # Integer | Filter results where number is greater than value
@@ -98,6 +98,7 @@ opts = {
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
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
+ prn__in: ['prn__in_example'], # Array<String> | Multiple values may be separated by commas.
101
102
  pulp_created: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where pulp_created matches value
102
103
  pulp_created__gt: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where pulp_created is greater than value
103
104
  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
@@ -105,7 +106,7 @@ opts = {
105
106
  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
107
  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
108
  pulp_href__in: ['pulp_href__in_example'], # Array<String> | Multiple values may be separated by commas.
108
- q: 'q_example', # String |
109
+ q: 'q_example', # String | Filter results by using NOT, AND and OR operations on other filters
109
110
  fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
110
111
  exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
111
112
  }
@@ -125,8 +126,8 @@ end
125
126
  Name | Type | Description | Notes
126
127
  ------------- | ------------- | ------------- | -------------
127
128
  **maven_maven_repository_href** | **String**| |
128
- **content** | **String**| Content Unit referenced by HREF | [optional]
129
- **content__in** | **String**| Content Unit referenced by HREF | [optional]
129
+ **content** | **String**| Content Unit referenced by HREF/PRN | [optional]
130
+ **content__in** | [**Array&lt;String&gt;**](String.md)| Multiple values may be separated by commas. | [optional]
130
131
  **limit** | **Integer**| Number of results to return per page. | [optional]
131
132
  **number** | **Integer**| Filter results where number matches value | [optional]
132
133
  **number__gt** | **Integer**| Filter results where number is greater than value | [optional]
@@ -136,6 +137,7 @@ Name | Type | Description | Notes
136
137
  **number__range** | [**Array&lt;Integer&gt;**](Integer.md)| Filter results where number is between two comma separated values | [optional]
137
138
  **offset** | **Integer**| The initial index from which to return the results. | [optional]
138
139
  **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]
140
+ **prn__in** | [**Array&lt;String&gt;**](String.md)| Multiple values may be separated by commas. | [optional]
139
141
  **pulp_created** | **DateTime**| Filter results where pulp_created matches value | [optional]
140
142
  **pulp_created__gt** | **DateTime**| Filter results where pulp_created is greater than value | [optional]
141
143
  **pulp_created__gte** | **DateTime**| Filter results where pulp_created is greater than or equal to value | [optional]
@@ -143,7 +145,7 @@ Name | Type | Description | Notes
143
145
  **pulp_created__lte** | **DateTime**| Filter results where pulp_created is less than or equal to value | [optional]
144
146
  **pulp_created__range** | [**Array&lt;DateTime&gt;**](DateTime.md)| Filter results where pulp_created is between two comma separated values | [optional]
145
147
  **pulp_href__in** | [**Array&lt;String&gt;**](String.md)| Multiple values may be separated by commas. | [optional]
146
- **q** | **String**| | [optional]
148
+ **q** | **String**| Filter results by using NOT, AND and OR operations on other filters | [optional]
147
149
  **fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to include in the response. | [optional]
148
150
  **exclude_fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to exclude from the response. | [optional]
149
151
 
@@ -5,6 +5,7 @@
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
7
  **pulp_href** | **String** | | [optional] [readonly]
8
+ **prn** | **String** | The Pulp Resource Name (PRN). | [optional] [readonly]
8
9
  **pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
9
10
  **pulp_last_updated** | **DateTime** | Timestamp of the last time this resource was updated. Note: for immutable resources - like content, repository versions, and publication - pulp_created and pulp_last_updated dates will be the same. | [optional] [readonly]
10
11
  **number** | **Integer** | | [optional] [readonly]
@@ -18,6 +19,7 @@ Name | Type | Description | Notes
18
19
  require 'PulpMavenClient'
19
20
 
20
21
  instance = PulpMavenClient::RepositoryVersionResponse.new(pulp_href: null,
22
+ prn: null,
21
23
  pulp_created: null,
22
24
  pulp_last_updated: null,
23
25
  number: null,
@@ -93,12 +93,13 @@ module PulpMavenClient
93
93
  # @option opts [Integer] :offset The initial index from which to return the results.
94
94
  # @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;group_id&#x60; - Group id * &#x60;-group_id&#x60; - Group id (descending) * &#x60;artifact_id&#x60; - Artifact id * &#x60;-artifact_id&#x60; - Artifact id (descending) * &#x60;version&#x60; - Version * &#x60;-version&#x60; - Version (descending) * &#x60;filename&#x60; - Filename * &#x60;-filename&#x60; - Filename (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
95
95
  # @option opts [Float] :orphaned_for Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.
96
+ # @option opts [Array<String>] :prn__in Multiple values may be separated by commas.
96
97
  # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
97
98
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
98
- # @option opts [String] :q
99
- # @option opts [String] :repository_version Repository Version referenced by HREF
100
- # @option opts [String] :repository_version_added Repository Version referenced by HREF
101
- # @option opts [String] :repository_version_removed Repository Version referenced by HREF
99
+ # @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
100
+ # @option opts [String] :repository_version Repository Version referenced by HREF/PRN
101
+ # @option opts [String] :repository_version_added Repository Version referenced by HREF/PRN
102
+ # @option opts [String] :repository_version_removed Repository Version referenced by HREF/PRN
102
103
  # @option opts [String] :version Filter results where version matches value
103
104
  # @option opts [Array<String>] :fields A list of fields to include in the response.
104
105
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
@@ -118,12 +119,13 @@ module PulpMavenClient
118
119
  # @option opts [Integer] :offset The initial index from which to return the results.
119
120
  # @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;group_id&#x60; - Group id * &#x60;-group_id&#x60; - Group id (descending) * &#x60;artifact_id&#x60; - Artifact id * &#x60;-artifact_id&#x60; - Artifact id (descending) * &#x60;version&#x60; - Version * &#x60;-version&#x60; - Version (descending) * &#x60;filename&#x60; - Filename * &#x60;-filename&#x60; - Filename (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
120
121
  # @option opts [Float] :orphaned_for Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.
122
+ # @option opts [Array<String>] :prn__in Multiple values may be separated by commas.
121
123
  # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
122
124
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
123
- # @option opts [String] :q
124
- # @option opts [String] :repository_version Repository Version referenced by HREF
125
- # @option opts [String] :repository_version_added Repository Version referenced by HREF
126
- # @option opts [String] :repository_version_removed Repository Version referenced by HREF
125
+ # @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
126
+ # @option opts [String] :repository_version Repository Version referenced by HREF/PRN
127
+ # @option opts [String] :repository_version_added Repository Version referenced by HREF/PRN
128
+ # @option opts [String] :repository_version_removed Repository Version referenced by HREF/PRN
127
129
  # @option opts [String] :version Filter results where version matches value
128
130
  # @option opts [Array<String>] :fields A list of fields to include in the response.
129
131
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
@@ -148,6 +150,7 @@ module PulpMavenClient
148
150
  query_params[:'offset'] = opts[:'offset'] if !opts[:'offset'].nil?
149
151
  query_params[:'ordering'] = @api_client.build_collection_param(opts[:'ordering'], :csv) if !opts[:'ordering'].nil?
150
152
  query_params[:'orphaned_for'] = opts[:'orphaned_for'] if !opts[:'orphaned_for'].nil?
153
+ query_params[:'prn__in'] = @api_client.build_collection_param(opts[:'prn__in'], :csv) if !opts[:'prn__in'].nil?
151
154
  query_params[:'pulp_href__in'] = @api_client.build_collection_param(opts[:'pulp_href__in'], :csv) if !opts[:'pulp_href__in'].nil?
152
155
  query_params[:'pulp_id__in'] = @api_client.build_collection_param(opts[:'pulp_id__in'], :csv) if !opts[:'pulp_id__in'].nil?
153
156
  query_params[:'q'] = opts[:'q'] if !opts[:'q'].nil?
@@ -164,10 +164,11 @@ module PulpMavenClient
164
164
  # @option opts [String] :name__startswith Filter results where name starts with value
165
165
  # @option opts [Integer] :offset The initial index from which to return the results.
166
166
  # @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;hidden&#x60; - Hidden * &#x60;-hidden&#x60; - Hidden (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
167
+ # @option opts [Array<String>] :prn__in Multiple values may be separated by commas.
167
168
  # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
168
169
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
169
170
  # @option opts [String] :pulp_label_select Filter labels by search string
170
- # @option opts [String] :q
171
+ # @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
171
172
  # @option opts [String] :repository Filter results where repository matches value
172
173
  # @option opts [Array<String>] :repository__in Filter results where repository is in a comma-separated list of values
173
174
  # @option opts [String] :with_content Filter distributions based on the content served by them
@@ -198,10 +199,11 @@ module PulpMavenClient
198
199
  # @option opts [String] :name__startswith Filter results where name starts with value
199
200
  # @option opts [Integer] :offset The initial index from which to return the results.
200
201
  # @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;hidden&#x60; - Hidden * &#x60;-hidden&#x60; - Hidden (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
202
+ # @option opts [Array<String>] :prn__in Multiple values may be separated by commas.
201
203
  # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
202
204
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
203
205
  # @option opts [String] :pulp_label_select Filter labels by search string
204
- # @option opts [String] :q
206
+ # @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
205
207
  # @option opts [String] :repository Filter results where repository matches value
206
208
  # @option opts [Array<String>] :repository__in Filter results where repository is in a comma-separated list of values
207
209
  # @option opts [String] :with_content Filter distributions based on the content served by them
@@ -237,6 +239,7 @@ module PulpMavenClient
237
239
  query_params[:'name__startswith'] = opts[:'name__startswith'] if !opts[:'name__startswith'].nil?
238
240
  query_params[:'offset'] = opts[:'offset'] if !opts[:'offset'].nil?
239
241
  query_params[:'ordering'] = @api_client.build_collection_param(opts[:'ordering'], :csv) if !opts[:'ordering'].nil?
242
+ query_params[:'prn__in'] = @api_client.build_collection_param(opts[:'prn__in'], :csv) if !opts[:'prn__in'].nil?
240
243
  query_params[:'pulp_href__in'] = @api_client.build_collection_param(opts[:'pulp_href__in'], :csv) if !opts[:'pulp_href__in'].nil?
241
244
  query_params[:'pulp_id__in'] = @api_client.build_collection_param(opts[:'pulp_id__in'], :csv) if !opts[:'pulp_id__in'].nil?
242
245
  query_params[:'pulp_label_select'] = opts[:'pulp_label_select'] if !opts[:'pulp_label_select'].nil?
@@ -160,6 +160,7 @@ module PulpMavenClient
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
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;url&#x60; - Url * &#x60;-url&#x60; - Url (descending) * &#x60;ca_cert&#x60; - Ca cert * &#x60;-ca_cert&#x60; - Ca cert (descending) * &#x60;client_cert&#x60; - Client cert * &#x60;-client_cert&#x60; - Client cert (descending) * &#x60;client_key&#x60; - Client key * &#x60;-client_key&#x60; - Client key (descending) * &#x60;tls_validation&#x60; - Tls validation * &#x60;-tls_validation&#x60; - Tls validation (descending) * &#x60;username&#x60; - Username * &#x60;-username&#x60; - Username (descending) * &#x60;password&#x60; - Password * &#x60;-password&#x60; - Password (descending) * &#x60;proxy_url&#x60; - Proxy url * &#x60;-proxy_url&#x60; - Proxy url (descending) * &#x60;proxy_username&#x60; - Proxy username * &#x60;-proxy_username&#x60; - Proxy username (descending) * &#x60;proxy_password&#x60; - Proxy password * &#x60;-proxy_password&#x60; - Proxy password (descending) * &#x60;download_concurrency&#x60; - Download concurrency * &#x60;-download_concurrency&#x60; - Download concurrency (descending) * &#x60;max_retries&#x60; - Max retries * &#x60;-max_retries&#x60; - Max retries (descending) * &#x60;policy&#x60; - Policy * &#x60;-policy&#x60; - Policy (descending) * &#x60;total_timeout&#x60; - Total timeout * &#x60;-total_timeout&#x60; - Total timeout (descending) * &#x60;connect_timeout&#x60; - Connect timeout * &#x60;-connect_timeout&#x60; - Connect timeout (descending) * &#x60;sock_connect_timeout&#x60; - Sock connect timeout * &#x60;-sock_connect_timeout&#x60; - Sock connect timeout (descending) * &#x60;sock_read_timeout&#x60; - Sock read timeout * &#x60;-sock_read_timeout&#x60; - Sock read timeout (descending) * &#x60;headers&#x60; - Headers * &#x60;-headers&#x60; - Headers (descending) * &#x60;rate_limit&#x60; - Rate limit * &#x60;-rate_limit&#x60; - Rate limit (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
163
+ # @option opts [Array<String>] :prn__in Multiple values may be separated by commas.
163
164
  # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
164
165
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
165
166
  # @option opts [String] :pulp_label_select Filter labels by search string
@@ -169,7 +170,7 @@ module PulpMavenClient
169
170
  # @option opts [DateTime] :pulp_last_updated__lt Filter results where pulp_last_updated is less than value
170
171
  # @option opts [DateTime] :pulp_last_updated__lte Filter results where pulp_last_updated is less than or equal to value
171
172
  # @option opts [Array<DateTime>] :pulp_last_updated__range Filter results where pulp_last_updated is between two comma separated values
172
- # @option opts [String] :q
173
+ # @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
173
174
  # @option opts [Array<String>] :fields A list of fields to include in the response.
174
175
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
175
176
  # @return [PaginatedmavenMavenRemoteResponseList]
@@ -193,6 +194,7 @@ module PulpMavenClient
193
194
  # @option opts [String] :name__startswith Filter results where name starts with value
194
195
  # @option opts [Integer] :offset The initial index from which to return the results.
195
196
  # @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;url&#x60; - Url * &#x60;-url&#x60; - Url (descending) * &#x60;ca_cert&#x60; - Ca cert * &#x60;-ca_cert&#x60; - Ca cert (descending) * &#x60;client_cert&#x60; - Client cert * &#x60;-client_cert&#x60; - Client cert (descending) * &#x60;client_key&#x60; - Client key * &#x60;-client_key&#x60; - Client key (descending) * &#x60;tls_validation&#x60; - Tls validation * &#x60;-tls_validation&#x60; - Tls validation (descending) * &#x60;username&#x60; - Username * &#x60;-username&#x60; - Username (descending) * &#x60;password&#x60; - Password * &#x60;-password&#x60; - Password (descending) * &#x60;proxy_url&#x60; - Proxy url * &#x60;-proxy_url&#x60; - Proxy url (descending) * &#x60;proxy_username&#x60; - Proxy username * &#x60;-proxy_username&#x60; - Proxy username (descending) * &#x60;proxy_password&#x60; - Proxy password * &#x60;-proxy_password&#x60; - Proxy password (descending) * &#x60;download_concurrency&#x60; - Download concurrency * &#x60;-download_concurrency&#x60; - Download concurrency (descending) * &#x60;max_retries&#x60; - Max retries * &#x60;-max_retries&#x60; - Max retries (descending) * &#x60;policy&#x60; - Policy * &#x60;-policy&#x60; - Policy (descending) * &#x60;total_timeout&#x60; - Total timeout * &#x60;-total_timeout&#x60; - Total timeout (descending) * &#x60;connect_timeout&#x60; - Connect timeout * &#x60;-connect_timeout&#x60; - Connect timeout (descending) * &#x60;sock_connect_timeout&#x60; - Sock connect timeout * &#x60;-sock_connect_timeout&#x60; - Sock connect timeout (descending) * &#x60;sock_read_timeout&#x60; - Sock read timeout * &#x60;-sock_read_timeout&#x60; - Sock read timeout (descending) * &#x60;headers&#x60; - Headers * &#x60;-headers&#x60; - Headers (descending) * &#x60;rate_limit&#x60; - Rate limit * &#x60;-rate_limit&#x60; - Rate limit (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
197
+ # @option opts [Array<String>] :prn__in Multiple values may be separated by commas.
196
198
  # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
197
199
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
198
200
  # @option opts [String] :pulp_label_select Filter labels by search string
@@ -202,7 +204,7 @@ module PulpMavenClient
202
204
  # @option opts [DateTime] :pulp_last_updated__lt Filter results where pulp_last_updated is less than value
203
205
  # @option opts [DateTime] :pulp_last_updated__lte Filter results where pulp_last_updated is less than or equal to value
204
206
  # @option opts [Array<DateTime>] :pulp_last_updated__range Filter results where pulp_last_updated is between two comma separated values
205
- # @option opts [String] :q
207
+ # @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
206
208
  # @option opts [Array<String>] :fields A list of fields to include in the response.
207
209
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
208
210
  # @return [Array<(PaginatedmavenMavenRemoteResponseList, Integer, Hash)>] PaginatedmavenMavenRemoteResponseList data, response status code and response headers
@@ -231,6 +233,7 @@ module PulpMavenClient
231
233
  query_params[:'name__startswith'] = opts[:'name__startswith'] if !opts[:'name__startswith'].nil?
232
234
  query_params[:'offset'] = opts[:'offset'] if !opts[:'offset'].nil?
233
235
  query_params[:'ordering'] = @api_client.build_collection_param(opts[:'ordering'], :csv) if !opts[:'ordering'].nil?
236
+ query_params[:'prn__in'] = @api_client.build_collection_param(opts[:'prn__in'], :csv) if !opts[:'prn__in'].nil?
234
237
  query_params[:'pulp_href__in'] = @api_client.build_collection_param(opts[:'pulp_href__in'], :csv) if !opts[:'pulp_href__in'].nil?
235
238
  query_params[:'pulp_id__in'] = @api_client.build_collection_param(opts[:'pulp_id__in'], :csv) if !opts[:'pulp_id__in'].nil?
236
239
  query_params[:'pulp_label_select'] = opts[:'pulp_label_select'] if !opts[:'pulp_label_select'].nil?