pulp_maven_client 0.8.0 → 0.8.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (49) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +5 -5
  3. data/docs/ContentArtifactApi.md +13 -9
  4. data/docs/DistributionsMavenApi.md +5 -3
  5. data/docs/MavenMavenArtifactResponse.md +4 -0
  6. data/docs/MavenMavenDistributionResponse.md +6 -0
  7. data/docs/MavenMavenRemoteResponse.md +4 -2
  8. data/docs/MavenMavenRemoteResponseHiddenFields.md +2 -2
  9. data/docs/MavenMavenRepositoryResponse.md +4 -0
  10. data/docs/PaginatedRepositoryVersionResponseList.md +2 -2
  11. data/docs/PaginatedmavenMavenArtifactResponseList.md +2 -2
  12. data/docs/PaginatedmavenMavenDistributionResponseList.md +2 -2
  13. data/docs/PaginatedmavenMavenRemoteResponseList.md +2 -2
  14. data/docs/PaginatedmavenMavenRepositoryResponseList.md +2 -2
  15. data/docs/PulpMavenApi.md +1 -1
  16. data/docs/RemotesMavenApi.md +5 -3
  17. data/docs/RepositoriesMavenApi.md +9 -7
  18. data/docs/RepositoriesMavenVersionsApi.md +9 -7
  19. data/docs/RepositoryVersionResponse.md +4 -0
  20. data/lib/pulp_maven_client/api/content_artifact_api.rb +14 -8
  21. data/lib/pulp_maven_client/api/distributions_maven_api.rb +5 -2
  22. data/lib/pulp_maven_client/api/remotes_maven_api.rb +5 -2
  23. data/lib/pulp_maven_client/api/repositories_maven_api.rb +9 -6
  24. data/lib/pulp_maven_client/api/repositories_maven_versions_api.rb +10 -7
  25. data/lib/pulp_maven_client/configuration.rb +2 -2
  26. data/lib/pulp_maven_client/models/maven_maven_artifact_response.rb +21 -1
  27. data/lib/pulp_maven_client/models/maven_maven_distribution_response.rb +31 -1
  28. data/lib/pulp_maven_client/models/maven_maven_remote_response.rb +21 -11
  29. data/lib/pulp_maven_client/models/maven_maven_remote_response_hidden_fields.rb +10 -0
  30. data/lib/pulp_maven_client/models/maven_maven_repository_response.rb +21 -1
  31. data/lib/pulp_maven_client/models/paginated_repository_version_response_list.rb +10 -0
  32. data/lib/pulp_maven_client/models/paginatedmaven_maven_artifact_response_list.rb +10 -0
  33. data/lib/pulp_maven_client/models/paginatedmaven_maven_distribution_response_list.rb +10 -0
  34. data/lib/pulp_maven_client/models/paginatedmaven_maven_remote_response_list.rb +10 -0
  35. data/lib/pulp_maven_client/models/paginatedmaven_maven_repository_response_list.rb +10 -0
  36. data/lib/pulp_maven_client/models/repository_version_response.rb +22 -2
  37. data/lib/pulp_maven_client/version.rb +1 -1
  38. data/spec/api/content_artifact_api_spec.rb +6 -4
  39. data/spec/api/distributions_maven_api_spec.rb +2 -1
  40. data/spec/api/remotes_maven_api_spec.rb +2 -1
  41. data/spec/api/repositories_maven_api_spec.rb +4 -3
  42. data/spec/api/repositories_maven_versions_api_spec.rb +4 -3
  43. data/spec/configuration_spec.rb +3 -3
  44. data/spec/models/maven_maven_artifact_response_spec.rb +12 -0
  45. data/spec/models/maven_maven_distribution_response_spec.rb +18 -0
  46. data/spec/models/maven_maven_remote_response_spec.rb +12 -6
  47. data/spec/models/maven_maven_repository_response_spec.rb +12 -0
  48. data/spec/models/repository_version_response_spec.rb +12 -0
  49. metadata +37 -37
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2010ea8227d6ab9599058857eb478fbdb91787aa7c647579963dfd879bec13c1
4
- data.tar.gz: 87f92797f4efd9ad94c75f7e8c34ef2be16047a6338cf168bc3dea706b9eff0d
3
+ metadata.gz: 604d6fd817882ade48f9e4f87efa856eb5b97a49db6d6d4fc862641a754a79f6
4
+ data.tar.gz: 4ec2a31623f718762910ec9b2bf0182085fcc02641395858e4c51881ab5d7e07
5
5
  SHA512:
6
- metadata.gz: 19f1451a2fdbf5da67b4ccd0ec7d9d2b7cea858c1c16ea322c212624535afd85a6ce24c022c91238014e9228325d84734e7ae814562ce492a0c5e0174646fd3e
7
- data.tar.gz: '0802144cc9872c5af65ccbf7c6f26aab75bfe8e3acd3aba452d7958eaeef8921092429d8b38ce4a5bd110031e527ffa0b01754f173a4e58b9780111ee36feac9'
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.0
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.0.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.0.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.0'
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
  ------------- | ------------- | -------------
@@ -91,12 +91,14 @@ opts = {
91
91
  limit: 56, # Integer | Number of results to return per page.
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
+ 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.
94
96
  pulp_href__in: ['pulp_href__in_example'], # Array<String> | Multiple values may be separated by commas.
95
97
  pulp_id__in: ['pulp_id__in_example'], # Array<String> | Multiple values may be separated by commas.
96
- q: 'q_example', # String |
97
- repository_version: 'repository_version_example', # String | Repository Version referenced by HREF
98
- repository_version_added: 'repository_version_added_example', # String | Repository Version referenced by HREF
99
- 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
100
102
  version: 'version_example', # String | Filter results where version matches value
101
103
  fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
102
104
  exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
@@ -122,12 +124,14 @@ Name | Type | Description | Notes
122
124
  **limit** | **Integer**| Number of results to return per page. | [optional]
123
125
  **offset** | **Integer**| The initial index from which to return the results. | [optional]
124
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]
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]
125
129
  **pulp_href__in** | [**Array&lt;String&gt;**](String.md)| Multiple values may be separated by commas. | [optional]
126
130
  **pulp_id__in** | [**Array&lt;String&gt;**](String.md)| Multiple values may be separated by commas. | [optional]
127
- **q** | **String**| | [optional]
128
- **repository_version** | **String**| Repository Version referenced by HREF | [optional]
129
- **repository_version_added** | **String**| Repository Version referenced by HREF | [optional]
130
- **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]
131
135
  **version** | **String**| Filter results where version matches value | [optional]
132
136
  **fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to include in the response. | [optional]
133
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,7 +5,9 @@
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]
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]
9
11
  **artifact** | **String** | Artifact file representing the physical content |
10
12
  **group_id** | **String** | Group Id of the artifact&#39;s package. | [optional] [readonly]
11
13
  **artifact_id** | **String** | Artifact Id of the artifact&#39;s package. | [optional] [readonly]
@@ -18,7 +20,9 @@ Name | Type | Description | Notes
18
20
  require 'PulpMavenClient'
19
21
 
20
22
  instance = PulpMavenClient::MavenMavenArtifactResponse.new(pulp_href: null,
23
+ prn: null,
21
24
  pulp_created: null,
25
+ pulp_last_updated: null,
22
26
  artifact: null,
23
27
  group_id: null,
24
28
  artifact_id: null,
@@ -5,10 +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]
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]
9
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;) |
10
12
  **base_url** | **String** | The URL for accessing the publication as defined by this distribution. | [optional] [readonly]
11
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]
12
15
  **hidden** | **Boolean** | Whether this distribution should be shown in the content app. | [optional] [default to false]
13
16
  **pulp_labels** | **Hash&lt;String, String&gt;** | | [optional]
14
17
  **name** | **String** | A unique name. Ex, &#x60;rawhide&#x60; and &#x60;stable&#x60;. |
@@ -21,10 +24,13 @@ Name | Type | Description | Notes
21
24
  require 'PulpMavenClient'
22
25
 
23
26
  instance = PulpMavenClient::MavenMavenDistributionResponse.new(pulp_href: null,
27
+ prn: null,
24
28
  pulp_created: null,
29
+ pulp_last_updated: null,
25
30
  base_path: null,
26
31
  base_url: null,
27
32
  content_guard: null,
33
+ no_content_change_since: null,
28
34
  hidden: null,
29
35
  pulp_labels: null,
30
36
  name: null,
@@ -5,7 +5,9 @@
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]
10
+ **pulp_last_updated** | **DateTime** | Timestamp of the most recent update of the remote. | [optional] [readonly]
9
11
  **name** | **String** | A unique name for this remote. |
10
12
  **url** | **String** | The URL of an external content source. |
11
13
  **ca_cert** | **String** | A PEM encoded CA certificate used to validate the server certificate presented by the remote server. | [optional]
@@ -13,7 +15,6 @@ Name | Type | Description | Notes
13
15
  **tls_validation** | **Boolean** | If True, TLS peer validation must be performed. | [optional]
14
16
  **proxy_url** | **String** | The proxy URL. Format: scheme://host:port | [optional]
15
17
  **pulp_labels** | **Hash&lt;String, String&gt;** | | [optional]
16
- **pulp_last_updated** | **DateTime** | Timestamp of the most recent update of the remote. | [optional] [readonly]
17
18
  **download_concurrency** | **Integer** | Total number of simultaneous connections. If not set then the default value will be used. | [optional]
18
19
  **max_retries** | **Integer** | Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used. | [optional]
19
20
  **policy** | [**PolicyEnum**](PolicyEnum.md) | The policy to use when downloading content. * &#x60;immediate&#x60; - immediate * &#x60;When syncing, download all metadata and content now.&#x60; - When syncing, download all metadata and content now. | [optional]
@@ -31,7 +32,9 @@ 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,
37
+ pulp_last_updated: null,
35
38
  name: null,
36
39
  url: null,
37
40
  ca_cert: null,
@@ -39,7 +42,6 @@ instance = PulpMavenClient::MavenMavenRemoteResponse.new(pulp_href: null,
39
42
  tls_validation: null,
40
43
  proxy_url: null,
41
44
  pulp_labels: null,
42
- pulp_last_updated: null,
43
45
  download_concurrency: null,
44
46
  max_retries: null,
45
47
  policy: null,
@@ -4,8 +4,8 @@
4
4
 
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
- **name** | **String** | | [optional]
8
- **is_set** | **Boolean** | | [optional]
7
+ **name** | **String** | |
8
+ **is_set** | **Boolean** | |
9
9
 
10
10
  ## Code Sample
11
11
 
@@ -5,7 +5,9 @@
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]
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]
9
11
  **versions_href** | **String** | | [optional] [readonly]
10
12
  **pulp_labels** | **Hash&lt;String, String&gt;** | | [optional]
11
13
  **latest_version_href** | **String** | | [optional] [readonly]
@@ -20,7 +22,9 @@ Name | Type | Description | Notes
20
22
  require 'PulpMavenClient'
21
23
 
22
24
  instance = PulpMavenClient::MavenMavenRepositoryResponse.new(pulp_href: null,
25
+ prn: null,
23
26
  pulp_created: null,
27
+ pulp_last_updated: null,
24
28
  versions_href: null,
25
29
  pulp_labels: null,
26
30
  latest_version_href: null,
@@ -4,10 +4,10 @@
4
4
 
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
- **count** | **Integer** | | [optional]
7
+ **count** | **Integer** | |
8
8
  **_next** | **String** | | [optional]
9
9
  **previous** | **String** | | [optional]
10
- **results** | [**Array&lt;RepositoryVersionResponse&gt;**](RepositoryVersionResponse.md) | | [optional]
10
+ **results** | [**Array&lt;RepositoryVersionResponse&gt;**](RepositoryVersionResponse.md) | |
11
11
 
12
12
  ## Code Sample
13
13
 
@@ -4,10 +4,10 @@
4
4
 
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
- **count** | **Integer** | | [optional]
7
+ **count** | **Integer** | |
8
8
  **_next** | **String** | | [optional]
9
9
  **previous** | **String** | | [optional]
10
- **results** | [**Array&lt;MavenMavenArtifactResponse&gt;**](MavenMavenArtifactResponse.md) | | [optional]
10
+ **results** | [**Array&lt;MavenMavenArtifactResponse&gt;**](MavenMavenArtifactResponse.md) | |
11
11
 
12
12
  ## Code Sample
13
13
 
@@ -4,10 +4,10 @@
4
4
 
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
- **count** | **Integer** | | [optional]
7
+ **count** | **Integer** | |
8
8
  **_next** | **String** | | [optional]
9
9
  **previous** | **String** | | [optional]
10
- **results** | [**Array&lt;MavenMavenDistributionResponse&gt;**](MavenMavenDistributionResponse.md) | | [optional]
10
+ **results** | [**Array&lt;MavenMavenDistributionResponse&gt;**](MavenMavenDistributionResponse.md) | |
11
11
 
12
12
  ## Code Sample
13
13
 
@@ -4,10 +4,10 @@
4
4
 
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
- **count** | **Integer** | | [optional]
7
+ **count** | **Integer** | |
8
8
  **_next** | **String** | | [optional]
9
9
  **previous** | **String** | | [optional]
10
- **results** | [**Array&lt;MavenMavenRemoteResponse&gt;**](MavenMavenRemoteResponse.md) | | [optional]
10
+ **results** | [**Array&lt;MavenMavenRemoteResponse&gt;**](MavenMavenRemoteResponse.md) | |
11
11
 
12
12
  ## Code Sample
13
13
 
@@ -4,10 +4,10 @@
4
4
 
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
- **count** | **Integer** | | [optional]
7
+ **count** | **Integer** | |
8
8
  **_next** | **String** | | [optional]
9
9
  **previous** | **String** | | [optional]
10
- **results** | [**Array&lt;MavenMavenRepositoryResponse&gt;**](MavenMavenRepositoryResponse.md) | | [optional]
10
+ **results** | [**Array&lt;MavenMavenRepositoryResponse&gt;**](MavenMavenRepositoryResponse.md) | |
11
11
 
12
12
  ## Code Sample
13
13
 
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,7 +5,9 @@
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]
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]
9
11
  **number** | **Integer** | | [optional] [readonly]
10
12
  **repository** | **String** | | [optional] [readonly]
11
13
  **base_version** | **String** | A repository version whose content was used as the initial set of content for this repository version | [optional]
@@ -17,7 +19,9 @@ Name | Type | Description | Notes
17
19
  require 'PulpMavenClient'
18
20
 
19
21
  instance = PulpMavenClient::RepositoryVersionResponse.new(pulp_href: null,
22
+ prn: null,
20
23
  pulp_created: null,
24
+ pulp_last_updated: null,
21
25
  number: null,
22
26
  repository: null,
23
27
  base_version: null,
@@ -92,12 +92,14 @@ module PulpMavenClient
92
92
  # @option opts [Integer] :limit Number of results to return per page.
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
+ # @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.
95
97
  # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
96
98
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
97
- # @option opts [String] :q
98
- # @option opts [String] :repository_version Repository Version referenced by HREF
99
- # @option opts [String] :repository_version_added Repository Version referenced by HREF
100
- # @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
101
103
  # @option opts [String] :version Filter results where version matches value
102
104
  # @option opts [Array<String>] :fields A list of fields to include in the response.
103
105
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
@@ -116,12 +118,14 @@ module PulpMavenClient
116
118
  # @option opts [Integer] :limit Number of results to return per page.
117
119
  # @option opts [Integer] :offset The initial index from which to return the results.
118
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)
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.
119
123
  # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
120
124
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
121
- # @option opts [String] :q
122
- # @option opts [String] :repository_version Repository Version referenced by HREF
123
- # @option opts [String] :repository_version_added Repository Version referenced by HREF
124
- # @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
125
129
  # @option opts [String] :version Filter results where version matches value
126
130
  # @option opts [Array<String>] :fields A list of fields to include in the response.
127
131
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
@@ -145,6 +149,8 @@ module PulpMavenClient
145
149
  query_params[:'limit'] = opts[:'limit'] if !opts[:'limit'].nil?
146
150
  query_params[:'offset'] = opts[:'offset'] if !opts[:'offset'].nil?
147
151
  query_params[:'ordering'] = @api_client.build_collection_param(opts[:'ordering'], :csv) if !opts[:'ordering'].nil?
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?
148
154
  query_params[:'pulp_href__in'] = @api_client.build_collection_param(opts[:'pulp_href__in'], :csv) if !opts[:'pulp_href__in'].nil?
149
155
  query_params[:'pulp_id__in'] = @api_client.build_collection_param(opts[:'pulp_id__in'], :csv) if !opts[:'pulp_id__in'].nil?
150
156
  query_params[:'q'] = opts[:'q'] if !opts[:'q'].nil?