pulp_2to3_migration_client 0.12.0.dev1624592835 → 0.12.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bc3c2ad7e7fc7ff7916ae0066aa78e4d49ac326a38019ef9399ddcd7ca37a8a7
4
- data.tar.gz: 1400551d3fa8fd26b22d313c2fd9e23e46dd168bee3b4b108f2de05a9480b96c
3
+ metadata.gz: a5e7326240fb964e217f0e202bbd7eaa86513509ee9b5503b3b1fc4ad9b5a9b8
4
+ data.tar.gz: 4ed1c9f6323037ee4d35399b3fe541ad570818e27b5455303959d6866056a317
5
5
  SHA512:
6
- metadata.gz: 690a71567ccff0193fedd985bd2723efde78c1901dbb88391463a518594c45255c4d907a48af49439d3bb2d082c1af0ab5883642c48f6d22eb333e71d11b0bc9
7
- data.tar.gz: 20fa335e6f8b73592452632f4b0edd5ea9ed12f9ab1be92454a795b170ac7529eb6ed8fda84a320c74a099b97e27d3fe3ad12ddece386ba90a7532a3c46fd3db
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.dev1624592835
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.dev1624592835.gem
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.dev1624592835.gem` to install the development dependencies)
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.dev1624592835'
36
+ gem 'pulp_2to3_migration_client', '~> 0.12.0'
37
37
 
38
38
  ### Install from Git
39
39
 
@@ -15,7 +15,7 @@
15
15
 
16
16
  from __future__ import absolute_import
17
17
 
18
- __version__ = "0.12.0.dev1624592827"
18
+ __version__ = "0.12.0"
19
19
 
20
20
  # import apis into sdk package
21
21
  from pulpcore.client.pulp_2to3_migration.api.migration_plans_api import MigrationPlansApi
@@ -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.dev1624592827/python'
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.dev1624592827".\
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):
@@ -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
- request_options = {
57
- :params_encoder => @config.params_encoder
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
@@ -11,5 +11,5 @@ OpenAPI Generator version: 4.3.1
11
11
  =end
12
12
 
13
13
  module Pulp2to3MigrationClient
14
- VERSION = '0.12.0.dev1624592835'
14
+ VERSION = '0.12.0'
15
15
  end
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pulp-2to3-migration-client
3
- Version: 0.12.0.dev1624592827
3
+ Version: 0.12.0
4
4
  Summary: Pulp 3 API
5
5
  Home-page: UNKNOWN
6
6
  Author: Pulp Team
@@ -15,7 +15,7 @@
15
15
 
16
16
  from __future__ import absolute_import
17
17
 
18
- __version__ = "0.12.0.dev1624592827"
18
+ __version__ = "0.12.0"
19
19
 
20
20
  # import apis into sdk package
21
21
  from pulpcore.client.pulp_2to3_migration.api.migration_plans_api import MigrationPlansApi
@@ -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.dev1624592827/python'
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.dev1624592827".\
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
@@ -14,7 +14,7 @@
14
14
  from setuptools import setup, find_packages # noqa: H301
15
15
 
16
16
  NAME = "pulp_2to3_migration-client"
17
- VERSION = "0.12.0.dev1624592827"
17
+ VERSION = "0.12.0"
18
18
  # To install the library, run the following
19
19
  #
20
20
  # python setup.py install
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.dev1624592835
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-25 00:00:00.000000000 Z
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.dev1624592827.tar.gz
99
- - dist/pulp_2to3_migration_client-0.12.0.dev1624592827-py3-none-any.whl
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: 1.3.1
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/paginatedpulp2to3_migration_migration_plan_response_list_spec.rb
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