pulp_npm_client 0.1.0a4 → 0.1.0
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.
- checksums.yaml +4 -4
- data/README.md +24 -10
- data/docs/AsyncOperationResponse.md +8 -7
- data/docs/ContentPackagesApi.md +126 -64
- data/docs/ContentSummaryResponse.md +12 -11
- data/docs/DistributionsNpmApi.md +362 -93
- data/docs/NpmNpmDistribution.md +18 -15
- data/docs/NpmNpmDistributionResponse.md +30 -21
- data/docs/NpmNpmRemote.md +48 -47
- data/docs/NpmNpmRemoteResponse.md +48 -43
- data/docs/NpmNpmRemoteResponseHiddenFieldsInner.md +20 -0
- data/docs/NpmNpmRepository.md +16 -15
- data/docs/NpmNpmRepositoryResponse.md +28 -23
- data/docs/NpmPackageResponse.md +22 -17
- data/docs/PaginatedRepositoryVersionResponseList.md +14 -13
- data/docs/PaginatednpmNpmDistributionResponseList.md +14 -13
- data/docs/PaginatednpmNpmRemoteResponseList.md +14 -13
- data/docs/PaginatednpmNpmRepositoryResponseList.md +14 -13
- data/docs/PaginatednpmPackageResponseList.md +14 -13
- data/docs/PatchednpmNpmDistribution.md +18 -15
- data/docs/PatchednpmNpmRemote.md +48 -47
- data/docs/PatchednpmNpmRepository.md +16 -15
- data/docs/PolicyEnum.md +4 -5
- data/docs/RemotesNpmApi.md +364 -99
- data/docs/Repair.md +8 -7
- data/docs/RepositoriesNpmApi.md +429 -110
- data/docs/RepositoriesNpmVersionsApi.md +156 -80
- data/docs/RepositoryAddRemoveContent.md +12 -11
- data/docs/RepositorySyncURL.md +10 -9
- data/docs/RepositoryVersionResponse.md +22 -17
- data/docs/SetLabel.md +20 -0
- data/docs/SetLabelResponse.md +20 -0
- data/docs/UnsetLabel.md +18 -0
- data/docs/UnsetLabelResponse.md +20 -0
- data/lib/pulp_npm_client/api/content_packages_api.rb +72 -44
- data/lib/pulp_npm_client/api/distributions_npm_api.rb +243 -47
- data/lib/pulp_npm_client/api/remotes_npm_api.rb +247 -57
- data/lib/pulp_npm_client/api/repositories_npm_api.rb +283 -55
- data/lib/pulp_npm_client/api/repositories_npm_versions_api.rb +71 -52
- data/lib/pulp_npm_client/api_client.rb +137 -102
- data/lib/pulp_npm_client/api_error.rb +2 -1
- data/lib/pulp_npm_client/configuration.rb +163 -22
- data/lib/pulp_npm_client/models/async_operation_response.rb +32 -22
- data/lib/pulp_npm_client/models/content_summary_response.rb +36 -22
- data/lib/pulp_npm_client/models/npm_npm_distribution.rb +51 -25
- data/lib/pulp_npm_client/models/npm_npm_distribution_response.rb +83 -27
- data/lib/pulp_npm_client/models/npm_npm_remote.rb +61 -25
- data/lib/pulp_npm_client/models/npm_npm_remote_response.rb +99 -41
- data/lib/pulp_npm_client/models/npm_npm_remote_response_hidden_fields_inner.rb +237 -0
- data/lib/pulp_npm_client/models/npm_npm_repository.rb +37 -25
- data/lib/pulp_npm_client/models/npm_npm_repository_response.rb +59 -27
- data/lib/pulp_npm_client/models/npm_package_response.rb +58 -24
- data/lib/pulp_npm_client/models/paginated_repository_version_response_list.rb +44 -22
- data/lib/pulp_npm_client/models/paginatednpm_npm_distribution_response_list.rb +44 -22
- data/lib/pulp_npm_client/models/paginatednpm_npm_remote_response_list.rb +44 -22
- data/lib/pulp_npm_client/models/paginatednpm_npm_repository_response_list.rb +44 -22
- data/lib/pulp_npm_client/models/paginatednpm_package_response_list.rb +44 -22
- data/lib/pulp_npm_client/models/patchednpm_npm_distribution.rb +57 -27
- data/lib/pulp_npm_client/models/patchednpm_npm_remote.rb +67 -27
- data/lib/pulp_npm_client/models/patchednpm_npm_repository.rb +40 -26
- data/lib/pulp_npm_client/models/policy_enum.rb +8 -4
- data/lib/pulp_npm_client/models/repair.rb +30 -22
- data/lib/pulp_npm_client/models/repository_add_remove_content.rb +33 -25
- data/lib/pulp_npm_client/models/repository_sync_url.rb +30 -22
- data/lib/pulp_npm_client/models/repository_version_response.rb +53 -25
- data/lib/pulp_npm_client/models/set_label.rb +264 -0
- data/lib/pulp_npm_client/models/set_label_response.rb +255 -0
- data/lib/pulp_npm_client/models/unset_label.rb +252 -0
- data/lib/pulp_npm_client/models/unset_label_response.rb +252 -0
- data/lib/pulp_npm_client/version.rb +2 -2
- data/lib/pulp_npm_client.rb +6 -3
- data/pulp_npm_client.gemspec +10 -7
- data/spec/api/content_packages_api_spec.rb +22 -16
- data/spec/api/distributions_npm_api_spec.rb +51 -14
- data/spec/api/remotes_npm_api_spec.rb +54 -19
- data/spec/api/repositories_npm_api_spec.rb +60 -15
- data/spec/api/repositories_npm_versions_api_spec.rb +23 -19
- data/spec/models/async_operation_response_spec.rb +7 -12
- data/spec/models/content_summary_response_spec.rb +9 -14
- data/spec/models/npm_npm_distribution_response_spec.rb +38 -19
- data/spec/models/npm_npm_distribution_spec.rb +17 -16
- data/spec/models/npm_npm_remote_response_hidden_fields_inner_spec.rb +42 -0
- data/spec/models/npm_npm_remote_response_spec.rb +42 -35
- data/spec/models/npm_npm_remote_spec.rb +27 -32
- data/spec/models/npm_npm_repository_response_spec.rb +27 -20
- data/spec/models/npm_npm_repository_spec.rb +11 -16
- data/spec/models/npm_package_response_spec.rb +24 -17
- data/spec/models/paginated_repository_version_response_list_spec.rb +10 -15
- data/spec/models/paginatednpm_npm_distribution_response_list_spec.rb +10 -15
- data/spec/models/paginatednpm_npm_remote_response_list_spec.rb +10 -15
- data/spec/models/paginatednpm_npm_repository_response_list_spec.rb +10 -15
- data/spec/models/paginatednpm_package_response_list_spec.rb +10 -15
- data/spec/models/patchednpm_npm_distribution_spec.rb +17 -16
- data/spec/models/patchednpm_npm_remote_spec.rb +27 -32
- data/spec/models/patchednpm_npm_repository_spec.rb +11 -16
- data/spec/models/policy_enum_spec.rb +6 -11
- data/spec/models/repair_spec.rb +7 -12
- data/spec/models/repository_add_remove_content_spec.rb +9 -14
- data/spec/models/repository_sync_url_spec.rb +8 -13
- data/spec/models/repository_version_response_spec.rb +24 -17
- data/spec/models/set_label_response_spec.rb +42 -0
- data/spec/models/set_label_spec.rb +42 -0
- data/spec/models/unset_label_response_spec.rb +42 -0
- data/spec/models/unset_label_spec.rb +36 -0
- data/spec/spec_helper.rb +1 -1
- metadata +94 -59
- data/docs/NpmPackage.md +0 -29
- data/docs/PulpNpmPackagesApi.md +0 -60
- data/git_push.sh +0 -58
- data/lib/pulp_npm_client/api/pulp_npm_packages_api.rb +0 -86
- data/lib/pulp_npm_client/models/npm_package.rb +0 -337
- data/spec/api/pulp_npm_packages_api_spec.rb +0 -48
- data/spec/api_client_spec.rb +0 -188
- data/spec/configuration_spec.rb +0 -42
- data/spec/models/npm_package_spec.rb +0 -77
data/docs/RemotesNpmApi.md
CHANGED
|
@@ -1,30 +1,31 @@
|
|
|
1
1
|
# PulpNpmClient::RemotesNpmApi
|
|
2
2
|
|
|
3
|
-
All URIs are relative to *
|
|
4
|
-
|
|
5
|
-
Method | HTTP request | Description
|
|
6
|
-
------------- | ------------- | -------------
|
|
7
|
-
[**create**](RemotesNpmApi.md#create) | **POST** /pulp/api/v3/remotes/npm/npm/ | Create a npm remote
|
|
8
|
-
[**delete**](RemotesNpmApi.md#delete) | **DELETE** {npm_npm_remote_href} | Delete a npm remote
|
|
9
|
-
[**list**](RemotesNpmApi.md#list) | **GET** /pulp/api/v3/remotes/npm/npm/ | List npm remotes
|
|
10
|
-
[**partial_update**](RemotesNpmApi.md#partial_update) | **PATCH** {npm_npm_remote_href} | Update a npm remote
|
|
11
|
-
[**read**](RemotesNpmApi.md#read) | **GET** {npm_npm_remote_href} | Inspect a npm remote
|
|
12
|
-
[**update**](RemotesNpmApi.md#update) | **PUT** {npm_npm_remote_href} | Update a npm remote
|
|
3
|
+
All URIs are relative to *http://localhost:24817*
|
|
13
4
|
|
|
5
|
+
| Method | HTTP request | Description |
|
|
6
|
+
| ------ | ------------ | ----------- |
|
|
7
|
+
| [**create**](RemotesNpmApi.md#create) | **POST** /pulp/api/v3/remotes/npm/npm/ | Create a npm remote |
|
|
8
|
+
| [**delete**](RemotesNpmApi.md#delete) | **DELETE** {npm_npm_remote_href} | Delete a npm remote |
|
|
9
|
+
| [**list**](RemotesNpmApi.md#list) | **GET** /pulp/api/v3/remotes/npm/npm/ | List npm remotes |
|
|
10
|
+
| [**partial_update**](RemotesNpmApi.md#partial_update) | **PATCH** {npm_npm_remote_href} | Update a npm remote |
|
|
11
|
+
| [**read**](RemotesNpmApi.md#read) | **GET** {npm_npm_remote_href} | Inspect a npm remote |
|
|
12
|
+
| [**set_label**](RemotesNpmApi.md#set_label) | **POST** {npm_npm_remote_href}set_label/ | Set a label |
|
|
13
|
+
| [**unset_label**](RemotesNpmApi.md#unset_label) | **POST** {npm_npm_remote_href}unset_label/ | Unset a label |
|
|
14
|
+
| [**update**](RemotesNpmApi.md#update) | **PUT** {npm_npm_remote_href} | Update a npm remote |
|
|
14
15
|
|
|
15
16
|
|
|
16
17
|
## create
|
|
17
18
|
|
|
18
|
-
> NpmNpmRemoteResponse create(npm_npm_remote)
|
|
19
|
+
> <NpmNpmRemoteResponse> create(npm_npm_remote)
|
|
19
20
|
|
|
20
21
|
Create a npm remote
|
|
21
22
|
|
|
22
23
|
A ViewSet for NpmRemote. Similar to the PackageViewSet above, define endpoint_name, queryset and serializer, at a minimum.
|
|
23
24
|
|
|
24
|
-
###
|
|
25
|
+
### Examples
|
|
25
26
|
|
|
26
27
|
```ruby
|
|
27
|
-
|
|
28
|
+
require 'time'
|
|
28
29
|
require 'pulp_npm_client'
|
|
29
30
|
# setup authorization
|
|
30
31
|
PulpNpmClient.configure do |config|
|
|
@@ -34,23 +35,40 @@ PulpNpmClient.configure do |config|
|
|
|
34
35
|
end
|
|
35
36
|
|
|
36
37
|
api_instance = PulpNpmClient::RemotesNpmApi.new
|
|
37
|
-
npm_npm_remote = PulpNpmClient::NpmNpmRemote.new # NpmNpmRemote |
|
|
38
|
+
npm_npm_remote = PulpNpmClient::NpmNpmRemote.new({name: 'name_example', url: 'url_example'}) # NpmNpmRemote |
|
|
38
39
|
|
|
39
40
|
begin
|
|
40
|
-
#Create a npm remote
|
|
41
|
+
# Create a npm remote
|
|
41
42
|
result = api_instance.create(npm_npm_remote)
|
|
42
43
|
p result
|
|
43
44
|
rescue PulpNpmClient::ApiError => e
|
|
44
|
-
puts "
|
|
45
|
+
puts "Error when calling RemotesNpmApi->create: #{e}"
|
|
45
46
|
end
|
|
46
47
|
```
|
|
47
48
|
|
|
48
|
-
|
|
49
|
+
#### Using the create_with_http_info variant
|
|
50
|
+
|
|
51
|
+
This returns an Array which contains the response data, status code and headers.
|
|
52
|
+
|
|
53
|
+
> <Array(<NpmNpmRemoteResponse>, Integer, Hash)> create_with_http_info(npm_npm_remote)
|
|
54
|
+
|
|
55
|
+
```ruby
|
|
56
|
+
begin
|
|
57
|
+
# Create a npm remote
|
|
58
|
+
data, status_code, headers = api_instance.create_with_http_info(npm_npm_remote)
|
|
59
|
+
p status_code # => 2xx
|
|
60
|
+
p headers # => { ... }
|
|
61
|
+
p data # => <NpmNpmRemoteResponse>
|
|
62
|
+
rescue PulpNpmClient::ApiError => e
|
|
63
|
+
puts "Error when calling RemotesNpmApi->create_with_http_info: #{e}"
|
|
64
|
+
end
|
|
65
|
+
```
|
|
49
66
|
|
|
67
|
+
### Parameters
|
|
50
68
|
|
|
51
|
-
Name | Type | Description
|
|
52
|
-
|
|
53
|
-
**npm_npm_remote** | [**NpmNpmRemote**](NpmNpmRemote.md)| |
|
|
69
|
+
| Name | Type | Description | Notes |
|
|
70
|
+
| ---- | ---- | ----------- | ----- |
|
|
71
|
+
| **npm_npm_remote** | [**NpmNpmRemote**](NpmNpmRemote.md) | | |
|
|
54
72
|
|
|
55
73
|
### Return type
|
|
56
74
|
|
|
@@ -68,16 +86,16 @@ Name | Type | Description | Notes
|
|
|
68
86
|
|
|
69
87
|
## delete
|
|
70
88
|
|
|
71
|
-
> AsyncOperationResponse delete(npm_npm_remote_href)
|
|
89
|
+
> <AsyncOperationResponse> delete(npm_npm_remote_href)
|
|
72
90
|
|
|
73
91
|
Delete a npm remote
|
|
74
92
|
|
|
75
93
|
Trigger an asynchronous delete task
|
|
76
94
|
|
|
77
|
-
###
|
|
95
|
+
### Examples
|
|
78
96
|
|
|
79
97
|
```ruby
|
|
80
|
-
|
|
98
|
+
require 'time'
|
|
81
99
|
require 'pulp_npm_client'
|
|
82
100
|
# setup authorization
|
|
83
101
|
PulpNpmClient.configure do |config|
|
|
@@ -90,20 +108,37 @@ api_instance = PulpNpmClient::RemotesNpmApi.new
|
|
|
90
108
|
npm_npm_remote_href = 'npm_npm_remote_href_example' # String |
|
|
91
109
|
|
|
92
110
|
begin
|
|
93
|
-
#Delete a npm remote
|
|
111
|
+
# Delete a npm remote
|
|
94
112
|
result = api_instance.delete(npm_npm_remote_href)
|
|
95
113
|
p result
|
|
96
114
|
rescue PulpNpmClient::ApiError => e
|
|
97
|
-
puts "
|
|
115
|
+
puts "Error when calling RemotesNpmApi->delete: #{e}"
|
|
98
116
|
end
|
|
99
117
|
```
|
|
100
118
|
|
|
101
|
-
|
|
119
|
+
#### Using the delete_with_http_info variant
|
|
120
|
+
|
|
121
|
+
This returns an Array which contains the response data, status code and headers.
|
|
122
|
+
|
|
123
|
+
> <Array(<AsyncOperationResponse>, Integer, Hash)> delete_with_http_info(npm_npm_remote_href)
|
|
124
|
+
|
|
125
|
+
```ruby
|
|
126
|
+
begin
|
|
127
|
+
# Delete a npm remote
|
|
128
|
+
data, status_code, headers = api_instance.delete_with_http_info(npm_npm_remote_href)
|
|
129
|
+
p status_code # => 2xx
|
|
130
|
+
p headers # => { ... }
|
|
131
|
+
p data # => <AsyncOperationResponse>
|
|
132
|
+
rescue PulpNpmClient::ApiError => e
|
|
133
|
+
puts "Error when calling RemotesNpmApi->delete_with_http_info: #{e}"
|
|
134
|
+
end
|
|
135
|
+
```
|
|
102
136
|
|
|
137
|
+
### Parameters
|
|
103
138
|
|
|
104
|
-
Name | Type | Description
|
|
105
|
-
|
|
106
|
-
**npm_npm_remote_href** | **String
|
|
139
|
+
| Name | Type | Description | Notes |
|
|
140
|
+
| ---- | ---- | ----------- | ----- |
|
|
141
|
+
| **npm_npm_remote_href** | **String** | | |
|
|
107
142
|
|
|
108
143
|
### Return type
|
|
109
144
|
|
|
@@ -121,16 +156,16 @@ Name | Type | Description | Notes
|
|
|
121
156
|
|
|
122
157
|
## list
|
|
123
158
|
|
|
124
|
-
> PaginatednpmNpmRemoteResponseList list(opts)
|
|
159
|
+
> <PaginatednpmNpmRemoteResponseList> list(opts)
|
|
125
160
|
|
|
126
161
|
List npm remotes
|
|
127
162
|
|
|
128
163
|
A ViewSet for NpmRemote. Similar to the PackageViewSet above, define endpoint_name, queryset and serializer, at a minimum.
|
|
129
164
|
|
|
130
|
-
###
|
|
165
|
+
### Examples
|
|
131
166
|
|
|
132
167
|
```ruby
|
|
133
|
-
|
|
168
|
+
require 'time'
|
|
134
169
|
require 'pulp_npm_client'
|
|
135
170
|
# setup authorization
|
|
136
171
|
PulpNpmClient.configure do |config|
|
|
@@ -142,55 +177,90 @@ end
|
|
|
142
177
|
api_instance = PulpNpmClient::RemotesNpmApi.new
|
|
143
178
|
opts = {
|
|
144
179
|
limit: 56, # Integer | Number of results to return per page.
|
|
145
|
-
name: 'name_example', # String |
|
|
180
|
+
name: 'name_example', # String | Filter results where name matches value
|
|
146
181
|
name__contains: 'name__contains_example', # String | Filter results where name contains value
|
|
147
182
|
name__icontains: 'name__icontains_example', # String | Filter results where name contains value
|
|
148
|
-
|
|
183
|
+
name__iexact: 'name__iexact_example', # String | Filter results where name matches value
|
|
184
|
+
name__in: ['inner_example'], # Array<String> | Filter results where name is in a comma-separated list of values
|
|
185
|
+
name__iregex: 'name__iregex_example', # String | Filter results where name matches regex value
|
|
186
|
+
name__istartswith: 'name__istartswith_example', # String | Filter results where name starts with value
|
|
187
|
+
name__regex: 'name__regex_example', # String | Filter results where name matches regex value
|
|
149
188
|
name__startswith: 'name__startswith_example', # String | Filter results where name starts with value
|
|
150
189
|
offset: 56, # Integer | The initial index from which to return the results.
|
|
151
|
-
ordering: ['
|
|
190
|
+
ordering: ['-ca_cert'], # 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)
|
|
191
|
+
prn__in: ['inner_example'], # Array<String> | Multiple values may be separated by commas.
|
|
192
|
+
pulp_href__in: ['inner_example'], # Array<String> | Multiple values may be separated by commas.
|
|
193
|
+
pulp_id__in: ['inner_example'], # Array<String> | Multiple values may be separated by commas.
|
|
152
194
|
pulp_label_select: 'pulp_label_select_example', # String | Filter labels by search string
|
|
153
|
-
pulp_last_updated:
|
|
154
|
-
pulp_last_updated__gt:
|
|
155
|
-
pulp_last_updated__gte:
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
195
|
+
pulp_last_updated: Time.parse('2013-10-20T19:20:30+01:00'), # Time | Filter results where pulp_last_updated matches value
|
|
196
|
+
pulp_last_updated__gt: Time.parse('2013-10-20T19:20:30+01:00'), # Time | Filter results where pulp_last_updated is greater than value
|
|
197
|
+
pulp_last_updated__gte: Time.parse('2013-10-20T19:20:30+01:00'), # Time | Filter results where pulp_last_updated is greater than or equal to value
|
|
198
|
+
pulp_last_updated__isnull: true, # Boolean | Filter results where pulp_last_updated has a null value
|
|
199
|
+
pulp_last_updated__lt: Time.parse('2013-10-20T19:20:30+01:00'), # Time | Filter results where pulp_last_updated is less than value
|
|
200
|
+
pulp_last_updated__lte: Time.parse('2013-10-20T19:20:30+01:00'), # Time | Filter results where pulp_last_updated is less than or equal to value
|
|
201
|
+
pulp_last_updated__range: [Time.now], # Array<Time> | Filter results where pulp_last_updated is between two comma separated values
|
|
202
|
+
q: 'q_example', # String | Filter results by using NOT, AND and OR operations on other filters
|
|
203
|
+
fields: ['inner_example'], # Array<String> | A list of fields to include in the response.
|
|
204
|
+
exclude_fields: ['inner_example'] # Array<String> | A list of fields to exclude from the response.
|
|
161
205
|
}
|
|
162
206
|
|
|
163
207
|
begin
|
|
164
|
-
#List npm remotes
|
|
208
|
+
# List npm remotes
|
|
165
209
|
result = api_instance.list(opts)
|
|
166
210
|
p result
|
|
167
211
|
rescue PulpNpmClient::ApiError => e
|
|
168
|
-
puts "
|
|
212
|
+
puts "Error when calling RemotesNpmApi->list: #{e}"
|
|
169
213
|
end
|
|
170
214
|
```
|
|
171
215
|
|
|
172
|
-
|
|
216
|
+
#### Using the list_with_http_info variant
|
|
217
|
+
|
|
218
|
+
This returns an Array which contains the response data, status code and headers.
|
|
219
|
+
|
|
220
|
+
> <Array(<PaginatednpmNpmRemoteResponseList>, Integer, Hash)> list_with_http_info(opts)
|
|
221
|
+
|
|
222
|
+
```ruby
|
|
223
|
+
begin
|
|
224
|
+
# List npm remotes
|
|
225
|
+
data, status_code, headers = api_instance.list_with_http_info(opts)
|
|
226
|
+
p status_code # => 2xx
|
|
227
|
+
p headers # => { ... }
|
|
228
|
+
p data # => <PaginatednpmNpmRemoteResponseList>
|
|
229
|
+
rescue PulpNpmClient::ApiError => e
|
|
230
|
+
puts "Error when calling RemotesNpmApi->list_with_http_info: #{e}"
|
|
231
|
+
end
|
|
232
|
+
```
|
|
173
233
|
|
|
234
|
+
### Parameters
|
|
174
235
|
|
|
175
|
-
Name | Type | Description
|
|
176
|
-
|
|
177
|
-
**limit** | **Integer
|
|
178
|
-
**name** | **String
|
|
179
|
-
**name__contains** | **String
|
|
180
|
-
**name__icontains** | **String
|
|
181
|
-
**
|
|
182
|
-
**
|
|
183
|
-
**
|
|
184
|
-
**
|
|
185
|
-
**
|
|
186
|
-
**
|
|
187
|
-
**
|
|
188
|
-
**
|
|
189
|
-
**
|
|
190
|
-
**
|
|
191
|
-
**
|
|
192
|
-
**
|
|
193
|
-
**
|
|
236
|
+
| Name | Type | Description | Notes |
|
|
237
|
+
| ---- | ---- | ----------- | ----- |
|
|
238
|
+
| **limit** | **Integer** | Number of results to return per page. | [optional] |
|
|
239
|
+
| **name** | **String** | Filter results where name matches value | [optional] |
|
|
240
|
+
| **name__contains** | **String** | Filter results where name contains value | [optional] |
|
|
241
|
+
| **name__icontains** | **String** | Filter results where name contains value | [optional] |
|
|
242
|
+
| **name__iexact** | **String** | Filter results where name matches value | [optional] |
|
|
243
|
+
| **name__in** | [**Array<String>**](String.md) | Filter results where name is in a comma-separated list of values | [optional] |
|
|
244
|
+
| **name__iregex** | **String** | Filter results where name matches regex value | [optional] |
|
|
245
|
+
| **name__istartswith** | **String** | Filter results where name starts with value | [optional] |
|
|
246
|
+
| **name__regex** | **String** | Filter results where name matches regex value | [optional] |
|
|
247
|
+
| **name__startswith** | **String** | Filter results where name starts with value | [optional] |
|
|
248
|
+
| **offset** | **Integer** | The initial index from which to return the results. | [optional] |
|
|
249
|
+
| **ordering** | [**Array<String>**](String.md) | 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) | [optional] |
|
|
250
|
+
| **prn__in** | [**Array<String>**](String.md) | Multiple values may be separated by commas. | [optional] |
|
|
251
|
+
| **pulp_href__in** | [**Array<String>**](String.md) | Multiple values may be separated by commas. | [optional] |
|
|
252
|
+
| **pulp_id__in** | [**Array<String>**](String.md) | Multiple values may be separated by commas. | [optional] |
|
|
253
|
+
| **pulp_label_select** | **String** | Filter labels by search string | [optional] |
|
|
254
|
+
| **pulp_last_updated** | **Time** | Filter results where pulp_last_updated matches value | [optional] |
|
|
255
|
+
| **pulp_last_updated__gt** | **Time** | Filter results where pulp_last_updated is greater than value | [optional] |
|
|
256
|
+
| **pulp_last_updated__gte** | **Time** | Filter results where pulp_last_updated is greater than or equal to value | [optional] |
|
|
257
|
+
| **pulp_last_updated__isnull** | **Boolean** | Filter results where pulp_last_updated has a null value | [optional] |
|
|
258
|
+
| **pulp_last_updated__lt** | **Time** | Filter results where pulp_last_updated is less than value | [optional] |
|
|
259
|
+
| **pulp_last_updated__lte** | **Time** | Filter results where pulp_last_updated is less than or equal to value | [optional] |
|
|
260
|
+
| **pulp_last_updated__range** | [**Array<Time>**](Time.md) | Filter results where pulp_last_updated is between two comma separated values | [optional] |
|
|
261
|
+
| **q** | **String** | Filter results by using NOT, AND and OR operations on other filters | [optional] |
|
|
262
|
+
| **fields** | [**Array<String>**](String.md) | A list of fields to include in the response. | [optional] |
|
|
263
|
+
| **exclude_fields** | [**Array<String>**](String.md) | A list of fields to exclude from the response. | [optional] |
|
|
194
264
|
|
|
195
265
|
### Return type
|
|
196
266
|
|
|
@@ -208,16 +278,16 @@ Name | Type | Description | Notes
|
|
|
208
278
|
|
|
209
279
|
## partial_update
|
|
210
280
|
|
|
211
|
-
> AsyncOperationResponse partial_update(npm_npm_remote_href, patchednpm_npm_remote)
|
|
281
|
+
> <AsyncOperationResponse> partial_update(npm_npm_remote_href, patchednpm_npm_remote)
|
|
212
282
|
|
|
213
283
|
Update a npm remote
|
|
214
284
|
|
|
215
285
|
Trigger an asynchronous partial update task
|
|
216
286
|
|
|
217
|
-
###
|
|
287
|
+
### Examples
|
|
218
288
|
|
|
219
289
|
```ruby
|
|
220
|
-
|
|
290
|
+
require 'time'
|
|
221
291
|
require 'pulp_npm_client'
|
|
222
292
|
# setup authorization
|
|
223
293
|
PulpNpmClient.configure do |config|
|
|
@@ -231,21 +301,38 @@ npm_npm_remote_href = 'npm_npm_remote_href_example' # String |
|
|
|
231
301
|
patchednpm_npm_remote = PulpNpmClient::PatchednpmNpmRemote.new # PatchednpmNpmRemote |
|
|
232
302
|
|
|
233
303
|
begin
|
|
234
|
-
#Update a npm remote
|
|
304
|
+
# Update a npm remote
|
|
235
305
|
result = api_instance.partial_update(npm_npm_remote_href, patchednpm_npm_remote)
|
|
236
306
|
p result
|
|
237
307
|
rescue PulpNpmClient::ApiError => e
|
|
238
|
-
puts "
|
|
308
|
+
puts "Error when calling RemotesNpmApi->partial_update: #{e}"
|
|
239
309
|
end
|
|
240
310
|
```
|
|
241
311
|
|
|
242
|
-
|
|
312
|
+
#### Using the partial_update_with_http_info variant
|
|
313
|
+
|
|
314
|
+
This returns an Array which contains the response data, status code and headers.
|
|
243
315
|
|
|
316
|
+
> <Array(<AsyncOperationResponse>, Integer, Hash)> partial_update_with_http_info(npm_npm_remote_href, patchednpm_npm_remote)
|
|
317
|
+
|
|
318
|
+
```ruby
|
|
319
|
+
begin
|
|
320
|
+
# Update a npm remote
|
|
321
|
+
data, status_code, headers = api_instance.partial_update_with_http_info(npm_npm_remote_href, patchednpm_npm_remote)
|
|
322
|
+
p status_code # => 2xx
|
|
323
|
+
p headers # => { ... }
|
|
324
|
+
p data # => <AsyncOperationResponse>
|
|
325
|
+
rescue PulpNpmClient::ApiError => e
|
|
326
|
+
puts "Error when calling RemotesNpmApi->partial_update_with_http_info: #{e}"
|
|
327
|
+
end
|
|
328
|
+
```
|
|
244
329
|
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
330
|
+
### Parameters
|
|
331
|
+
|
|
332
|
+
| Name | Type | Description | Notes |
|
|
333
|
+
| ---- | ---- | ----------- | ----- |
|
|
334
|
+
| **npm_npm_remote_href** | **String** | | |
|
|
335
|
+
| **patchednpm_npm_remote** | [**PatchednpmNpmRemote**](PatchednpmNpmRemote.md) | | |
|
|
249
336
|
|
|
250
337
|
### Return type
|
|
251
338
|
|
|
@@ -263,16 +350,16 @@ Name | Type | Description | Notes
|
|
|
263
350
|
|
|
264
351
|
## read
|
|
265
352
|
|
|
266
|
-
> NpmNpmRemoteResponse read(npm_npm_remote_href, opts)
|
|
353
|
+
> <NpmNpmRemoteResponse> read(npm_npm_remote_href, opts)
|
|
267
354
|
|
|
268
355
|
Inspect a npm remote
|
|
269
356
|
|
|
270
357
|
A ViewSet for NpmRemote. Similar to the PackageViewSet above, define endpoint_name, queryset and serializer, at a minimum.
|
|
271
358
|
|
|
272
|
-
###
|
|
359
|
+
### Examples
|
|
273
360
|
|
|
274
361
|
```ruby
|
|
275
|
-
|
|
362
|
+
require 'time'
|
|
276
363
|
require 'pulp_npm_client'
|
|
277
364
|
# setup authorization
|
|
278
365
|
PulpNpmClient.configure do |config|
|
|
@@ -284,27 +371,44 @@ end
|
|
|
284
371
|
api_instance = PulpNpmClient::RemotesNpmApi.new
|
|
285
372
|
npm_npm_remote_href = 'npm_npm_remote_href_example' # String |
|
|
286
373
|
opts = {
|
|
287
|
-
fields: '
|
|
288
|
-
exclude_fields: '
|
|
374
|
+
fields: ['inner_example'], # Array<String> | A list of fields to include in the response.
|
|
375
|
+
exclude_fields: ['inner_example'] # Array<String> | A list of fields to exclude from the response.
|
|
289
376
|
}
|
|
290
377
|
|
|
291
378
|
begin
|
|
292
|
-
#Inspect a npm remote
|
|
379
|
+
# Inspect a npm remote
|
|
293
380
|
result = api_instance.read(npm_npm_remote_href, opts)
|
|
294
381
|
p result
|
|
295
382
|
rescue PulpNpmClient::ApiError => e
|
|
296
|
-
puts "
|
|
383
|
+
puts "Error when calling RemotesNpmApi->read: #{e}"
|
|
297
384
|
end
|
|
298
385
|
```
|
|
299
386
|
|
|
300
|
-
|
|
387
|
+
#### Using the read_with_http_info variant
|
|
388
|
+
|
|
389
|
+
This returns an Array which contains the response data, status code and headers.
|
|
390
|
+
|
|
391
|
+
> <Array(<NpmNpmRemoteResponse>, Integer, Hash)> read_with_http_info(npm_npm_remote_href, opts)
|
|
392
|
+
|
|
393
|
+
```ruby
|
|
394
|
+
begin
|
|
395
|
+
# Inspect a npm remote
|
|
396
|
+
data, status_code, headers = api_instance.read_with_http_info(npm_npm_remote_href, opts)
|
|
397
|
+
p status_code # => 2xx
|
|
398
|
+
p headers # => { ... }
|
|
399
|
+
p data # => <NpmNpmRemoteResponse>
|
|
400
|
+
rescue PulpNpmClient::ApiError => e
|
|
401
|
+
puts "Error when calling RemotesNpmApi->read_with_http_info: #{e}"
|
|
402
|
+
end
|
|
403
|
+
```
|
|
301
404
|
|
|
405
|
+
### Parameters
|
|
302
406
|
|
|
303
|
-
Name | Type | Description
|
|
304
|
-
|
|
305
|
-
**npm_npm_remote_href** | **String
|
|
306
|
-
**fields** | **String
|
|
307
|
-
**exclude_fields** | **String
|
|
407
|
+
| Name | Type | Description | Notes |
|
|
408
|
+
| ---- | ---- | ----------- | ----- |
|
|
409
|
+
| **npm_npm_remote_href** | **String** | | |
|
|
410
|
+
| **fields** | [**Array<String>**](String.md) | A list of fields to include in the response. | [optional] |
|
|
411
|
+
| **exclude_fields** | [**Array<String>**](String.md) | A list of fields to exclude from the response. | [optional] |
|
|
308
412
|
|
|
309
413
|
### Return type
|
|
310
414
|
|
|
@@ -320,18 +424,162 @@ Name | Type | Description | Notes
|
|
|
320
424
|
- **Accept**: application/json
|
|
321
425
|
|
|
322
426
|
|
|
427
|
+
## set_label
|
|
428
|
+
|
|
429
|
+
> <SetLabelResponse> set_label(npm_npm_remote_href, set_label)
|
|
430
|
+
|
|
431
|
+
Set a label
|
|
432
|
+
|
|
433
|
+
Set a single pulp_label on the object to a specific value or null.
|
|
434
|
+
|
|
435
|
+
### Examples
|
|
436
|
+
|
|
437
|
+
```ruby
|
|
438
|
+
require 'time'
|
|
439
|
+
require 'pulp_npm_client'
|
|
440
|
+
# setup authorization
|
|
441
|
+
PulpNpmClient.configure do |config|
|
|
442
|
+
# Configure HTTP basic authorization: basicAuth
|
|
443
|
+
config.username = 'YOUR USERNAME'
|
|
444
|
+
config.password = 'YOUR PASSWORD'
|
|
445
|
+
end
|
|
446
|
+
|
|
447
|
+
api_instance = PulpNpmClient::RemotesNpmApi.new
|
|
448
|
+
npm_npm_remote_href = 'npm_npm_remote_href_example' # String |
|
|
449
|
+
set_label = PulpNpmClient::SetLabel.new({key: 'key_example', value: 'value_example'}) # SetLabel |
|
|
450
|
+
|
|
451
|
+
begin
|
|
452
|
+
# Set a label
|
|
453
|
+
result = api_instance.set_label(npm_npm_remote_href, set_label)
|
|
454
|
+
p result
|
|
455
|
+
rescue PulpNpmClient::ApiError => e
|
|
456
|
+
puts "Error when calling RemotesNpmApi->set_label: #{e}"
|
|
457
|
+
end
|
|
458
|
+
```
|
|
459
|
+
|
|
460
|
+
#### Using the set_label_with_http_info variant
|
|
461
|
+
|
|
462
|
+
This returns an Array which contains the response data, status code and headers.
|
|
463
|
+
|
|
464
|
+
> <Array(<SetLabelResponse>, Integer, Hash)> set_label_with_http_info(npm_npm_remote_href, set_label)
|
|
465
|
+
|
|
466
|
+
```ruby
|
|
467
|
+
begin
|
|
468
|
+
# Set a label
|
|
469
|
+
data, status_code, headers = api_instance.set_label_with_http_info(npm_npm_remote_href, set_label)
|
|
470
|
+
p status_code # => 2xx
|
|
471
|
+
p headers # => { ... }
|
|
472
|
+
p data # => <SetLabelResponse>
|
|
473
|
+
rescue PulpNpmClient::ApiError => e
|
|
474
|
+
puts "Error when calling RemotesNpmApi->set_label_with_http_info: #{e}"
|
|
475
|
+
end
|
|
476
|
+
```
|
|
477
|
+
|
|
478
|
+
### Parameters
|
|
479
|
+
|
|
480
|
+
| Name | Type | Description | Notes |
|
|
481
|
+
| ---- | ---- | ----------- | ----- |
|
|
482
|
+
| **npm_npm_remote_href** | **String** | | |
|
|
483
|
+
| **set_label** | [**SetLabel**](SetLabel.md) | | |
|
|
484
|
+
|
|
485
|
+
### Return type
|
|
486
|
+
|
|
487
|
+
[**SetLabelResponse**](SetLabelResponse.md)
|
|
488
|
+
|
|
489
|
+
### Authorization
|
|
490
|
+
|
|
491
|
+
[basicAuth](../README.md#basicAuth)
|
|
492
|
+
|
|
493
|
+
### HTTP request headers
|
|
494
|
+
|
|
495
|
+
- **Content-Type**: application/json, application/x-www-form-urlencoded, multipart/form-data
|
|
496
|
+
- **Accept**: application/json
|
|
497
|
+
|
|
498
|
+
|
|
499
|
+
## unset_label
|
|
500
|
+
|
|
501
|
+
> <UnsetLabelResponse> unset_label(npm_npm_remote_href, unset_label)
|
|
502
|
+
|
|
503
|
+
Unset a label
|
|
504
|
+
|
|
505
|
+
Unset a single pulp_label on the object.
|
|
506
|
+
|
|
507
|
+
### Examples
|
|
508
|
+
|
|
509
|
+
```ruby
|
|
510
|
+
require 'time'
|
|
511
|
+
require 'pulp_npm_client'
|
|
512
|
+
# setup authorization
|
|
513
|
+
PulpNpmClient.configure do |config|
|
|
514
|
+
# Configure HTTP basic authorization: basicAuth
|
|
515
|
+
config.username = 'YOUR USERNAME'
|
|
516
|
+
config.password = 'YOUR PASSWORD'
|
|
517
|
+
end
|
|
518
|
+
|
|
519
|
+
api_instance = PulpNpmClient::RemotesNpmApi.new
|
|
520
|
+
npm_npm_remote_href = 'npm_npm_remote_href_example' # String |
|
|
521
|
+
unset_label = PulpNpmClient::UnsetLabel.new({key: 'key_example'}) # UnsetLabel |
|
|
522
|
+
|
|
523
|
+
begin
|
|
524
|
+
# Unset a label
|
|
525
|
+
result = api_instance.unset_label(npm_npm_remote_href, unset_label)
|
|
526
|
+
p result
|
|
527
|
+
rescue PulpNpmClient::ApiError => e
|
|
528
|
+
puts "Error when calling RemotesNpmApi->unset_label: #{e}"
|
|
529
|
+
end
|
|
530
|
+
```
|
|
531
|
+
|
|
532
|
+
#### Using the unset_label_with_http_info variant
|
|
533
|
+
|
|
534
|
+
This returns an Array which contains the response data, status code and headers.
|
|
535
|
+
|
|
536
|
+
> <Array(<UnsetLabelResponse>, Integer, Hash)> unset_label_with_http_info(npm_npm_remote_href, unset_label)
|
|
537
|
+
|
|
538
|
+
```ruby
|
|
539
|
+
begin
|
|
540
|
+
# Unset a label
|
|
541
|
+
data, status_code, headers = api_instance.unset_label_with_http_info(npm_npm_remote_href, unset_label)
|
|
542
|
+
p status_code # => 2xx
|
|
543
|
+
p headers # => { ... }
|
|
544
|
+
p data # => <UnsetLabelResponse>
|
|
545
|
+
rescue PulpNpmClient::ApiError => e
|
|
546
|
+
puts "Error when calling RemotesNpmApi->unset_label_with_http_info: #{e}"
|
|
547
|
+
end
|
|
548
|
+
```
|
|
549
|
+
|
|
550
|
+
### Parameters
|
|
551
|
+
|
|
552
|
+
| Name | Type | Description | Notes |
|
|
553
|
+
| ---- | ---- | ----------- | ----- |
|
|
554
|
+
| **npm_npm_remote_href** | **String** | | |
|
|
555
|
+
| **unset_label** | [**UnsetLabel**](UnsetLabel.md) | | |
|
|
556
|
+
|
|
557
|
+
### Return type
|
|
558
|
+
|
|
559
|
+
[**UnsetLabelResponse**](UnsetLabelResponse.md)
|
|
560
|
+
|
|
561
|
+
### Authorization
|
|
562
|
+
|
|
563
|
+
[basicAuth](../README.md#basicAuth)
|
|
564
|
+
|
|
565
|
+
### HTTP request headers
|
|
566
|
+
|
|
567
|
+
- **Content-Type**: application/json, application/x-www-form-urlencoded, multipart/form-data
|
|
568
|
+
- **Accept**: application/json
|
|
569
|
+
|
|
570
|
+
|
|
323
571
|
## update
|
|
324
572
|
|
|
325
|
-
> AsyncOperationResponse update(npm_npm_remote_href, npm_npm_remote)
|
|
573
|
+
> <AsyncOperationResponse> update(npm_npm_remote_href, npm_npm_remote)
|
|
326
574
|
|
|
327
575
|
Update a npm remote
|
|
328
576
|
|
|
329
577
|
Trigger an asynchronous update task
|
|
330
578
|
|
|
331
|
-
###
|
|
579
|
+
### Examples
|
|
332
580
|
|
|
333
581
|
```ruby
|
|
334
|
-
|
|
582
|
+
require 'time'
|
|
335
583
|
require 'pulp_npm_client'
|
|
336
584
|
# setup authorization
|
|
337
585
|
PulpNpmClient.configure do |config|
|
|
@@ -342,24 +590,41 @@ end
|
|
|
342
590
|
|
|
343
591
|
api_instance = PulpNpmClient::RemotesNpmApi.new
|
|
344
592
|
npm_npm_remote_href = 'npm_npm_remote_href_example' # String |
|
|
345
|
-
npm_npm_remote = PulpNpmClient::NpmNpmRemote.new # NpmNpmRemote |
|
|
593
|
+
npm_npm_remote = PulpNpmClient::NpmNpmRemote.new({name: 'name_example', url: 'url_example'}) # NpmNpmRemote |
|
|
346
594
|
|
|
347
595
|
begin
|
|
348
|
-
#Update a npm remote
|
|
596
|
+
# Update a npm remote
|
|
349
597
|
result = api_instance.update(npm_npm_remote_href, npm_npm_remote)
|
|
350
598
|
p result
|
|
351
599
|
rescue PulpNpmClient::ApiError => e
|
|
352
|
-
puts "
|
|
600
|
+
puts "Error when calling RemotesNpmApi->update: #{e}"
|
|
353
601
|
end
|
|
354
602
|
```
|
|
355
603
|
|
|
356
|
-
|
|
604
|
+
#### Using the update_with_http_info variant
|
|
357
605
|
|
|
606
|
+
This returns an Array which contains the response data, status code and headers.
|
|
607
|
+
|
|
608
|
+
> <Array(<AsyncOperationResponse>, Integer, Hash)> update_with_http_info(npm_npm_remote_href, npm_npm_remote)
|
|
609
|
+
|
|
610
|
+
```ruby
|
|
611
|
+
begin
|
|
612
|
+
# Update a npm remote
|
|
613
|
+
data, status_code, headers = api_instance.update_with_http_info(npm_npm_remote_href, npm_npm_remote)
|
|
614
|
+
p status_code # => 2xx
|
|
615
|
+
p headers # => { ... }
|
|
616
|
+
p data # => <AsyncOperationResponse>
|
|
617
|
+
rescue PulpNpmClient::ApiError => e
|
|
618
|
+
puts "Error when calling RemotesNpmApi->update_with_http_info: #{e}"
|
|
619
|
+
end
|
|
620
|
+
```
|
|
621
|
+
|
|
622
|
+
### Parameters
|
|
358
623
|
|
|
359
|
-
Name | Type | Description
|
|
360
|
-
|
|
361
|
-
**npm_npm_remote_href** | **String
|
|
362
|
-
**npm_npm_remote** | [**NpmNpmRemote**](NpmNpmRemote.md)| |
|
|
624
|
+
| Name | Type | Description | Notes |
|
|
625
|
+
| ---- | ---- | ----------- | ----- |
|
|
626
|
+
| **npm_npm_remote_href** | **String** | | |
|
|
627
|
+
| **npm_npm_remote** | [**NpmNpmRemote**](NpmNpmRemote.md) | | |
|
|
363
628
|
|
|
364
629
|
### Return type
|
|
365
630
|
|