pulp_2to3_migration_client 0.3.0b1.dev01595964989 → 0.3.0b1.dev01596051478
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 +13 -12
- data/docs/MigrationPlansApi.md +12 -8
- data/docs/Pulp2ContentApi.md +6 -4
- data/docs/Pulp2RepositoriesApi.md +6 -4
- data/lib/pulp_2to3_migration_client/api/migration_plans_api.rb +8 -0
- data/lib/pulp_2to3_migration_client/api/pulp2_content_api.rb +4 -0
- data/lib/pulp_2to3_migration_client/api/pulp2_repositories_api.rb +4 -0
- data/lib/pulp_2to3_migration_client/version.rb +1 -1
- data/spec/api/migration_plans_api_spec.rb +4 -0
- data/spec/api/pulp2_content_api_spec.rb +2 -0
- data/spec/api/pulp2_repositories_api_spec.rb +2 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 33a8232e6e62b7f00f96952b85e8c903f16ea921c632b22c5d47f47854f34d75
|
4
|
+
data.tar.gz: 0c12cb8aae00ce306b555985203d61c3e365a35c2a457fe4f0266b7e4fe6f7fb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 57486d53b606006cd25b7ee21825f9264061012fb50bf5fa9fc6ae54b40e2cd4c576e74401a609874a48bf6553b9d43762a6eede4855fb27d91136cb684b1bb3
|
7
|
+
data.tar.gz: 48566330e8f19183d0e410167173b8ced19f86d315d075350801841b53ad4d8f70c80b8b372da6ea2ae89bb07180329fc5cb22624a76c44b3416bc03452541f2
|
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.3.0b1.
|
10
|
+
- Package version: 0.3.0b1.dev01596051478
|
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_2to3_migration_client.gemspec
|
|
24
24
|
Then either install the gem locally:
|
25
25
|
|
26
26
|
```shell
|
27
|
-
gem install ./pulp_2to3_migration_client-0.3.0b1.
|
27
|
+
gem install ./pulp_2to3_migration_client-0.3.0b1.dev01596051478.gem
|
28
28
|
```
|
29
29
|
|
30
|
-
(for development, run `gem install --dev ./pulp_2to3_migration_client-0.3.0b1.
|
30
|
+
(for development, run `gem install --dev ./pulp_2to3_migration_client-0.3.0b1.dev01596051478.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_2to3_migration_client', '~> 0.3.0b1.
|
36
|
+
gem 'pulp_2to3_migration_client', '~> 0.3.0b1.dev01596051478'
|
37
37
|
|
38
38
|
### Install from Git
|
39
39
|
|
@@ -68,6 +68,7 @@ api_instance = Pulp2to3MigrationClient::MigrationPlansApi.new
|
|
68
68
|
pulp2to3_migration_migration_plan = Pulp2to3MigrationClient::Pulp2to3MigrationMigrationPlan.new # Pulp2to3MigrationMigrationPlan |
|
69
69
|
|
70
70
|
begin
|
71
|
+
#Create a migration plan
|
71
72
|
result = api_instance.create(pulp2to3_migration_migration_plan)
|
72
73
|
p result
|
73
74
|
rescue Pulp2to3MigrationClient::ApiError => e
|
@@ -82,15 +83,15 @@ All URIs are relative to *http://pulp*
|
|
82
83
|
|
83
84
|
Class | Method | HTTP request | Description
|
84
85
|
------------ | ------------- | ------------- | -------------
|
85
|
-
*Pulp2to3MigrationClient::MigrationPlansApi* | [**create**](docs/MigrationPlansApi.md#create) | **POST** /pulp/api/v3/migration-plans/ |
|
86
|
-
*Pulp2to3MigrationClient::MigrationPlansApi* | [**delete**](docs/MigrationPlansApi.md#delete) | **DELETE** {migration_plan_href} |
|
87
|
-
*Pulp2to3MigrationClient::MigrationPlansApi* | [**list**](docs/MigrationPlansApi.md#list) | **GET** /pulp/api/v3/migration-plans/ |
|
88
|
-
*Pulp2to3MigrationClient::MigrationPlansApi* | [**read**](docs/MigrationPlansApi.md#read) | **GET** {migration_plan_href} |
|
86
|
+
*Pulp2to3MigrationClient::MigrationPlansApi* | [**create**](docs/MigrationPlansApi.md#create) | **POST** /pulp/api/v3/migration-plans/ | Create a migration plan
|
87
|
+
*Pulp2to3MigrationClient::MigrationPlansApi* | [**delete**](docs/MigrationPlansApi.md#delete) | **DELETE** {migration_plan_href} | Delete a migration plan
|
88
|
+
*Pulp2to3MigrationClient::MigrationPlansApi* | [**list**](docs/MigrationPlansApi.md#list) | **GET** /pulp/api/v3/migration-plans/ | List migration plans
|
89
|
+
*Pulp2to3MigrationClient::MigrationPlansApi* | [**read**](docs/MigrationPlansApi.md#read) | **GET** {migration_plan_href} | Inspect a migration plan
|
89
90
|
*Pulp2to3MigrationClient::MigrationPlansApi* | [**run**](docs/MigrationPlansApi.md#run) | **POST** {migration_plan_href}run/ | Run migration plan
|
90
|
-
*Pulp2to3MigrationClient::Pulp2ContentApi* | [**list**](docs/Pulp2ContentApi.md#list) | **GET** /pulp/api/v3/pulp2content/ |
|
91
|
-
*Pulp2to3MigrationClient::Pulp2ContentApi* | [**read**](docs/Pulp2ContentApi.md#read) | **GET** {pulp2_content_href} |
|
92
|
-
*Pulp2to3MigrationClient::Pulp2RepositoriesApi* | [**list**](docs/Pulp2RepositoriesApi.md#list) | **GET** /pulp/api/v3/pulp2repositories/ |
|
93
|
-
*Pulp2to3MigrationClient::Pulp2RepositoriesApi* | [**read**](docs/Pulp2RepositoriesApi.md#read) | **GET** {pulp2_repository_href} |
|
91
|
+
*Pulp2to3MigrationClient::Pulp2ContentApi* | [**list**](docs/Pulp2ContentApi.md#list) | **GET** /pulp/api/v3/pulp2content/ | List pulp2 contents
|
92
|
+
*Pulp2to3MigrationClient::Pulp2ContentApi* | [**read**](docs/Pulp2ContentApi.md#read) | **GET** {pulp2_content_href} | Inspect a pulp2 content
|
93
|
+
*Pulp2to3MigrationClient::Pulp2RepositoriesApi* | [**list**](docs/Pulp2RepositoriesApi.md#list) | **GET** /pulp/api/v3/pulp2repositories/ | List pulp2 repositorys
|
94
|
+
*Pulp2to3MigrationClient::Pulp2RepositoriesApi* | [**read**](docs/Pulp2RepositoriesApi.md#read) | **GET** {pulp2_repository_href} | Inspect a pulp2 repository
|
94
95
|
|
95
96
|
|
96
97
|
## Documentation for Models
|
data/docs/MigrationPlansApi.md
CHANGED
@@ -4,10 +4,10 @@ All URIs are relative to *http://pulp*
|
|
4
4
|
|
5
5
|
Method | HTTP request | Description
|
6
6
|
------------- | ------------- | -------------
|
7
|
-
[**create**](MigrationPlansApi.md#create) | **POST** /pulp/api/v3/migration-plans/ |
|
8
|
-
[**delete**](MigrationPlansApi.md#delete) | **DELETE** {migration_plan_href} |
|
9
|
-
[**list**](MigrationPlansApi.md#list) | **GET** /pulp/api/v3/migration-plans/ |
|
10
|
-
[**read**](MigrationPlansApi.md#read) | **GET** {migration_plan_href} |
|
7
|
+
[**create**](MigrationPlansApi.md#create) | **POST** /pulp/api/v3/migration-plans/ | Create a migration plan
|
8
|
+
[**delete**](MigrationPlansApi.md#delete) | **DELETE** {migration_plan_href} | Delete a migration plan
|
9
|
+
[**list**](MigrationPlansApi.md#list) | **GET** /pulp/api/v3/migration-plans/ | List migration plans
|
10
|
+
[**read**](MigrationPlansApi.md#read) | **GET** {migration_plan_href} | Inspect a migration plan
|
11
11
|
[**run**](MigrationPlansApi.md#run) | **POST** {migration_plan_href}run/ | Run migration plan
|
12
12
|
|
13
13
|
|
@@ -16,7 +16,7 @@ Method | HTTP request | Description
|
|
16
16
|
|
17
17
|
> Pulp2to3MigrationMigrationPlanResponse create(pulp2to3_migration_migration_plan)
|
18
18
|
|
19
|
-
|
19
|
+
Create a migration plan
|
20
20
|
|
21
21
|
MigrationPlan ViewSet.
|
22
22
|
|
@@ -36,6 +36,7 @@ api_instance = Pulp2to3MigrationClient::MigrationPlansApi.new
|
|
36
36
|
pulp2to3_migration_migration_plan = Pulp2to3MigrationClient::Pulp2to3MigrationMigrationPlan.new # Pulp2to3MigrationMigrationPlan |
|
37
37
|
|
38
38
|
begin
|
39
|
+
#Create a migration plan
|
39
40
|
result = api_instance.create(pulp2to3_migration_migration_plan)
|
40
41
|
p result
|
41
42
|
rescue Pulp2to3MigrationClient::ApiError => e
|
@@ -68,7 +69,7 @@ Name | Type | Description | Notes
|
|
68
69
|
|
69
70
|
> delete(migration_plan_href)
|
70
71
|
|
71
|
-
|
72
|
+
Delete a migration plan
|
72
73
|
|
73
74
|
MigrationPlan ViewSet.
|
74
75
|
|
@@ -88,6 +89,7 @@ api_instance = Pulp2to3MigrationClient::MigrationPlansApi.new
|
|
88
89
|
migration_plan_href = 'migration_plan_href_example' # String |
|
89
90
|
|
90
91
|
begin
|
92
|
+
#Delete a migration plan
|
91
93
|
api_instance.delete(migration_plan_href)
|
92
94
|
rescue Pulp2to3MigrationClient::ApiError => e
|
93
95
|
puts "Exception when calling MigrationPlansApi->delete: #{e}"
|
@@ -119,7 +121,7 @@ nil (empty response body)
|
|
119
121
|
|
120
122
|
> InlineResponse200 list(opts)
|
121
123
|
|
122
|
-
|
124
|
+
List migration plans
|
123
125
|
|
124
126
|
MigrationPlan ViewSet.
|
125
127
|
|
@@ -145,6 +147,7 @@ opts = {
|
|
145
147
|
}
|
146
148
|
|
147
149
|
begin
|
150
|
+
#List migration plans
|
148
151
|
result = api_instance.list(opts)
|
149
152
|
p result
|
150
153
|
rescue Pulp2to3MigrationClient::ApiError => e
|
@@ -181,7 +184,7 @@ Name | Type | Description | Notes
|
|
181
184
|
|
182
185
|
> Pulp2to3MigrationMigrationPlanResponse read(migration_plan_href, opts)
|
183
186
|
|
184
|
-
|
187
|
+
Inspect a migration plan
|
185
188
|
|
186
189
|
MigrationPlan ViewSet.
|
187
190
|
|
@@ -205,6 +208,7 @@ opts = {
|
|
205
208
|
}
|
206
209
|
|
207
210
|
begin
|
211
|
+
#Inspect a migration plan
|
208
212
|
result = api_instance.read(migration_plan_href, opts)
|
209
213
|
p result
|
210
214
|
rescue Pulp2to3MigrationClient::ApiError => e
|
data/docs/Pulp2ContentApi.md
CHANGED
@@ -4,8 +4,8 @@ All URIs are relative to *http://pulp*
|
|
4
4
|
|
5
5
|
Method | HTTP request | Description
|
6
6
|
------------- | ------------- | -------------
|
7
|
-
[**list**](Pulp2ContentApi.md#list) | **GET** /pulp/api/v3/pulp2content/ |
|
8
|
-
[**read**](Pulp2ContentApi.md#read) | **GET** {pulp2_content_href} |
|
7
|
+
[**list**](Pulp2ContentApi.md#list) | **GET** /pulp/api/v3/pulp2content/ | List pulp2 contents
|
8
|
+
[**read**](Pulp2ContentApi.md#read) | **GET** {pulp2_content_href} | Inspect a pulp2 content
|
9
9
|
|
10
10
|
|
11
11
|
|
@@ -13,7 +13,7 @@ Method | HTTP request | Description
|
|
13
13
|
|
14
14
|
> InlineResponse2001 list(opts)
|
15
15
|
|
16
|
-
|
16
|
+
List pulp2 contents
|
17
17
|
|
18
18
|
ViewSet for Pulp2Content model.
|
19
19
|
|
@@ -50,6 +50,7 @@ opts = {
|
|
50
50
|
}
|
51
51
|
|
52
52
|
begin
|
53
|
+
#List pulp2 contents
|
53
54
|
result = api_instance.list(opts)
|
54
55
|
p result
|
55
56
|
rescue Pulp2to3MigrationClient::ApiError => e
|
@@ -97,7 +98,7 @@ Name | Type | Description | Notes
|
|
97
98
|
|
98
99
|
> Pulp2to3MigrationPulp2ContentResponse read(pulp2_content_href, opts)
|
99
100
|
|
100
|
-
|
101
|
+
Inspect a pulp2 content
|
101
102
|
|
102
103
|
ViewSet for Pulp2Content model.
|
103
104
|
|
@@ -121,6 +122,7 @@ opts = {
|
|
121
122
|
}
|
122
123
|
|
123
124
|
begin
|
125
|
+
#Inspect a pulp2 content
|
124
126
|
result = api_instance.read(pulp2_content_href, opts)
|
125
127
|
p result
|
126
128
|
rescue Pulp2to3MigrationClient::ApiError => e
|
@@ -4,8 +4,8 @@ All URIs are relative to *http://pulp*
|
|
4
4
|
|
5
5
|
Method | HTTP request | Description
|
6
6
|
------------- | ------------- | -------------
|
7
|
-
[**list**](Pulp2RepositoriesApi.md#list) | **GET** /pulp/api/v3/pulp2repositories/ |
|
8
|
-
[**read**](Pulp2RepositoriesApi.md#read) | **GET** {pulp2_repository_href} |
|
7
|
+
[**list**](Pulp2RepositoriesApi.md#list) | **GET** /pulp/api/v3/pulp2repositories/ | List pulp2 repositorys
|
8
|
+
[**read**](Pulp2RepositoriesApi.md#read) | **GET** {pulp2_repository_href} | Inspect a pulp2 repository
|
9
9
|
|
10
10
|
|
11
11
|
|
@@ -13,7 +13,7 @@ Method | HTTP request | Description
|
|
13
13
|
|
14
14
|
> InlineResponse2002 list(opts)
|
15
15
|
|
16
|
-
|
16
|
+
List pulp2 repositorys
|
17
17
|
|
18
18
|
ViewSet for Pulp2Repositories model.
|
19
19
|
|
@@ -43,6 +43,7 @@ opts = {
|
|
43
43
|
}
|
44
44
|
|
45
45
|
begin
|
46
|
+
#List pulp2 repositorys
|
46
47
|
result = api_instance.list(opts)
|
47
48
|
p result
|
48
49
|
rescue Pulp2to3MigrationClient::ApiError => e
|
@@ -83,7 +84,7 @@ Name | Type | Description | Notes
|
|
83
84
|
|
84
85
|
> Pulp2to3MigrationPulp2RepositoryResponse read(pulp2_repository_href, opts)
|
85
86
|
|
86
|
-
|
87
|
+
Inspect a pulp2 repository
|
87
88
|
|
88
89
|
ViewSet for Pulp2Repositories model.
|
89
90
|
|
@@ -107,6 +108,7 @@ opts = {
|
|
107
108
|
}
|
108
109
|
|
109
110
|
begin
|
111
|
+
#Inspect a pulp2 repository
|
110
112
|
result = api_instance.read(pulp2_repository_href, opts)
|
111
113
|
p result
|
112
114
|
rescue Pulp2to3MigrationClient::ApiError => e
|
@@ -19,6 +19,7 @@ module Pulp2to3MigrationClient
|
|
19
19
|
def initialize(api_client = ApiClient.default)
|
20
20
|
@api_client = api_client
|
21
21
|
end
|
22
|
+
# Create a migration plan
|
22
23
|
# MigrationPlan ViewSet.
|
23
24
|
# @param pulp2to3_migration_migration_plan [Pulp2to3MigrationMigrationPlan]
|
24
25
|
# @param [Hash] opts the optional parameters
|
@@ -28,6 +29,7 @@ module Pulp2to3MigrationClient
|
|
28
29
|
data
|
29
30
|
end
|
30
31
|
|
32
|
+
# Create a migration plan
|
31
33
|
# MigrationPlan ViewSet.
|
32
34
|
# @param pulp2to3_migration_migration_plan [Pulp2to3MigrationMigrationPlan]
|
33
35
|
# @param [Hash] opts the optional parameters
|
@@ -81,6 +83,7 @@ module Pulp2to3MigrationClient
|
|
81
83
|
return data, status_code, headers
|
82
84
|
end
|
83
85
|
|
86
|
+
# Delete a migration plan
|
84
87
|
# MigrationPlan ViewSet.
|
85
88
|
# @param migration_plan_href [String]
|
86
89
|
# @param [Hash] opts the optional parameters
|
@@ -90,6 +93,7 @@ module Pulp2to3MigrationClient
|
|
90
93
|
nil
|
91
94
|
end
|
92
95
|
|
96
|
+
# Delete a migration plan
|
93
97
|
# MigrationPlan ViewSet.
|
94
98
|
# @param migration_plan_href [String]
|
95
99
|
# @param [Hash] opts the optional parameters
|
@@ -139,6 +143,7 @@ module Pulp2to3MigrationClient
|
|
139
143
|
return data, status_code, headers
|
140
144
|
end
|
141
145
|
|
146
|
+
# List migration plans
|
142
147
|
# MigrationPlan ViewSet.
|
143
148
|
# @param [Hash] opts the optional parameters
|
144
149
|
# @option opts [Integer] :limit Number of results to return per page.
|
@@ -152,6 +157,7 @@ module Pulp2to3MigrationClient
|
|
152
157
|
data
|
153
158
|
end
|
154
159
|
|
160
|
+
# List migration plans
|
155
161
|
# MigrationPlan ViewSet.
|
156
162
|
# @param [Hash] opts the optional parameters
|
157
163
|
# @option opts [Integer] :limit Number of results to return per page.
|
@@ -208,6 +214,7 @@ module Pulp2to3MigrationClient
|
|
208
214
|
return data, status_code, headers
|
209
215
|
end
|
210
216
|
|
217
|
+
# Inspect a migration plan
|
211
218
|
# MigrationPlan ViewSet.
|
212
219
|
# @param migration_plan_href [String]
|
213
220
|
# @param [Hash] opts the optional parameters
|
@@ -219,6 +226,7 @@ module Pulp2to3MigrationClient
|
|
219
226
|
data
|
220
227
|
end
|
221
228
|
|
229
|
+
# Inspect a migration plan
|
222
230
|
# MigrationPlan ViewSet.
|
223
231
|
# @param migration_plan_href [String]
|
224
232
|
# @param [Hash] opts the optional parameters
|
@@ -19,6 +19,7 @@ module Pulp2to3MigrationClient
|
|
19
19
|
def initialize(api_client = ApiClient.default)
|
20
20
|
@api_client = api_client
|
21
21
|
end
|
22
|
+
# List pulp2 contents
|
22
23
|
# ViewSet for Pulp2Content model.
|
23
24
|
# @param [Hash] opts the optional parameters
|
24
25
|
# @option opts [Integer] :limit Number of results to return per page.
|
@@ -43,6 +44,7 @@ module Pulp2to3MigrationClient
|
|
43
44
|
data
|
44
45
|
end
|
45
46
|
|
47
|
+
# List pulp2 contents
|
46
48
|
# ViewSet for Pulp2Content model.
|
47
49
|
# @param [Hash] opts the optional parameters
|
48
50
|
# @option opts [Integer] :limit Number of results to return per page.
|
@@ -121,6 +123,7 @@ module Pulp2to3MigrationClient
|
|
121
123
|
return data, status_code, headers
|
122
124
|
end
|
123
125
|
|
126
|
+
# Inspect a pulp2 content
|
124
127
|
# ViewSet for Pulp2Content model.
|
125
128
|
# @param pulp2_content_href [String]
|
126
129
|
# @param [Hash] opts the optional parameters
|
@@ -132,6 +135,7 @@ module Pulp2to3MigrationClient
|
|
132
135
|
data
|
133
136
|
end
|
134
137
|
|
138
|
+
# Inspect a pulp2 content
|
135
139
|
# ViewSet for Pulp2Content model.
|
136
140
|
# @param pulp2_content_href [String]
|
137
141
|
# @param [Hash] opts the optional parameters
|
@@ -19,6 +19,7 @@ module Pulp2to3MigrationClient
|
|
19
19
|
def initialize(api_client = ApiClient.default)
|
20
20
|
@api_client = api_client
|
21
21
|
end
|
22
|
+
# List pulp2 repositorys
|
22
23
|
# ViewSet for Pulp2Repositories model.
|
23
24
|
# @param [Hash] opts the optional parameters
|
24
25
|
# @option opts [String] :is_migrated is_migrated
|
@@ -36,6 +37,7 @@ module Pulp2to3MigrationClient
|
|
36
37
|
data
|
37
38
|
end
|
38
39
|
|
40
|
+
# List pulp2 repositorys
|
39
41
|
# ViewSet for Pulp2Repositories model.
|
40
42
|
# @param [Hash] opts the optional parameters
|
41
43
|
# @option opts [String] :is_migrated is_migrated
|
@@ -100,6 +102,7 @@ module Pulp2to3MigrationClient
|
|
100
102
|
return data, status_code, headers
|
101
103
|
end
|
102
104
|
|
105
|
+
# Inspect a pulp2 repository
|
103
106
|
# ViewSet for Pulp2Repositories model.
|
104
107
|
# @param pulp2_repository_href [String]
|
105
108
|
# @param [Hash] opts the optional parameters
|
@@ -111,6 +114,7 @@ module Pulp2to3MigrationClient
|
|
111
114
|
data
|
112
115
|
end
|
113
116
|
|
117
|
+
# Inspect a pulp2 repository
|
114
118
|
# ViewSet for Pulp2Repositories model.
|
115
119
|
# @param pulp2_repository_href [String]
|
116
120
|
# @param [Hash] opts the optional parameters
|
@@ -33,6 +33,7 @@ describe 'MigrationPlansApi' do
|
|
33
33
|
end
|
34
34
|
|
35
35
|
# unit tests for create
|
36
|
+
# Create a migration plan
|
36
37
|
# MigrationPlan ViewSet.
|
37
38
|
# @param pulp2to3_migration_migration_plan
|
38
39
|
# @param [Hash] opts the optional parameters
|
@@ -44,6 +45,7 @@ describe 'MigrationPlansApi' do
|
|
44
45
|
end
|
45
46
|
|
46
47
|
# unit tests for delete
|
48
|
+
# Delete a migration plan
|
47
49
|
# MigrationPlan ViewSet.
|
48
50
|
# @param migration_plan_href
|
49
51
|
# @param [Hash] opts the optional parameters
|
@@ -55,6 +57,7 @@ describe 'MigrationPlansApi' do
|
|
55
57
|
end
|
56
58
|
|
57
59
|
# unit tests for list
|
60
|
+
# List migration plans
|
58
61
|
# MigrationPlan ViewSet.
|
59
62
|
# @param [Hash] opts the optional parameters
|
60
63
|
# @option opts [Integer] :limit Number of results to return per page.
|
@@ -70,6 +73,7 @@ describe 'MigrationPlansApi' do
|
|
70
73
|
end
|
71
74
|
|
72
75
|
# unit tests for read
|
76
|
+
# Inspect a migration plan
|
73
77
|
# MigrationPlan ViewSet.
|
74
78
|
# @param migration_plan_href
|
75
79
|
# @param [Hash] opts the optional parameters
|
@@ -33,6 +33,7 @@ describe 'Pulp2ContentApi' do
|
|
33
33
|
end
|
34
34
|
|
35
35
|
# unit tests for list
|
36
|
+
# List pulp2 contents
|
36
37
|
# ViewSet for Pulp2Content model.
|
37
38
|
# @param [Hash] opts the optional parameters
|
38
39
|
# @option opts [Integer] :limit Number of results to return per page.
|
@@ -59,6 +60,7 @@ describe 'Pulp2ContentApi' do
|
|
59
60
|
end
|
60
61
|
|
61
62
|
# unit tests for read
|
63
|
+
# Inspect a pulp2 content
|
62
64
|
# ViewSet for Pulp2Content model.
|
63
65
|
# @param pulp2_content_href
|
64
66
|
# @param [Hash] opts the optional parameters
|
@@ -33,6 +33,7 @@ describe 'Pulp2RepositoriesApi' do
|
|
33
33
|
end
|
34
34
|
|
35
35
|
# unit tests for list
|
36
|
+
# List pulp2 repositorys
|
36
37
|
# ViewSet for Pulp2Repositories model.
|
37
38
|
# @param [Hash] opts the optional parameters
|
38
39
|
# @option opts [String] :is_migrated is_migrated
|
@@ -52,6 +53,7 @@ describe 'Pulp2RepositoriesApi' do
|
|
52
53
|
end
|
53
54
|
|
54
55
|
# unit tests for read
|
56
|
+
# Inspect a pulp2 repository
|
55
57
|
# ViewSet for Pulp2Repositories model.
|
56
58
|
# @param pulp2_repository_href
|
57
59
|
# @param [Hash] opts the optional parameters
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pulp_2to3_migration_client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.0b1.
|
4
|
+
version: 0.3.0b1.dev01596051478
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- OpenAPI-Generator
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-07-
|
11
|
+
date: 2020-07-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|