pulp_2to3_migration_client 0.12.0.dev1624592835 → 0.12.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 +4 -4
- data/build/lib/pulpcore/client/pulp_2to3_migration/__init__.py +1 -1
- data/build/lib/pulpcore/client/pulp_2to3_migration/api_client.py +1 -1
- data/build/lib/pulpcore/client/pulp_2to3_migration/configuration.py +1 -1
- data/dist/pulp_2to3_migration-client-0.12.0.tar.gz +0 -0
- data/dist/{pulp_2to3_migration_client-0.12.0.dev1624592827-py3-none-any.whl → pulp_2to3_migration_client-0.12.0-py3-none-any.whl} +0 -0
- data/lib/pulp_2to3_migration_client/api_client.rb +2 -4
- data/lib/pulp_2to3_migration_client/configuration.rb +0 -7
- data/lib/pulp_2to3_migration_client/version.rb +1 -1
- data/pulp_2to3_migration_client.egg-info/PKG-INFO +1 -1
- data/pulpcore/client/pulp_2to3_migration/__init__.py +1 -1
- data/pulpcore/client/pulp_2to3_migration/api_client.py +1 -1
- data/pulpcore/client/pulp_2to3_migration/configuration.py +1 -1
- data/setup.py +1 -1
- metadata +12 -12
- data/dist/pulp_2to3_migration-client-0.12.0.dev1624592827.tar.gz +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a5e7326240fb964e217f0e202bbd7eaa86513509ee9b5503b3b1fc4ad9b5a9b8
|
|
4
|
+
data.tar.gz: 4ed1c9f6323037ee4d35399b3fe541ad570818e27b5455303959d6866056a317
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ef81253e037d74e8751d847cd7f4a9048b7eac23b9b5bc28b68678dc844dc5bb329b8bec376e9ce6ed95033d25b5afdf865a52152d76c20b44bd69cfc9bc5039
|
|
7
|
+
data.tar.gz: 45a06f5f598ec9dfae3d6cd5f4df5888e78082d0dd06fa1a1a36cca500ec4fcd37dc459d73a6b1eaedd700352f7c86ab71e8816c4e96295869abb47fa15a2f5b
|
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.12.0
|
|
10
|
+
- Package version: 0.12.0
|
|
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.12.0.
|
|
27
|
+
gem install ./pulp_2to3_migration_client-0.12.0.gem
|
|
28
28
|
```
|
|
29
29
|
|
|
30
|
-
(for development, run `gem install --dev ./pulp_2to3_migration_client-0.12.0.
|
|
30
|
+
(for development, run `gem install --dev ./pulp_2to3_migration_client-0.12.0.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.12.0
|
|
36
|
+
gem 'pulp_2to3_migration_client', '~> 0.12.0'
|
|
37
37
|
|
|
38
38
|
### Install from Git
|
|
39
39
|
|
|
@@ -79,7 +79,7 @@ class ApiClient(object):
|
|
|
79
79
|
self.default_headers[header_name] = header_value
|
|
80
80
|
self.cookie = cookie
|
|
81
81
|
# Set default User-Agent.
|
|
82
|
-
self.user_agent = 'OpenAPI-Generator/0.12.0
|
|
82
|
+
self.user_agent = 'OpenAPI-Generator/0.12.0/python'
|
|
83
83
|
self.client_side_validation = configuration.client_side_validation
|
|
84
84
|
|
|
85
85
|
def __enter__(self):
|
|
@@ -376,7 +376,7 @@ conf = pulpcore.client.pulp_2to3_migration.Configuration(
|
|
|
376
376
|
"OS: {env}\n"\
|
|
377
377
|
"Python Version: {pyversion}\n"\
|
|
378
378
|
"Version of the API: v3\n"\
|
|
379
|
-
"SDK Package Version: 0.12.0
|
|
379
|
+
"SDK Package Version: 0.12.0".\
|
|
380
380
|
format(env=sys.platform, pyversion=sys.version)
|
|
381
381
|
|
|
382
382
|
def get_host_settings(self):
|
|
Binary file
|
|
Binary file
|
|
@@ -53,10 +53,8 @@ module Pulp2to3MigrationClient
|
|
|
53
53
|
:client_cert => @config.ssl_client_cert,
|
|
54
54
|
:client_key => @config.ssl_client_key
|
|
55
55
|
}
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
}
|
|
59
|
-
connection = Faraday.new(:url => config.base_url, :ssl => ssl_options, :request => request_options) do |conn|
|
|
56
|
+
|
|
57
|
+
connection = Faraday.new(:url => config.base_url, :ssl => ssl_options) do |conn|
|
|
60
58
|
conn.basic_auth(config.username, config.password)
|
|
61
59
|
if opts[:header_params]["Content-Type"] == "multipart/form-data"
|
|
62
60
|
conn.request :multipart
|
|
@@ -109,12 +109,6 @@ module Pulp2to3MigrationClient
|
|
|
109
109
|
# Client private key file (for client certificate)
|
|
110
110
|
attr_accessor :ssl_client_key
|
|
111
111
|
|
|
112
|
-
# Set this to customize parameters encoder of array parameter.
|
|
113
|
-
# Default to nil. Faraday uses NestedParamsEncoder when nil.
|
|
114
|
-
#
|
|
115
|
-
# @see The params_encoder option of Faraday. Related source code:
|
|
116
|
-
# https://github.com/lostisland/faraday/tree/main/lib/faraday/encoders
|
|
117
|
-
attr_accessor :params_encoder
|
|
118
112
|
# Set this to customize parameters encoding of array parameter with multi collectionFormat.
|
|
119
113
|
# Default to nil.
|
|
120
114
|
#
|
|
@@ -139,7 +133,6 @@ module Pulp2to3MigrationClient
|
|
|
139
133
|
@ssl_ca_file = nil
|
|
140
134
|
@ssl_client_cert = nil
|
|
141
135
|
@ssl_client_key = nil
|
|
142
|
-
@params_encoder = nil
|
|
143
136
|
@debugging = false
|
|
144
137
|
@inject_format = false
|
|
145
138
|
@force_ending_format = false
|
|
@@ -79,7 +79,7 @@ class ApiClient(object):
|
|
|
79
79
|
self.default_headers[header_name] = header_value
|
|
80
80
|
self.cookie = cookie
|
|
81
81
|
# Set default User-Agent.
|
|
82
|
-
self.user_agent = 'OpenAPI-Generator/0.12.0
|
|
82
|
+
self.user_agent = 'OpenAPI-Generator/0.12.0/python'
|
|
83
83
|
self.client_side_validation = configuration.client_side_validation
|
|
84
84
|
|
|
85
85
|
def __enter__(self):
|
|
@@ -376,7 +376,7 @@ conf = pulpcore.client.pulp_2to3_migration.Configuration(
|
|
|
376
376
|
"OS: {env}\n"\
|
|
377
377
|
"Python Version: {pyversion}\n"\
|
|
378
378
|
"Version of the API: v3\n"\
|
|
379
|
-
"SDK Package Version: 0.12.0
|
|
379
|
+
"SDK Package Version: 0.12.0".\
|
|
380
380
|
format(env=sys.platform, pyversion=sys.version)
|
|
381
381
|
|
|
382
382
|
def get_host_settings(self):
|
data/setup.py
CHANGED
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.12.0
|
|
4
|
+
version: 0.12.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- OpenAPI-Generator
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-06-
|
|
11
|
+
date: 2021-06-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: faraday
|
|
@@ -95,8 +95,8 @@ files:
|
|
|
95
95
|
- build/lib/pulpcore/client/pulp_2to3_migration/models/pulp2to3_migration_pulp2_content_response.py
|
|
96
96
|
- build/lib/pulpcore/client/pulp_2to3_migration/models/pulp2to3_migration_pulp2_repository_response.py
|
|
97
97
|
- build/lib/pulpcore/client/pulp_2to3_migration/rest.py
|
|
98
|
-
- dist/pulp_2to3_migration-client-0.12.0.
|
|
99
|
-
- dist/pulp_2to3_migration_client-0.12.0
|
|
98
|
+
- dist/pulp_2to3_migration-client-0.12.0.tar.gz
|
|
99
|
+
- dist/pulp_2to3_migration_client-0.12.0-py3-none-any.whl
|
|
100
100
|
- docs/AsyncOperationResponse.md
|
|
101
101
|
- docs/MigrationPlanRun.md
|
|
102
102
|
- docs/MigrationPlansApi.md
|
|
@@ -202,27 +202,27 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
202
202
|
version: '1.9'
|
|
203
203
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
204
204
|
requirements:
|
|
205
|
-
- - "
|
|
205
|
+
- - ">="
|
|
206
206
|
- !ruby/object:Gem::Version
|
|
207
|
-
version:
|
|
207
|
+
version: '0'
|
|
208
208
|
requirements: []
|
|
209
209
|
rubygems_version: 3.0.3.1
|
|
210
210
|
signing_key:
|
|
211
211
|
specification_version: 4
|
|
212
212
|
summary: Pulp 3 API Ruby Gem
|
|
213
213
|
test_files:
|
|
214
|
+
- spec/api/pulp2_content_api_spec.rb
|
|
214
215
|
- spec/api/migration_plans_api_spec.rb
|
|
215
216
|
- spec/api/pulp2_repositories_api_spec.rb
|
|
216
|
-
- spec/api/pulp2_content_api_spec.rb
|
|
217
217
|
- spec/api_client_spec.rb
|
|
218
218
|
- spec/configuration_spec.rb
|
|
219
|
-
- spec/models/paginatedpulp2to3_migration_pulp2_content_response_list_spec.rb
|
|
220
219
|
- spec/models/async_operation_response_spec.rb
|
|
221
|
-
- spec/models/
|
|
220
|
+
- spec/models/pulp2to3_migration_migration_plan_response_spec.rb
|
|
221
|
+
- spec/models/migration_plan_run_spec.rb
|
|
222
|
+
- spec/models/pulp2to3_migration_pulp2_content_response_spec.rb
|
|
222
223
|
- spec/models/pulp2to3_migration_pulp2_repository_response_spec.rb
|
|
224
|
+
- spec/models/paginatedpulp2to3_migration_migration_plan_response_list_spec.rb
|
|
223
225
|
- spec/models/pulp2to3_migration_migration_plan_spec.rb
|
|
226
|
+
- spec/models/paginatedpulp2to3_migration_pulp2_content_response_list_spec.rb
|
|
224
227
|
- spec/models/paginatedpulp2to3_migration_pulp2_repository_response_list_spec.rb
|
|
225
|
-
- spec/models/migration_plan_run_spec.rb
|
|
226
|
-
- spec/models/pulp2to3_migration_migration_plan_response_spec.rb
|
|
227
|
-
- spec/models/pulp2to3_migration_pulp2_content_response_spec.rb
|
|
228
228
|
- spec/spec_helper.rb
|
|
Binary file
|