pulp_python_client 3.0.0 → 3.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +6 -4
- data/docs/ContentPackagesApi.md +34 -28
- data/docs/ContentSummary.md +3 -3
- data/docs/ContentSummaryResponse.md +3 -3
- data/docs/DistributionsPypiApi.md +20 -12
- data/docs/ExcludePlatformsEnum.md +16 -0
- data/docs/PackageTypesEnum.md +16 -0
- data/docs/PatchedpythonPythonDistribution.md +2 -0
- data/docs/PatchedpythonPythonRemote.md +18 -2
- data/docs/PatchedpythonPythonRepository.md +3 -1
- data/docs/PublicationsPypiApi.md +14 -14
- data/docs/PythonPythonDistribution.md +2 -0
- data/docs/PythonPythonDistributionResponse.md +2 -0
- data/docs/PythonPythonRemote.md +18 -2
- data/docs/PythonPythonRemoteResponse.md +14 -8
- data/docs/PythonPythonRepository.md +3 -1
- data/docs/PythonPythonRepositoryResponse.md +2 -0
- data/docs/RemotesPythonApi.md +24 -16
- data/docs/RepositoriesPythonApi.md +12 -4
- data/docs/RepositoriesPythonVersionsApi.md +28 -28
- data/lib/pulp_python_client/api/content_packages_api.rb +42 -33
- data/lib/pulp_python_client/api/distributions_pypi_api.rb +26 -14
- data/lib/pulp_python_client/api/publications_pypi_api.rb +15 -15
- data/lib/pulp_python_client/api/remotes_python_api.rb +30 -18
- data/lib/pulp_python_client/api/repositories_python_api.rb +17 -5
- data/lib/pulp_python_client/api/repositories_python_versions_api.rb +30 -30
- data/lib/pulp_python_client/models/content_summary.rb +12 -6
- data/lib/pulp_python_client/models/content_summary_response.rb +12 -6
- data/lib/pulp_python_client/models/exclude_platforms_enum.rb +38 -0
- data/lib/pulp_python_client/models/package_types_enum.rb +42 -0
- data/lib/pulp_python_client/models/patchedpython_python_distribution.rb +10 -1
- data/lib/pulp_python_client/models/patchedpython_python_remote.rb +95 -5
- data/lib/pulp_python_client/models/patchedpython_python_repository.rb +10 -1
- data/lib/pulp_python_client/models/python_python_distribution.rb +10 -1
- data/lib/pulp_python_client/models/python_python_distribution_response.rb +10 -1
- data/lib/pulp_python_client/models/python_python_remote.rb +95 -5
- data/lib/pulp_python_client/models/python_python_remote_response.rb +70 -35
- data/lib/pulp_python_client/models/python_python_repository.rb +10 -1
- data/lib/pulp_python_client/models/python_python_repository_response.rb +10 -1
- data/lib/pulp_python_client/version.rb +1 -1
- data/lib/pulp_python_client.rb +2 -0
- data/spec/api/content_packages_api_spec.rb +17 -14
- data/spec/api/distributions_pypi_api_spec.rb +10 -6
- data/spec/api/publications_pypi_api_spec.rb +7 -7
- data/spec/api/remotes_python_api_spec.rb +12 -8
- data/spec/api/repositories_python_api_spec.rb +6 -2
- data/spec/api/repositories_python_versions_api_spec.rb +14 -14
- data/spec/models/exclude_platforms_enum_spec.rb +35 -0
- data/spec/models/package_types_enum_spec.rb +35 -0
- data/spec/models/patchedpython_python_distribution_spec.rb +6 -0
- data/spec/models/patchedpython_python_remote_spec.rb +48 -0
- data/spec/models/patchedpython_python_repository_spec.rb +6 -0
- data/spec/models/python_python_distribution_response_spec.rb +6 -0
- data/spec/models/python_python_distribution_spec.rb +6 -0
- data/spec/models/python_python_remote_response_spec.rb +30 -12
- data/spec/models/python_python_remote_spec.rb +48 -0
- data/spec/models/python_python_repository_response_spec.rb +6 -0
- data/spec/models/python_python_repository_spec.rb +6 -0
- metadata +30 -22
@@ -60,15 +60,19 @@ describe 'DistributionsPypiApi' do
|
|
60
60
|
# List python distributions
|
61
61
|
# Pulp Python Distributions are used to distribute Python Publications. Pulp Python Distributions should not be confused with \"Python Distribution\" as defined by the Python community. In Pulp usage, Python content is refered to as Python Package Content.
|
62
62
|
# @param [Hash] opts the optional parameters
|
63
|
-
# @option opts [String] :base_path
|
64
|
-
# @option opts [String] :base_path__contains
|
65
|
-
# @option opts [String] :base_path__icontains
|
66
|
-
# @option opts [String] :base_path__in
|
63
|
+
# @option opts [String] :base_path
|
64
|
+
# @option opts [String] :base_path__contains Filter results where base_path contains value
|
65
|
+
# @option opts [String] :base_path__icontains Filter results where base_path contains value
|
66
|
+
# @option opts [Array<String>] :base_path__in Filter results where base_path is in a comma-separated list of values
|
67
67
|
# @option opts [Integer] :limit Number of results to return per page.
|
68
|
-
# @option opts [String] :name
|
69
|
-
# @option opts [String] :
|
68
|
+
# @option opts [String] :name
|
69
|
+
# @option opts [String] :name__contains Filter results where name contains value
|
70
|
+
# @option opts [String] :name__icontains Filter results where name contains value
|
71
|
+
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
72
|
+
# @option opts [String] :name__startswith Filter results where name starts with value
|
70
73
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
71
74
|
# @option opts [String] :ordering Which field to use when ordering the results.
|
75
|
+
# @option opts [String] :pulp_label_select Filter labels by search string
|
72
76
|
# @option opts [String] :fields A list of fields to include in the response.
|
73
77
|
# @option opts [String] :exclude_fields A list of fields to exclude from the response.
|
74
78
|
# @return [PaginatedpythonPythonDistributionResponseList]
|
@@ -63,13 +63,13 @@ describe 'PublicationsPypiApi' do
|
|
63
63
|
# @option opts [Integer] :limit Number of results to return per page.
|
64
64
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
65
65
|
# @option opts [String] :ordering Which field to use when ordering the results.
|
66
|
-
# @option opts [
|
67
|
-
# @option opts [
|
68
|
-
# @option opts [
|
69
|
-
# @option opts [
|
70
|
-
# @option opts [
|
71
|
-
# @option opts [
|
72
|
-
# @option opts [String] :repository_version
|
66
|
+
# @option opts [DateTime] :pulp_created ISO 8601 formatted dates are supported
|
67
|
+
# @option opts [DateTime] :pulp_created__gt Filter results where pulp_created is greater than value
|
68
|
+
# @option opts [DateTime] :pulp_created__gte Filter results where pulp_created is greater than or equal to value
|
69
|
+
# @option opts [DateTime] :pulp_created__lt Filter results where pulp_created is less than value
|
70
|
+
# @option opts [DateTime] :pulp_created__lte Filter results where pulp_created is less than or equal to value
|
71
|
+
# @option opts [Array<DateTime>] :pulp_created__range Filter results where pulp_created is between two comma separated values
|
72
|
+
# @option opts [String] :repository_version Repository Version referenced by HREF
|
73
73
|
# @option opts [String] :fields A list of fields to include in the response.
|
74
74
|
# @option opts [String] :exclude_fields A list of fields to exclude from the response.
|
75
75
|
# @return [PaginatedpythonPythonPublicationResponseList]
|
@@ -75,16 +75,20 @@ describe 'RemotesPythonApi' do
|
|
75
75
|
# Python Remotes are representations of an external repository of Python content, eg. PyPI. Fields include upstream repository config. Python Remotes are also used to `sync` from upstream repositories, and contains sync settings.
|
76
76
|
# @param [Hash] opts the optional parameters
|
77
77
|
# @option opts [Integer] :limit Number of results to return per page.
|
78
|
-
# @option opts [String] :name
|
79
|
-
# @option opts [String] :
|
78
|
+
# @option opts [String] :name
|
79
|
+
# @option opts [String] :name__contains Filter results where name contains value
|
80
|
+
# @option opts [String] :name__icontains Filter results where name contains value
|
81
|
+
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
82
|
+
# @option opts [String] :name__startswith Filter results where name starts with value
|
80
83
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
81
84
|
# @option opts [String] :ordering Which field to use when ordering the results.
|
82
|
-
# @option opts [String] :
|
83
|
-
# @option opts [
|
84
|
-
# @option opts [
|
85
|
-
# @option opts [
|
86
|
-
# @option opts [
|
87
|
-
# @option opts [
|
85
|
+
# @option opts [String] :pulp_label_select Filter labels by search string
|
86
|
+
# @option opts [DateTime] :pulp_last_updated ISO 8601 formatted dates are supported
|
87
|
+
# @option opts [DateTime] :pulp_last_updated__gt Filter results where pulp_last_updated is greater than value
|
88
|
+
# @option opts [DateTime] :pulp_last_updated__gte Filter results where pulp_last_updated is greater than or equal to value
|
89
|
+
# @option opts [DateTime] :pulp_last_updated__lt Filter results where pulp_last_updated is less than value
|
90
|
+
# @option opts [DateTime] :pulp_last_updated__lte Filter results where pulp_last_updated is less than or equal to value
|
91
|
+
# @option opts [Array<DateTime>] :pulp_last_updated__range Filter results where pulp_last_updated is between two comma separated values
|
88
92
|
# @option opts [String] :fields A list of fields to include in the response.
|
89
93
|
# @option opts [String] :exclude_fields A list of fields to exclude from the response.
|
90
94
|
# @return [PaginatedpythonPythonRemoteResponseList]
|
@@ -61,10 +61,14 @@ describe 'RepositoriesPythonApi' do
|
|
61
61
|
# A ViewSet for PythonRepository.
|
62
62
|
# @param [Hash] opts the optional parameters
|
63
63
|
# @option opts [Integer] :limit Number of results to return per page.
|
64
|
-
# @option opts [String] :name
|
65
|
-
# @option opts [String] :
|
64
|
+
# @option opts [String] :name
|
65
|
+
# @option opts [String] :name__contains Filter results where name contains value
|
66
|
+
# @option opts [String] :name__icontains Filter results where name contains value
|
67
|
+
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
68
|
+
# @option opts [String] :name__startswith Filter results where name starts with value
|
66
69
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
67
70
|
# @option opts [String] :ordering Which field to use when ordering the results.
|
71
|
+
# @option opts [String] :pulp_label_select Filter labels by search string
|
68
72
|
# @option opts [String] :fields A list of fields to include in the response.
|
69
73
|
# @option opts [String] :exclude_fields A list of fields to exclude from the response.
|
70
74
|
# @return [PaginatedpythonPythonRepositoryResponseList]
|
@@ -49,23 +49,23 @@ describe 'RepositoriesPythonVersionsApi' do
|
|
49
49
|
# PythonRepositoryVersion represents a single Python repository version.
|
50
50
|
# @param python_python_repository_href
|
51
51
|
# @param [Hash] opts the optional parameters
|
52
|
-
# @option opts [String] :content
|
53
|
-
# @option opts [String] :content__in
|
52
|
+
# @option opts [String] :content Content Unit referenced by HREF
|
53
|
+
# @option opts [String] :content__in Content Unit referenced by HREF
|
54
54
|
# @option opts [Integer] :limit Number of results to return per page.
|
55
|
-
# @option opts [
|
56
|
-
# @option opts [
|
57
|
-
# @option opts [
|
58
|
-
# @option opts [
|
59
|
-
# @option opts [
|
60
|
-
# @option opts [
|
55
|
+
# @option opts [Integer] :number
|
56
|
+
# @option opts [Integer] :number__gt Filter results where number is greater than value
|
57
|
+
# @option opts [Integer] :number__gte Filter results where number is greater than or equal to value
|
58
|
+
# @option opts [Integer] :number__lt Filter results where number is less than value
|
59
|
+
# @option opts [Integer] :number__lte Filter results where number is less than or equal to value
|
60
|
+
# @option opts [Array<Integer>] :number__range Filter results where number is between two comma separated values
|
61
61
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
62
62
|
# @option opts [String] :ordering Which field to use when ordering the results.
|
63
|
-
# @option opts [
|
64
|
-
# @option opts [
|
65
|
-
# @option opts [
|
66
|
-
# @option opts [
|
67
|
-
# @option opts [
|
68
|
-
# @option opts [
|
63
|
+
# @option opts [DateTime] :pulp_created ISO 8601 formatted dates are supported
|
64
|
+
# @option opts [DateTime] :pulp_created__gt Filter results where pulp_created is greater than value
|
65
|
+
# @option opts [DateTime] :pulp_created__gte Filter results where pulp_created is greater than or equal to value
|
66
|
+
# @option opts [DateTime] :pulp_created__lt Filter results where pulp_created is less than value
|
67
|
+
# @option opts [DateTime] :pulp_created__lte Filter results where pulp_created is less than or equal to value
|
68
|
+
# @option opts [Array<DateTime>] :pulp_created__range Filter results where pulp_created is between two comma separated values
|
69
69
|
# @option opts [String] :fields A list of fields to include in the response.
|
70
70
|
# @option opts [String] :exclude_fields A list of fields to exclude from the response.
|
71
71
|
# @return [PaginatedRepositoryVersionResponseList]
|
@@ -0,0 +1,35 @@
|
|
1
|
+
=begin
|
2
|
+
#Pulp 3 API
|
3
|
+
|
4
|
+
#Fetch, Upload, Organize, and Distribute Software Packages
|
5
|
+
|
6
|
+
The version of the OpenAPI document: v3
|
7
|
+
Contact: pulp-list@redhat.com
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 4.2.3
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for PulpPythonClient::ExcludePlatformsEnum
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'ExcludePlatformsEnum' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = PulpPythonClient::ExcludePlatformsEnum.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of ExcludePlatformsEnum' do
|
31
|
+
it 'should create an instance of ExcludePlatformsEnum' do
|
32
|
+
expect(@instance).to be_instance_of(PulpPythonClient::ExcludePlatformsEnum)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
@@ -0,0 +1,35 @@
|
|
1
|
+
=begin
|
2
|
+
#Pulp 3 API
|
3
|
+
|
4
|
+
#Fetch, Upload, Organize, and Distribute Software Packages
|
5
|
+
|
6
|
+
The version of the OpenAPI document: v3
|
7
|
+
Contact: pulp-list@redhat.com
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 4.2.3
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for PulpPythonClient::PackageTypesEnum
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'PackageTypesEnum' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = PulpPythonClient::PackageTypesEnum.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of PackageTypesEnum' do
|
31
|
+
it 'should create an instance of PackageTypesEnum' do
|
32
|
+
expect(@instance).to be_instance_of(PulpPythonClient::PackageTypesEnum)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
@@ -44,6 +44,12 @@ describe 'PatchedpythonPythonDistribution' do
|
|
44
44
|
end
|
45
45
|
end
|
46
46
|
|
47
|
+
describe 'test attribute "pulp_labels"' do
|
48
|
+
it 'should work' do
|
49
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
47
53
|
describe 'test attribute "name"' do
|
48
54
|
it 'should work' do
|
49
55
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -74,6 +74,18 @@ describe 'PatchedpythonPythonRemote' do
|
|
74
74
|
end
|
75
75
|
end
|
76
76
|
|
77
|
+
describe 'test attribute "proxy_username"' do
|
78
|
+
it 'should work' do
|
79
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
80
|
+
end
|
81
|
+
end
|
82
|
+
|
83
|
+
describe 'test attribute "proxy_password"' do
|
84
|
+
it 'should work' do
|
85
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
86
|
+
end
|
87
|
+
end
|
88
|
+
|
77
89
|
describe 'test attribute "username"' do
|
78
90
|
it 'should work' do
|
79
91
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -86,6 +98,12 @@ describe 'PatchedpythonPythonRemote' do
|
|
86
98
|
end
|
87
99
|
end
|
88
100
|
|
101
|
+
describe 'test attribute "pulp_labels"' do
|
102
|
+
it 'should work' do
|
103
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
104
|
+
end
|
105
|
+
end
|
106
|
+
|
89
107
|
describe 'test attribute "download_concurrency"' do
|
90
108
|
it 'should work' do
|
91
109
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -122,6 +140,18 @@ describe 'PatchedpythonPythonRemote' do
|
|
122
140
|
end
|
123
141
|
end
|
124
142
|
|
143
|
+
describe 'test attribute "headers"' do
|
144
|
+
it 'should work' do
|
145
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
146
|
+
end
|
147
|
+
end
|
148
|
+
|
149
|
+
describe 'test attribute "rate_limit"' do
|
150
|
+
it 'should work' do
|
151
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
152
|
+
end
|
153
|
+
end
|
154
|
+
|
125
155
|
describe 'test attribute "includes"' do
|
126
156
|
it 'should work' do
|
127
157
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -140,4 +170,22 @@ describe 'PatchedpythonPythonRemote' do
|
|
140
170
|
end
|
141
171
|
end
|
142
172
|
|
173
|
+
describe 'test attribute "package_types"' do
|
174
|
+
it 'should work' do
|
175
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
176
|
+
end
|
177
|
+
end
|
178
|
+
|
179
|
+
describe 'test attribute "keep_latest_packages"' do
|
180
|
+
it 'should work' do
|
181
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
182
|
+
end
|
183
|
+
end
|
184
|
+
|
185
|
+
describe 'test attribute "exclude_platforms"' do
|
186
|
+
it 'should work' do
|
187
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
188
|
+
end
|
189
|
+
end
|
190
|
+
|
143
191
|
end
|
@@ -32,6 +32,12 @@ describe 'PatchedpythonPythonRepository' do
|
|
32
32
|
expect(@instance).to be_instance_of(PulpPythonClient::PatchedpythonPythonRepository)
|
33
33
|
end
|
34
34
|
end
|
35
|
+
describe 'test attribute "pulp_labels"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
35
41
|
describe 'test attribute "name"' do
|
36
42
|
it 'should work' do
|
37
43
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -62,6 +62,12 @@ describe 'PythonPythonDistributionResponse' do
|
|
62
62
|
end
|
63
63
|
end
|
64
64
|
|
65
|
+
describe 'test attribute "pulp_labels"' do
|
66
|
+
it 'should work' do
|
67
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
68
|
+
end
|
69
|
+
end
|
70
|
+
|
65
71
|
describe 'test attribute "name"' do
|
66
72
|
it 'should work' do
|
67
73
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -44,6 +44,12 @@ describe 'PythonPythonDistribution' do
|
|
44
44
|
end
|
45
45
|
end
|
46
46
|
|
47
|
+
describe 'test attribute "pulp_labels"' do
|
48
|
+
it 'should work' do
|
49
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
47
53
|
describe 'test attribute "name"' do
|
48
54
|
it 'should work' do
|
49
55
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -68,73 +68,73 @@ describe 'PythonPythonRemoteResponse' do
|
|
68
68
|
end
|
69
69
|
end
|
70
70
|
|
71
|
-
describe 'test attribute "
|
71
|
+
describe 'test attribute "tls_validation"' do
|
72
72
|
it 'should work' do
|
73
73
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
74
74
|
end
|
75
75
|
end
|
76
76
|
|
77
|
-
describe 'test attribute "
|
77
|
+
describe 'test attribute "proxy_url"' do
|
78
78
|
it 'should work' do
|
79
79
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
80
80
|
end
|
81
81
|
end
|
82
82
|
|
83
|
-
describe 'test attribute "
|
83
|
+
describe 'test attribute "pulp_labels"' do
|
84
84
|
it 'should work' do
|
85
85
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
86
86
|
end
|
87
87
|
end
|
88
88
|
|
89
|
-
describe 'test attribute "
|
89
|
+
describe 'test attribute "pulp_last_updated"' do
|
90
90
|
it 'should work' do
|
91
91
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
92
92
|
end
|
93
93
|
end
|
94
94
|
|
95
|
-
describe 'test attribute "
|
95
|
+
describe 'test attribute "download_concurrency"' do
|
96
96
|
it 'should work' do
|
97
97
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
98
98
|
end
|
99
99
|
end
|
100
100
|
|
101
|
-
describe 'test attribute "
|
101
|
+
describe 'test attribute "policy"' do
|
102
102
|
it 'should work' do
|
103
103
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
104
104
|
end
|
105
105
|
end
|
106
106
|
|
107
|
-
describe 'test attribute "
|
107
|
+
describe 'test attribute "total_timeout"' do
|
108
108
|
it 'should work' do
|
109
109
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
110
110
|
end
|
111
111
|
end
|
112
112
|
|
113
|
-
describe 'test attribute "
|
113
|
+
describe 'test attribute "connect_timeout"' do
|
114
114
|
it 'should work' do
|
115
115
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
116
116
|
end
|
117
117
|
end
|
118
118
|
|
119
|
-
describe 'test attribute "
|
119
|
+
describe 'test attribute "sock_connect_timeout"' do
|
120
120
|
it 'should work' do
|
121
121
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
122
122
|
end
|
123
123
|
end
|
124
124
|
|
125
|
-
describe 'test attribute "
|
125
|
+
describe 'test attribute "sock_read_timeout"' do
|
126
126
|
it 'should work' do
|
127
127
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
128
128
|
end
|
129
129
|
end
|
130
130
|
|
131
|
-
describe 'test attribute "
|
131
|
+
describe 'test attribute "headers"' do
|
132
132
|
it 'should work' do
|
133
133
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
134
134
|
end
|
135
135
|
end
|
136
136
|
|
137
|
-
describe 'test attribute "
|
137
|
+
describe 'test attribute "rate_limit"' do
|
138
138
|
it 'should work' do
|
139
139
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
140
140
|
end
|
@@ -158,4 +158,22 @@ describe 'PythonPythonRemoteResponse' do
|
|
158
158
|
end
|
159
159
|
end
|
160
160
|
|
161
|
+
describe 'test attribute "package_types"' do
|
162
|
+
it 'should work' do
|
163
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
164
|
+
end
|
165
|
+
end
|
166
|
+
|
167
|
+
describe 'test attribute "keep_latest_packages"' do
|
168
|
+
it 'should work' do
|
169
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
170
|
+
end
|
171
|
+
end
|
172
|
+
|
173
|
+
describe 'test attribute "exclude_platforms"' do
|
174
|
+
it 'should work' do
|
175
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
176
|
+
end
|
177
|
+
end
|
178
|
+
|
161
179
|
end
|
@@ -74,6 +74,18 @@ describe 'PythonPythonRemote' do
|
|
74
74
|
end
|
75
75
|
end
|
76
76
|
|
77
|
+
describe 'test attribute "proxy_username"' do
|
78
|
+
it 'should work' do
|
79
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
80
|
+
end
|
81
|
+
end
|
82
|
+
|
83
|
+
describe 'test attribute "proxy_password"' do
|
84
|
+
it 'should work' do
|
85
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
86
|
+
end
|
87
|
+
end
|
88
|
+
|
77
89
|
describe 'test attribute "username"' do
|
78
90
|
it 'should work' do
|
79
91
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -86,6 +98,12 @@ describe 'PythonPythonRemote' do
|
|
86
98
|
end
|
87
99
|
end
|
88
100
|
|
101
|
+
describe 'test attribute "pulp_labels"' do
|
102
|
+
it 'should work' do
|
103
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
104
|
+
end
|
105
|
+
end
|
106
|
+
|
89
107
|
describe 'test attribute "download_concurrency"' do
|
90
108
|
it 'should work' do
|
91
109
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -122,6 +140,18 @@ describe 'PythonPythonRemote' do
|
|
122
140
|
end
|
123
141
|
end
|
124
142
|
|
143
|
+
describe 'test attribute "headers"' do
|
144
|
+
it 'should work' do
|
145
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
146
|
+
end
|
147
|
+
end
|
148
|
+
|
149
|
+
describe 'test attribute "rate_limit"' do
|
150
|
+
it 'should work' do
|
151
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
152
|
+
end
|
153
|
+
end
|
154
|
+
|
125
155
|
describe 'test attribute "includes"' do
|
126
156
|
it 'should work' do
|
127
157
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -140,4 +170,22 @@ describe 'PythonPythonRemote' do
|
|
140
170
|
end
|
141
171
|
end
|
142
172
|
|
173
|
+
describe 'test attribute "package_types"' do
|
174
|
+
it 'should work' do
|
175
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
176
|
+
end
|
177
|
+
end
|
178
|
+
|
179
|
+
describe 'test attribute "keep_latest_packages"' do
|
180
|
+
it 'should work' do
|
181
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
182
|
+
end
|
183
|
+
end
|
184
|
+
|
185
|
+
describe 'test attribute "exclude_platforms"' do
|
186
|
+
it 'should work' do
|
187
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
188
|
+
end
|
189
|
+
end
|
190
|
+
|
143
191
|
end
|
@@ -50,6 +50,12 @@ describe 'PythonPythonRepositoryResponse' do
|
|
50
50
|
end
|
51
51
|
end
|
52
52
|
|
53
|
+
describe 'test attribute "pulp_labels"' do
|
54
|
+
it 'should work' do
|
55
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
53
59
|
describe 'test attribute "latest_version_href"' do
|
54
60
|
it 'should work' do
|
55
61
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -32,6 +32,12 @@ describe 'PythonPythonRepository' do
|
|
32
32
|
expect(@instance).to be_instance_of(PulpPythonClient::PythonPythonRepository)
|
33
33
|
end
|
34
34
|
end
|
35
|
+
describe 'test attribute "pulp_labels"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
35
41
|
describe 'test attribute "name"' do
|
36
42
|
it 'should work' do
|
37
43
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pulp_python_client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.
|
4
|
+
version: 3.2.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-
|
11
|
+
date: 2021-04-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -79,6 +79,8 @@ files:
|
|
79
79
|
- docs/ContentSummary.md
|
80
80
|
- docs/ContentSummaryResponse.md
|
81
81
|
- docs/DistributionsPypiApi.md
|
82
|
+
- docs/ExcludePlatformsEnum.md
|
83
|
+
- docs/PackageTypesEnum.md
|
82
84
|
- docs/PaginatedRepositoryVersionResponseList.md
|
83
85
|
- docs/PaginatedpythonPythonDistributionResponseList.md
|
84
86
|
- docs/PaginatedpythonPythonPackageContentResponseList.md
|
@@ -122,6 +124,8 @@ files:
|
|
122
124
|
- lib/pulp_python_client/models/async_operation_response.rb
|
123
125
|
- lib/pulp_python_client/models/content_summary.rb
|
124
126
|
- lib/pulp_python_client/models/content_summary_response.rb
|
127
|
+
- lib/pulp_python_client/models/exclude_platforms_enum.rb
|
128
|
+
- lib/pulp_python_client/models/package_types_enum.rb
|
125
129
|
- lib/pulp_python_client/models/paginated_repository_version_response_list.rb
|
126
130
|
- lib/pulp_python_client/models/paginatedpython_python_distribution_response_list.rb
|
127
131
|
- lib/pulp_python_client/models/paginatedpython_python_package_content_response_list.rb
|
@@ -160,6 +164,8 @@ files:
|
|
160
164
|
- spec/models/async_operation_response_spec.rb
|
161
165
|
- spec/models/content_summary_response_spec.rb
|
162
166
|
- spec/models/content_summary_spec.rb
|
167
|
+
- spec/models/exclude_platforms_enum_spec.rb
|
168
|
+
- spec/models/package_types_enum_spec.rb
|
163
169
|
- spec/models/paginated_repository_version_response_list_spec.rb
|
164
170
|
- spec/models/paginatedpython_python_distribution_response_list_spec.rb
|
165
171
|
- spec/models/paginatedpython_python_package_content_response_list_spec.rb
|
@@ -210,40 +216,42 @@ signing_key:
|
|
210
216
|
specification_version: 4
|
211
217
|
summary: Pulp 3 API Ruby Gem
|
212
218
|
test_files:
|
219
|
+
- spec/api/content_packages_api_spec.rb
|
213
220
|
- spec/api/repositories_python_api_spec.rb
|
214
221
|
- spec/api/publications_pypi_api_spec.rb
|
215
|
-
- spec/api/remotes_python_api_spec.rb
|
216
222
|
- spec/api/distributions_pypi_api_spec.rb
|
223
|
+
- spec/api/remotes_python_api_spec.rb
|
217
224
|
- spec/api/repositories_python_versions_api_spec.rb
|
218
|
-
- spec/api/content_packages_api_spec.rb
|
219
225
|
- spec/api_client_spec.rb
|
220
226
|
- spec/configuration_spec.rb
|
227
|
+
- spec/models/repository_sync_url_spec.rb
|
228
|
+
- spec/models/paginatedpython_python_package_content_response_list_spec.rb
|
229
|
+
- spec/models/repository_version_response_spec.rb
|
230
|
+
- spec/models/python_python_repository_response_spec.rb
|
221
231
|
- spec/models/python_bander_remote_spec.rb
|
222
|
-
- spec/models/python_python_remote_spec.rb
|
223
|
-
- spec/models/content_summary_spec.rb
|
224
232
|
- spec/models/paginatedpython_python_distribution_response_list_spec.rb
|
233
|
+
- spec/models/paginatedpython_python_publication_response_list_spec.rb
|
234
|
+
- spec/models/python_python_distribution_response_spec.rb
|
235
|
+
- spec/models/python_python_publication_response_spec.rb
|
236
|
+
- spec/models/patchedpython_python_repository_spec.rb
|
237
|
+
- spec/models/python_python_remote_response_spec.rb
|
225
238
|
- spec/models/patchedpython_python_distribution_spec.rb
|
239
|
+
- spec/models/content_summary_response_spec.rb
|
240
|
+
- spec/models/patchedpython_python_remote_spec.rb
|
226
241
|
- spec/models/python_python_publication_spec.rb
|
227
|
-
- spec/models/repository_version_spec.rb
|
228
242
|
- spec/models/python_python_repository_spec.rb
|
229
|
-
- spec/models/
|
230
|
-
- spec/models/
|
231
|
-
- spec/models/repository_version_response_spec.rb
|
232
|
-
- spec/models/patchedpython_python_repository_spec.rb
|
233
|
-
- spec/models/repository_sync_url_spec.rb
|
234
|
-
- spec/models/python_python_package_content_response_spec.rb
|
243
|
+
- spec/models/content_summary_spec.rb
|
244
|
+
- spec/models/paginatedpython_python_remote_response_list_spec.rb
|
235
245
|
- spec/models/python_python_distribution_spec.rb
|
236
|
-
- spec/models/
|
237
|
-
- spec/models/
|
246
|
+
- spec/models/python_python_package_content_response_spec.rb
|
247
|
+
- spec/models/repository_version_spec.rb
|
248
|
+
- spec/models/exclude_platforms_enum_spec.rb
|
249
|
+
- spec/models/python_python_package_content_spec.rb
|
238
250
|
- spec/models/policy_enum_spec.rb
|
251
|
+
- spec/models/python_python_remote_spec.rb
|
252
|
+
- spec/models/package_types_enum_spec.rb
|
239
253
|
- spec/models/paginatedpython_python_repository_response_list_spec.rb
|
240
|
-
- spec/models/python_python_publication_response_spec.rb
|
241
|
-
- spec/models/paginatedpython_python_package_content_response_list_spec.rb
|
242
|
-
- spec/models/paginatedpython_python_remote_response_list_spec.rb
|
243
|
-
- spec/models/patchedpython_python_remote_spec.rb
|
244
|
-
- spec/models/python_python_distribution_response_spec.rb
|
245
254
|
- spec/models/repository_add_remove_content_spec.rb
|
255
|
+
- spec/models/async_operation_response_spec.rb
|
246
256
|
- spec/models/paginated_repository_version_response_list_spec.rb
|
247
|
-
- spec/models/python_python_remote_response_spec.rb
|
248
|
-
- spec/models/python_python_repository_response_spec.rb
|
249
257
|
- spec/spec_helper.rb
|