pulp_npm_client 0.1.0a4 → 0.1.0a5.dev1676862967

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.

Potentially problematic release.


This version of pulp_npm_client might be problematic. Click here for more details.

Files changed (48) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +5 -4
  3. data/docs/ContentPackagesApi.md +8 -8
  4. data/docs/DistributionsNpmApi.md +18 -12
  5. data/docs/NpmNpmDistribution.md +1 -1
  6. data/docs/NpmNpmDistributionResponse.md +1 -1
  7. data/docs/NpmNpmRemote.md +1 -1
  8. data/docs/NpmNpmRemoteResponse.md +4 -2
  9. data/docs/NpmNpmRemoteResponseHiddenFields.md +19 -0
  10. data/docs/NpmNpmRepository.md +1 -1
  11. data/docs/NpmNpmRepositoryResponse.md +1 -1
  12. data/docs/PatchednpmNpmDistribution.md +1 -1
  13. data/docs/PatchednpmNpmRemote.md +1 -1
  14. data/docs/PatchednpmNpmRepository.md +1 -1
  15. data/docs/PulpNpmPackagesApi.md +4 -4
  16. data/docs/RemotesNpmApi.md +12 -12
  17. data/docs/RepositoriesNpmApi.md +28 -10
  18. data/docs/RepositoriesNpmVersionsApi.md +12 -12
  19. data/lib/pulp_npm_client/api/content_packages_api.rb +13 -13
  20. data/lib/pulp_npm_client/api/distributions_npm_api.rb +26 -17
  21. data/lib/pulp_npm_client/api/pulp_npm_packages_api.rb +6 -6
  22. data/lib/pulp_npm_client/api/remotes_npm_api.rb +17 -17
  23. data/lib/pulp_npm_client/api/repositories_npm_api.rb +42 -15
  24. data/lib/pulp_npm_client/api/repositories_npm_versions_api.rb +17 -17
  25. data/lib/pulp_npm_client/api_client.rb +1 -1
  26. data/lib/pulp_npm_client/models/npm_npm_distribution.rb +4 -2
  27. data/lib/pulp_npm_client/models/npm_npm_distribution_response.rb +4 -2
  28. data/lib/pulp_npm_client/models/npm_npm_remote.rb +4 -2
  29. data/lib/pulp_npm_client/models/npm_npm_remote_response.rb +21 -7
  30. data/lib/pulp_npm_client/models/npm_npm_remote_response_hidden_fields.rb +215 -0
  31. data/lib/pulp_npm_client/models/npm_npm_repository.rb +4 -2
  32. data/lib/pulp_npm_client/models/npm_npm_repository_response.rb +4 -2
  33. data/lib/pulp_npm_client/models/patchednpm_npm_distribution.rb +4 -2
  34. data/lib/pulp_npm_client/models/patchednpm_npm_remote.rb +4 -2
  35. data/lib/pulp_npm_client/models/patchednpm_npm_repository.rb +4 -2
  36. data/lib/pulp_npm_client/version.rb +1 -1
  37. data/lib/pulp_npm_client.rb +1 -0
  38. data/pulp_npm_client.gemspec +3 -3
  39. data/spec/api/content_packages_api_spec.rb +4 -4
  40. data/spec/api/distributions_npm_api_spec.rb +9 -6
  41. data/spec/api/pulp_npm_packages_api_spec.rb +2 -2
  42. data/spec/api/remotes_npm_api_spec.rb +6 -6
  43. data/spec/api/repositories_npm_api_spec.rb +14 -5
  44. data/spec/api/repositories_npm_versions_api_spec.rb +6 -6
  45. data/spec/models/npm_npm_remote_response_hidden_fields_spec.rb +47 -0
  46. data/spec/models/npm_npm_remote_response_spec.rb +6 -0
  47. metadata +33 -30
  48. data/git_push.sh +0 -58
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 17e5be2599f8bd3c8d1e77fb9154575df3a44b299f3984dd8ea4492c8b0e39d1
4
- data.tar.gz: 6fa4eaecdc4a725ae6076283d8eab3c804f10530aaf2b678dce0509fac57c668
3
+ metadata.gz: 35d1c85e6629d9f4785e0135ea726b886f9a86314e5fdadc8c4f65dea20775e7
4
+ data.tar.gz: aa0af0d9a49b7f55e1a87c55e5e7aa341231b95f3a4a040e5bce9f397e4635b8
5
5
  SHA512:
6
- metadata.gz: 6170105e489adaba2ff0ecf6a7a2a750f408cc0a6c230ff54fff059d7e7df88693a9b5785f7da8626c5cdd4b9c11b6f3979d82a68012f289f44751e7f5bd87fe
7
- data.tar.gz: 76e5de68ce2a37d72752bd7a32208e4cea6dbcc16550a3dfef0ad1767c43a9781c295040d9d36e7d102d8eca180e50bff9ed2e90de1af3b44f282b19f783731e
6
+ metadata.gz: a64935f0c65ffab56f6b95d42ce41f275f6b8d653014b88f9e3ada04511c80464f983242493adc540b5517218abe29f8767deacb354ae7aec9833690d431407c
7
+ data.tar.gz: 2f1331b6420a08e78b3ebc47b34cae19e126dd992b2c4734296f8039c44cae008dd2123bfc7cbbee8e4b8c144b68d6140032008ea84776e8e3581d198bc14f0c
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.1.0a4
10
+ - Package version: 0.1.0a5.dev1676862967
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_npm_client.gemspec
24
24
  Then either install the gem locally:
25
25
 
26
26
  ```shell
27
- gem install ./pulp_npm_client-0.1.0a4.gem
27
+ gem install ./pulp_npm_client-0.1.0a5.dev1676862967.gem
28
28
  ```
29
29
 
30
- (for development, run `gem install --dev ./pulp_npm_client-0.1.0a4.gem` to install the development dependencies)
30
+ (for development, run `gem install --dev ./pulp_npm_client-0.1.0a5.dev1676862967.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_npm_client', '~> 0.1.0a4'
36
+ gem 'pulp_npm_client', '~> 0.1.0a5.dev1676862967'
37
37
 
38
38
  ### Install from Git
39
39
 
@@ -129,6 +129,7 @@ Class | Method | HTTP request | Description
129
129
  - [PulpNpmClient::NpmNpmDistributionResponse](docs/NpmNpmDistributionResponse.md)
130
130
  - [PulpNpmClient::NpmNpmRemote](docs/NpmNpmRemote.md)
131
131
  - [PulpNpmClient::NpmNpmRemoteResponse](docs/NpmNpmRemoteResponse.md)
132
+ - [PulpNpmClient::NpmNpmRemoteResponseHiddenFields](docs/NpmNpmRemoteResponseHiddenFields.md)
132
133
  - [PulpNpmClient::NpmNpmRepository](docs/NpmNpmRepository.md)
133
134
  - [PulpNpmClient::NpmNpmRepositoryResponse](docs/NpmNpmRepositoryResponse.md)
134
135
  - [PulpNpmClient::NpmPackage](docs/NpmPackage.md)
@@ -107,8 +107,8 @@ opts = {
107
107
  repository_version: 'repository_version_example', # String | Repository Version referenced by HREF
108
108
  repository_version_added: 'repository_version_added_example', # String | Repository Version referenced by HREF
109
109
  repository_version_removed: 'repository_version_removed_example', # String | Repository Version referenced by HREF
110
- fields: 'fields_example', # String | A list of fields to include in the response.
111
- exclude_fields: 'exclude_fields_example' # String | A list of fields to exclude from the response.
110
+ fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
111
+ exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
112
112
  }
113
113
 
114
114
  begin
@@ -133,8 +133,8 @@ Name | Type | Description | Notes
133
133
  **repository_version** | **String**| Repository Version referenced by HREF | [optional]
134
134
  **repository_version_added** | **String**| Repository Version referenced by HREF | [optional]
135
135
  **repository_version_removed** | **String**| Repository Version referenced by HREF | [optional]
136
- **fields** | **String**| A list of fields to include in the response. | [optional]
137
- **exclude_fields** | **String**| A list of fields to exclude from the response. | [optional]
136
+ **fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to include in the response. | [optional]
137
+ **exclude_fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to exclude from the response. | [optional]
138
138
 
139
139
  ### Return type
140
140
 
@@ -173,8 +173,8 @@ end
173
173
  api_instance = PulpNpmClient::ContentPackagesApi.new
174
174
  npm_package_href = 'npm_package_href_example' # String |
175
175
  opts = {
176
- fields: 'fields_example', # String | A list of fields to include in the response.
177
- exclude_fields: 'exclude_fields_example' # String | A list of fields to exclude from the response.
176
+ fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
177
+ exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
178
178
  }
179
179
 
180
180
  begin
@@ -192,8 +192,8 @@ end
192
192
  Name | Type | Description | Notes
193
193
  ------------- | ------------- | ------------- | -------------
194
194
  **npm_package_href** | **String**| |
195
- **fields** | **String**| A list of fields to include in the response. | [optional]
196
- **exclude_fields** | **String**| A list of fields to exclude from the response. | [optional]
195
+ **fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to include in the response. | [optional]
196
+ **exclude_fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to exclude from the response. | [optional]
197
197
 
198
198
  ### Return type
199
199
 
@@ -141,12 +141,12 @@ end
141
141
 
142
142
  api_instance = PulpNpmClient::DistributionsNpmApi.new
143
143
  opts = {
144
- base_path: 'base_path_example', # String |
144
+ base_path: 'base_path_example', # String | Filter results where base_path matches value
145
145
  base_path__contains: 'base_path__contains_example', # String | Filter results where base_path contains value
146
146
  base_path__icontains: 'base_path__icontains_example', # String | Filter results where base_path contains value
147
147
  base_path__in: ['base_path__in_example'], # Array<String> | Filter results where base_path is in a comma-separated list of values
148
148
  limit: 56, # Integer | Number of results to return per page.
149
- name: 'name_example', # String |
149
+ name: 'name_example', # String | Filter results where name matches value
150
150
  name__contains: 'name__contains_example', # String | Filter results where name contains value
151
151
  name__icontains: 'name__icontains_example', # String | Filter results where name contains value
152
152
  name__in: ['name__in_example'], # Array<String> | Filter results where name is in a comma-separated list of values
@@ -154,8 +154,11 @@ opts = {
154
154
  offset: 56, # Integer | The initial index from which to return the results.
155
155
  ordering: ['ordering_example'], # Array<String> | Ordering
156
156
  pulp_label_select: 'pulp_label_select_example', # String | Filter labels by search string
157
- fields: 'fields_example', # String | A list of fields to include in the response.
158
- exclude_fields: 'exclude_fields_example' # String | A list of fields to exclude from the response.
157
+ repository: 'repository_example', # String | Filter results where repository matches value
158
+ repository__in: ['repository__in_example'], # Array<String> | Filter results where repository is in a comma-separated list of values
159
+ with_content: 'with_content_example', # String | Filter distributions based on the content served by them
160
+ fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
161
+ exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
159
162
  }
160
163
 
161
164
  begin
@@ -172,12 +175,12 @@ end
172
175
 
173
176
  Name | Type | Description | Notes
174
177
  ------------- | ------------- | ------------- | -------------
175
- **base_path** | **String**| | [optional]
178
+ **base_path** | **String**| Filter results where base_path matches value | [optional]
176
179
  **base_path__contains** | **String**| Filter results where base_path contains value | [optional]
177
180
  **base_path__icontains** | **String**| Filter results where base_path contains value | [optional]
178
181
  **base_path__in** | [**Array&lt;String&gt;**](String.md)| Filter results where base_path is in a comma-separated list of values | [optional]
179
182
  **limit** | **Integer**| Number of results to return per page. | [optional]
180
- **name** | **String**| | [optional]
183
+ **name** | **String**| Filter results where name matches value | [optional]
181
184
  **name__contains** | **String**| Filter results where name contains value | [optional]
182
185
  **name__icontains** | **String**| Filter results where name contains value | [optional]
183
186
  **name__in** | [**Array&lt;String&gt;**](String.md)| Filter results where name is in a comma-separated list of values | [optional]
@@ -185,8 +188,11 @@ Name | Type | Description | Notes
185
188
  **offset** | **Integer**| The initial index from which to return the results. | [optional]
186
189
  **ordering** | [**Array&lt;String&gt;**](String.md)| Ordering | [optional]
187
190
  **pulp_label_select** | **String**| Filter labels by search string | [optional]
188
- **fields** | **String**| A list of fields to include in the response. | [optional]
189
- **exclude_fields** | **String**| A list of fields to exclude from the response. | [optional]
191
+ **repository** | **String**| Filter results where repository matches value | [optional]
192
+ **repository__in** | [**Array&lt;String&gt;**](String.md)| Filter results where repository is in a comma-separated list of values | [optional]
193
+ **with_content** | **String**| Filter distributions based on the content served by them | [optional]
194
+ **fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to include in the response. | [optional]
195
+ **exclude_fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to exclude from the response. | [optional]
190
196
 
191
197
  ### Return type
192
198
 
@@ -280,8 +286,8 @@ end
280
286
  api_instance = PulpNpmClient::DistributionsNpmApi.new
281
287
  npm_npm_distribution_href = 'npm_npm_distribution_href_example' # String |
282
288
  opts = {
283
- fields: 'fields_example', # String | A list of fields to include in the response.
284
- exclude_fields: 'exclude_fields_example' # String | A list of fields to exclude from the response.
289
+ fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
290
+ exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
285
291
  }
286
292
 
287
293
  begin
@@ -299,8 +305,8 @@ end
299
305
  Name | Type | Description | Notes
300
306
  ------------- | ------------- | ------------- | -------------
301
307
  **npm_npm_distribution_href** | **String**| |
302
- **fields** | **String**| A list of fields to include in the response. | [optional]
303
- **exclude_fields** | **String**| A list of fields to exclude from the response. | [optional]
308
+ **fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to include in the response. | [optional]
309
+ **exclude_fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to exclude from the response. | [optional]
304
310
 
305
311
  ### Return type
306
312
 
@@ -6,7 +6,7 @@ Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
7
  **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;) |
8
8
  **content_guard** | **String** | An optional content-guard. | [optional]
9
- **pulp_labels** | [**Object**](.md) | | [optional]
9
+ **pulp_labels** | **Hash&lt;String, String&gt;** | | [optional]
10
10
  **name** | **String** | A unique name. Ex, &#x60;rawhide&#x60; and &#x60;stable&#x60;. |
11
11
  **repository** | **String** | The latest RepositoryVersion for this Repository will be served. | [optional]
12
12
 
@@ -9,7 +9,7 @@ Name | Type | Description | Notes
9
9
  **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
10
  **base_url** | **String** | The URL for accessing the universe API as defined by this distribution. | [optional] [readonly]
11
11
  **content_guard** | **String** | An optional content-guard. | [optional]
12
- **pulp_labels** | [**Object**](.md) | | [optional]
12
+ **pulp_labels** | **Hash&lt;String, String&gt;** | | [optional]
13
13
  **name** | **String** | A unique name. Ex, &#x60;rawhide&#x60; and &#x60;stable&#x60;. |
14
14
  **repository** | **String** | The latest RepositoryVersion for this Repository will be served. | [optional]
15
15
 
data/docs/NpmNpmRemote.md CHANGED
@@ -15,7 +15,7 @@ Name | Type | Description | Notes
15
15
  **proxy_password** | **String** | The password to authenticate to the proxy. Extra leading and trailing whitespace characters are not trimmed. | [optional]
16
16
  **username** | **String** | The username to be used for authentication when syncing. | [optional]
17
17
  **password** | **String** | The password to be used for authentication when syncing. Extra leading and trailing whitespace characters are not trimmed. | [optional]
18
- **pulp_labels** | [**Object**](.md) | | [optional]
18
+ **pulp_labels** | **Hash&lt;String, String&gt;** | | [optional]
19
19
  **download_concurrency** | **Integer** | Total number of simultaneous connections. If not set then the default value will be used. | [optional]
20
20
  **max_retries** | **Integer** | Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used. | [optional]
21
21
  **policy** | [**PolicyEnum**](PolicyEnum.md) | The policy to use when downloading content. The possible values include: &#39;immediate&#39;, &#39;on_demand&#39;, and &#39;streamed&#39;. &#39;immediate&#39; is the default. | [optional]
@@ -12,7 +12,7 @@ Name | Type | Description | Notes
12
12
  **client_cert** | **String** | A PEM encoded client certificate used for authentication. | [optional]
13
13
  **tls_validation** | **Boolean** | If True, TLS peer validation must be performed. | [optional]
14
14
  **proxy_url** | **String** | The proxy URL. Format: scheme://host:port | [optional]
15
- **pulp_labels** | [**Object**](.md) | | [optional]
15
+ **pulp_labels** | **Hash&lt;String, String&gt;** | | [optional]
16
16
  **pulp_last_updated** | **DateTime** | Timestamp of the most recent update of the remote. | [optional] [readonly]
17
17
  **download_concurrency** | **Integer** | Total number of simultaneous connections. If not set then the default value will be used. | [optional]
18
18
  **max_retries** | **Integer** | Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used. | [optional]
@@ -23,6 +23,7 @@ Name | Type | Description | Notes
23
23
  **sock_read_timeout** | **Float** | aiohttp.ClientTimeout.sock_read (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used. | [optional]
24
24
  **headers** | **Array&lt;Object&gt;** | Headers for aiohttp.Clientsession | [optional]
25
25
  **rate_limit** | **Integer** | Limits requests per second for each concurrent downloader | [optional]
26
+ **hidden_fields** | [**Array&lt;NpmNpmRemoteResponseHiddenFields&gt;**](NpmNpmRemoteResponseHiddenFields.md) | List of hidden (write only) fields | [optional] [readonly]
26
27
 
27
28
  ## Code Sample
28
29
 
@@ -47,7 +48,8 @@ instance = PulpNpmClient::NpmNpmRemoteResponse.new(pulp_href: null,
47
48
  sock_connect_timeout: null,
48
49
  sock_read_timeout: null,
49
50
  headers: null,
50
- rate_limit: null)
51
+ rate_limit: null,
52
+ hidden_fields: null)
51
53
  ```
52
54
 
53
55
 
@@ -0,0 +1,19 @@
1
+ # PulpNpmClient::NpmNpmRemoteResponseHiddenFields
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **name** | **String** | | [optional]
8
+ **is_set** | **Boolean** | | [optional]
9
+
10
+ ## Code Sample
11
+
12
+ ```ruby
13
+ require 'PulpNpmClient'
14
+
15
+ instance = PulpNpmClient::NpmNpmRemoteResponseHiddenFields.new(name: null,
16
+ is_set: null)
17
+ ```
18
+
19
+
@@ -4,7 +4,7 @@
4
4
 
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
- **pulp_labels** | [**Object**](.md) | | [optional]
7
+ **pulp_labels** | **Hash&lt;String, String&gt;** | | [optional]
8
8
  **name** | **String** | A unique name for this repository. |
9
9
  **description** | **String** | An optional description. | [optional]
10
10
  **retain_repo_versions** | **Integer** | Retain X versions of the repository. Default is null which retains all versions. This is provided as a tech preview in Pulp 3 and may change in the future. | [optional]
@@ -7,7 +7,7 @@ Name | Type | Description | Notes
7
7
  **pulp_href** | **String** | | [optional] [readonly]
8
8
  **pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
9
9
  **versions_href** | **String** | | [optional] [readonly]
10
- **pulp_labels** | [**Object**](.md) | | [optional]
10
+ **pulp_labels** | **Hash&lt;String, String&gt;** | | [optional]
11
11
  **latest_version_href** | **String** | | [optional] [readonly]
12
12
  **name** | **String** | A unique name for this repository. |
13
13
  **description** | **String** | An optional description. | [optional]
@@ -6,7 +6,7 @@ Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
7
  **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;) | [optional]
8
8
  **content_guard** | **String** | An optional content-guard. | [optional]
9
- **pulp_labels** | [**Object**](.md) | | [optional]
9
+ **pulp_labels** | **Hash&lt;String, String&gt;** | | [optional]
10
10
  **name** | **String** | A unique name. Ex, &#x60;rawhide&#x60; and &#x60;stable&#x60;. | [optional]
11
11
  **repository** | **String** | The latest RepositoryVersion for this Repository will be served. | [optional]
12
12
 
@@ -15,7 +15,7 @@ Name | Type | Description | Notes
15
15
  **proxy_password** | **String** | The password to authenticate to the proxy. Extra leading and trailing whitespace characters are not trimmed. | [optional]
16
16
  **username** | **String** | The username to be used for authentication when syncing. | [optional]
17
17
  **password** | **String** | The password to be used for authentication when syncing. Extra leading and trailing whitespace characters are not trimmed. | [optional]
18
- **pulp_labels** | [**Object**](.md) | | [optional]
18
+ **pulp_labels** | **Hash&lt;String, String&gt;** | | [optional]
19
19
  **download_concurrency** | **Integer** | Total number of simultaneous connections. If not set then the default value will be used. | [optional]
20
20
  **max_retries** | **Integer** | Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used. | [optional]
21
21
  **policy** | [**PolicyEnum**](PolicyEnum.md) | The policy to use when downloading content. The possible values include: &#39;immediate&#39;, &#39;on_demand&#39;, and &#39;streamed&#39;. &#39;immediate&#39; is the default. | [optional]
@@ -4,7 +4,7 @@
4
4
 
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
- **pulp_labels** | [**Object**](.md) | | [optional]
7
+ **pulp_labels** | **Hash&lt;String, String&gt;** | | [optional]
8
8
  **name** | **String** | A unique name for this repository. | [optional]
9
9
  **description** | **String** | An optional description. | [optional]
10
10
  **retain_repo_versions** | **Integer** | Retain X versions of the repository. Default is null which retains all versions. This is provided as a tech preview in Pulp 3 and may change in the future. | [optional]
@@ -25,8 +25,8 @@ require 'pulp_npm_client'
25
25
  api_instance = PulpNpmClient::PulpNpmPackagesApi.new
26
26
  name = 'name_example' # String |
27
27
  opts = {
28
- fields: 'fields_example', # String | A list of fields to include in the response.
29
- exclude_fields: 'exclude_fields_example' # String | A list of fields to exclude from the response.
28
+ fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
29
+ exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
30
30
  }
31
31
 
32
32
  begin
@@ -42,8 +42,8 @@ end
42
42
  Name | Type | Description | Notes
43
43
  ------------- | ------------- | ------------- | -------------
44
44
  **name** | **String**| |
45
- **fields** | **String**| A list of fields to include in the response. | [optional]
46
- **exclude_fields** | **String**| A list of fields to exclude from the response. | [optional]
45
+ **fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to include in the response. | [optional]
46
+ **exclude_fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to exclude from the response. | [optional]
47
47
 
48
48
  ### Return type
49
49
 
@@ -142,7 +142,7 @@ end
142
142
  api_instance = PulpNpmClient::RemotesNpmApi.new
143
143
  opts = {
144
144
  limit: 56, # Integer | Number of results to return per page.
145
- name: 'name_example', # String |
145
+ name: 'name_example', # String | Filter results where name matches value
146
146
  name__contains: 'name__contains_example', # String | Filter results where name contains value
147
147
  name__icontains: 'name__icontains_example', # String | Filter results where name contains value
148
148
  name__in: ['name__in_example'], # Array<String> | Filter results where name is in a comma-separated list of values
@@ -150,14 +150,14 @@ opts = {
150
150
  offset: 56, # Integer | The initial index from which to return the results.
151
151
  ordering: ['ordering_example'], # Array<String> | Ordering
152
152
  pulp_label_select: 'pulp_label_select_example', # String | Filter labels by search string
153
- pulp_last_updated: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | ISO 8601 formatted dates are supported
153
+ pulp_last_updated: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where pulp_last_updated matches value
154
154
  pulp_last_updated__gt: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where pulp_last_updated is greater than value
155
155
  pulp_last_updated__gte: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where pulp_last_updated is greater than or equal to value
156
156
  pulp_last_updated__lt: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where pulp_last_updated is less than value
157
157
  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
158
158
  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
159
- fields: 'fields_example', # String | A list of fields to include in the response.
160
- exclude_fields: 'exclude_fields_example' # String | A list of fields to exclude from the response.
159
+ fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
160
+ exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
161
161
  }
162
162
 
163
163
  begin
@@ -175,7 +175,7 @@ end
175
175
  Name | Type | Description | Notes
176
176
  ------------- | ------------- | ------------- | -------------
177
177
  **limit** | **Integer**| Number of results to return per page. | [optional]
178
- **name** | **String**| | [optional]
178
+ **name** | **String**| Filter results where name matches value | [optional]
179
179
  **name__contains** | **String**| Filter results where name contains value | [optional]
180
180
  **name__icontains** | **String**| Filter results where name contains value | [optional]
181
181
  **name__in** | [**Array&lt;String&gt;**](String.md)| Filter results where name is in a comma-separated list of values | [optional]
@@ -183,14 +183,14 @@ Name | Type | Description | Notes
183
183
  **offset** | **Integer**| The initial index from which to return the results. | [optional]
184
184
  **ordering** | [**Array&lt;String&gt;**](String.md)| Ordering | [optional]
185
185
  **pulp_label_select** | **String**| Filter labels by search string | [optional]
186
- **pulp_last_updated** | **DateTime**| ISO 8601 formatted dates are supported | [optional]
186
+ **pulp_last_updated** | **DateTime**| Filter results where pulp_last_updated matches value | [optional]
187
187
  **pulp_last_updated__gt** | **DateTime**| Filter results where pulp_last_updated is greater than value | [optional]
188
188
  **pulp_last_updated__gte** | **DateTime**| Filter results where pulp_last_updated is greater than or equal to value | [optional]
189
189
  **pulp_last_updated__lt** | **DateTime**| Filter results where pulp_last_updated is less than value | [optional]
190
190
  **pulp_last_updated__lte** | **DateTime**| Filter results where pulp_last_updated is less than or equal to value | [optional]
191
191
  **pulp_last_updated__range** | [**Array&lt;DateTime&gt;**](DateTime.md)| Filter results where pulp_last_updated is between two comma separated values | [optional]
192
- **fields** | **String**| A list of fields to include in the response. | [optional]
193
- **exclude_fields** | **String**| A list of fields to exclude from the response. | [optional]
192
+ **fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to include in the response. | [optional]
193
+ **exclude_fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to exclude from the response. | [optional]
194
194
 
195
195
  ### Return type
196
196
 
@@ -284,8 +284,8 @@ end
284
284
  api_instance = PulpNpmClient::RemotesNpmApi.new
285
285
  npm_npm_remote_href = 'npm_npm_remote_href_example' # String |
286
286
  opts = {
287
- fields: 'fields_example', # String | A list of fields to include in the response.
288
- exclude_fields: 'exclude_fields_example' # String | A list of fields to exclude from the response.
287
+ fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
288
+ exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
289
289
  }
290
290
 
291
291
  begin
@@ -303,8 +303,8 @@ end
303
303
  Name | Type | Description | Notes
304
304
  ------------- | ------------- | ------------- | -------------
305
305
  **npm_npm_remote_href** | **String**| |
306
- **fields** | **String**| A list of fields to include in the response. | [optional]
307
- **exclude_fields** | **String**| A list of fields to exclude from the response. | [optional]
306
+ **fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to include in the response. | [optional]
307
+ **exclude_fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to exclude from the response. | [optional]
308
308
 
309
309
  ### Return type
310
310
 
@@ -144,7 +144,7 @@ end
144
144
  api_instance = PulpNpmClient::RepositoriesNpmApi.new
145
145
  opts = {
146
146
  limit: 56, # Integer | Number of results to return per page.
147
- name: 'name_example', # String |
147
+ name: 'name_example', # String | Filter results where name matches value
148
148
  name__contains: 'name__contains_example', # String | Filter results where name contains value
149
149
  name__icontains: 'name__icontains_example', # String | Filter results where name contains value
150
150
  name__in: ['name__in_example'], # Array<String> | Filter results where name is in a comma-separated list of values
@@ -152,8 +152,17 @@ opts = {
152
152
  offset: 56, # Integer | The initial index from which to return the results.
153
153
  ordering: ['ordering_example'], # Array<String> | Ordering
154
154
  pulp_label_select: 'pulp_label_select_example', # String | Filter labels by search string
155
- fields: 'fields_example', # String | A list of fields to include in the response.
156
- exclude_fields: 'exclude_fields_example' # String | A list of fields to exclude from the response.
155
+ remote: 'remote_example', # String | Foreign Key referenced by HREF
156
+ retain_repo_versions: 56, # Integer | Filter results where retain_repo_versions matches value
157
+ retain_repo_versions__gt: 56, # Integer | Filter results where retain_repo_versions is greater than value
158
+ retain_repo_versions__gte: 56, # Integer | Filter results where retain_repo_versions is greater than or equal to value
159
+ retain_repo_versions__isnull: true, # Boolean | Filter results where retain_repo_versions has a null value
160
+ retain_repo_versions__lt: 56, # Integer | Filter results where retain_repo_versions is less than value
161
+ retain_repo_versions__lte: 56, # Integer | Filter results where retain_repo_versions is less than or equal to value
162
+ retain_repo_versions__ne: 56, # Integer | Filter results where retain_repo_versions not equal to value
163
+ retain_repo_versions__range: [56], # Array<Integer> | Filter results where retain_repo_versions is between two comma separated values
164
+ fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
165
+ exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
157
166
  }
158
167
 
159
168
  begin
@@ -171,7 +180,7 @@ end
171
180
  Name | Type | Description | Notes
172
181
  ------------- | ------------- | ------------- | -------------
173
182
  **limit** | **Integer**| Number of results to return per page. | [optional]
174
- **name** | **String**| | [optional]
183
+ **name** | **String**| Filter results where name matches value | [optional]
175
184
  **name__contains** | **String**| Filter results where name contains value | [optional]
176
185
  **name__icontains** | **String**| Filter results where name contains value | [optional]
177
186
  **name__in** | [**Array&lt;String&gt;**](String.md)| Filter results where name is in a comma-separated list of values | [optional]
@@ -179,8 +188,17 @@ Name | Type | Description | Notes
179
188
  **offset** | **Integer**| The initial index from which to return the results. | [optional]
180
189
  **ordering** | [**Array&lt;String&gt;**](String.md)| Ordering | [optional]
181
190
  **pulp_label_select** | **String**| Filter labels by search string | [optional]
182
- **fields** | **String**| A list of fields to include in the response. | [optional]
183
- **exclude_fields** | **String**| A list of fields to exclude from the response. | [optional]
191
+ **remote** | **String**| Foreign Key referenced by HREF | [optional]
192
+ **retain_repo_versions** | **Integer**| Filter results where retain_repo_versions matches value | [optional]
193
+ **retain_repo_versions__gt** | **Integer**| Filter results where retain_repo_versions is greater than value | [optional]
194
+ **retain_repo_versions__gte** | **Integer**| Filter results where retain_repo_versions is greater than or equal to value | [optional]
195
+ **retain_repo_versions__isnull** | **Boolean**| Filter results where retain_repo_versions has a null value | [optional]
196
+ **retain_repo_versions__lt** | **Integer**| Filter results where retain_repo_versions is less than value | [optional]
197
+ **retain_repo_versions__lte** | **Integer**| Filter results where retain_repo_versions is less than or equal to value | [optional]
198
+ **retain_repo_versions__ne** | **Integer**| Filter results where retain_repo_versions not equal to value | [optional]
199
+ **retain_repo_versions__range** | [**Array&lt;Integer&gt;**](Integer.md)| Filter results where retain_repo_versions is between two comma separated values | [optional]
200
+ **fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to include in the response. | [optional]
201
+ **exclude_fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to exclude from the response. | [optional]
184
202
 
185
203
  ### Return type
186
204
 
@@ -329,8 +347,8 @@ end
329
347
  api_instance = PulpNpmClient::RepositoriesNpmApi.new
330
348
  npm_npm_repository_href = 'npm_npm_repository_href_example' # String |
331
349
  opts = {
332
- fields: 'fields_example', # String | A list of fields to include in the response.
333
- exclude_fields: 'exclude_fields_example' # String | A list of fields to exclude from the response.
350
+ fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
351
+ exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
334
352
  }
335
353
 
336
354
  begin
@@ -348,8 +366,8 @@ end
348
366
  Name | Type | Description | Notes
349
367
  ------------- | ------------- | ------------- | -------------
350
368
  **npm_npm_repository_href** | **String**| |
351
- **fields** | **String**| A list of fields to include in the response. | [optional]
352
- **exclude_fields** | **String**| A list of fields to exclude from the response. | [optional]
369
+ **fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to include in the response. | [optional]
370
+ **exclude_fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to exclude from the response. | [optional]
353
371
 
354
372
  ### Return type
355
373
 
@@ -90,7 +90,7 @@ opts = {
90
90
  content: 'content_example', # String | Content Unit referenced by HREF
91
91
  content__in: 'content__in_example', # String | Content Unit referenced by HREF
92
92
  limit: 56, # Integer | Number of results to return per page.
93
- number: 56, # Integer |
93
+ number: 56, # Integer | Filter results where number matches value
94
94
  number__gt: 56, # Integer | Filter results where number is greater than value
95
95
  number__gte: 56, # Integer | Filter results where number is greater than or equal to value
96
96
  number__lt: 56, # Integer | Filter results where number is less than value
@@ -98,14 +98,14 @@ 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
101
- pulp_created: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | ISO 8601 formatted dates are supported
101
+ pulp_created: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where pulp_created matches value
102
102
  pulp_created__gt: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where pulp_created is greater than value
103
103
  pulp_created__gte: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where pulp_created is greater than or equal to value
104
104
  pulp_created__lt: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where pulp_created is less than value
105
105
  pulp_created__lte: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where pulp_created is less than or equal to value
106
106
  pulp_created__range: [DateTime.parse('2013-10-20T19:20:30+01:00')], # Array<DateTime> | Filter results where pulp_created is between two comma separated values
107
- fields: 'fields_example', # String | A list of fields to include in the response.
108
- exclude_fields: 'exclude_fields_example' # String | A list of fields to exclude from the response.
107
+ fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
108
+ exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
109
109
  }
110
110
 
111
111
  begin
@@ -126,7 +126,7 @@ Name | Type | Description | Notes
126
126
  **content** | **String**| Content Unit referenced by HREF | [optional]
127
127
  **content__in** | **String**| Content Unit referenced by HREF | [optional]
128
128
  **limit** | **Integer**| Number of results to return per page. | [optional]
129
- **number** | **Integer**| | [optional]
129
+ **number** | **Integer**| Filter results where number matches value | [optional]
130
130
  **number__gt** | **Integer**| Filter results where number is greater than value | [optional]
131
131
  **number__gte** | **Integer**| Filter results where number is greater than or equal to value | [optional]
132
132
  **number__lt** | **Integer**| Filter results where number is less than value | [optional]
@@ -134,14 +134,14 @@ Name | Type | Description | Notes
134
134
  **number__range** | [**Array&lt;Integer&gt;**](Integer.md)| Filter results where number is between two comma separated values | [optional]
135
135
  **offset** | **Integer**| The initial index from which to return the results. | [optional]
136
136
  **ordering** | [**Array&lt;String&gt;**](String.md)| Ordering | [optional]
137
- **pulp_created** | **DateTime**| ISO 8601 formatted dates are supported | [optional]
137
+ **pulp_created** | **DateTime**| Filter results where pulp_created matches value | [optional]
138
138
  **pulp_created__gt** | **DateTime**| Filter results where pulp_created is greater than value | [optional]
139
139
  **pulp_created__gte** | **DateTime**| Filter results where pulp_created is greater than or equal to value | [optional]
140
140
  **pulp_created__lt** | **DateTime**| Filter results where pulp_created is less than value | [optional]
141
141
  **pulp_created__lte** | **DateTime**| Filter results where pulp_created is less than or equal to value | [optional]
142
142
  **pulp_created__range** | [**Array&lt;DateTime&gt;**](DateTime.md)| Filter results where pulp_created is between two comma separated values | [optional]
143
- **fields** | **String**| A list of fields to include in the response. | [optional]
144
- **exclude_fields** | **String**| A list of fields to exclude from the response. | [optional]
143
+ **fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to include in the response. | [optional]
144
+ **exclude_fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to exclude from the response. | [optional]
145
145
 
146
146
  ### Return type
147
147
 
@@ -180,8 +180,8 @@ end
180
180
  api_instance = PulpNpmClient::RepositoriesNpmVersionsApi.new
181
181
  npm_npm_repository_version_href = 'npm_npm_repository_version_href_example' # String |
182
182
  opts = {
183
- fields: 'fields_example', # String | A list of fields to include in the response.
184
- exclude_fields: 'exclude_fields_example' # String | A list of fields to exclude from the response.
183
+ fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
184
+ exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
185
185
  }
186
186
 
187
187
  begin
@@ -199,8 +199,8 @@ end
199
199
  Name | Type | Description | Notes
200
200
  ------------- | ------------- | ------------- | -------------
201
201
  **npm_npm_repository_version_href** | **String**| |
202
- **fields** | **String**| A list of fields to include in the response. | [optional]
203
- **exclude_fields** | **String**| A list of fields to exclude from the response. | [optional]
202
+ **fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to include in the response. | [optional]
203
+ **exclude_fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to exclude from the response. | [optional]
204
204
 
205
205
  ### Return type
206
206