pulp_python_client 3.11.3 → 3.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 +31 -11
- data/docs/ContentPackagesApi.md +13 -13
- data/docs/DistributionsPypiApi.md +233 -1
- data/docs/MyPermissionsResponse.md +17 -0
- data/docs/NestedRole.md +21 -0
- data/docs/NestedRoleResponse.md +21 -0
- data/docs/ObjectRolesResponse.md +17 -0
- data/docs/PackageMetadataResponse.md +3 -3
- data/docs/PublicationsPypiApi.md +233 -1
- data/docs/PypiApi.md +8 -2
- data/docs/PypiLegacyApi.md +1 -1
- data/docs/PypiMetadataApi.md +8 -2
- data/docs/PypiSimpleApi.md +1 -1
- data/docs/PythonPythonPackageContent.md +6 -6
- data/docs/PythonPythonPackageContentResponse.md +6 -6
- data/docs/RemotesPythonApi.md +233 -1
- data/docs/RepositoriesPythonApi.md +233 -1
- data/docs/RepositoriesPythonVersionsApi.md +1 -1
- data/lib/pulp_python_client/api/content_packages_api.rb +12 -12
- data/lib/pulp_python_client/api/distributions_pypi_api.rb +276 -0
- data/lib/pulp_python_client/api/publications_pypi_api.rb +276 -0
- data/lib/pulp_python_client/api/pypi_api.rb +1 -1
- data/lib/pulp_python_client/api/pypi_metadata_api.rb +1 -1
- data/lib/pulp_python_client/api/remotes_python_api.rb +276 -0
- data/lib/pulp_python_client/api/repositories_python_api.rb +276 -0
- data/lib/pulp_python_client/configuration.rb +2 -2
- data/lib/pulp_python_client/models/my_permissions_response.rb +213 -0
- data/lib/pulp_python_client/models/nested_role.rb +253 -0
- data/lib/pulp_python_client/models/nested_role_response.rb +234 -0
- data/lib/pulp_python_client/models/object_roles_response.rb +213 -0
- data/lib/pulp_python_client/models/package_metadata_response.rb +3 -3
- data/lib/pulp_python_client/models/package_upload_task_response.rb +2 -10
- data/lib/pulp_python_client/models/patchedpython_python_remote.rb +20 -20
- data/lib/pulp_python_client/models/python_python_package_content.rb +6 -6
- data/lib/pulp_python_client/models/python_python_package_content_response.rb +6 -6
- data/lib/pulp_python_client/models/python_python_remote.rb +20 -20
- data/lib/pulp_python_client/models/python_python_remote_response.rb +20 -20
- data/lib/pulp_python_client/version.rb +1 -1
- data/lib/pulp_python_client.rb +4 -0
- data/spec/api/content_packages_api_spec.rb +6 -6
- data/spec/api/distributions_pypi_api_spec.rb +54 -0
- data/spec/api/publications_pypi_api_spec.rb +54 -0
- data/spec/api/remotes_python_api_spec.rb +54 -0
- data/spec/api/repositories_python_api_spec.rb +54 -0
- data/spec/configuration_spec.rb +3 -3
- data/spec/models/my_permissions_response_spec.rb +41 -0
- data/spec/models/nested_role_response_spec.rb +53 -0
- data/spec/models/nested_role_spec.rb +53 -0
- data/spec/models/object_roles_response_spec.rb +41 -0
- metadata +66 -50
@@ -32,6 +32,19 @@ describe 'RepositoriesPythonApi' do
|
|
32
32
|
end
|
33
33
|
end
|
34
34
|
|
35
|
+
# unit tests for add_role
|
36
|
+
# Add a role
|
37
|
+
# Add a role for this object to users/groups.
|
38
|
+
# @param python_python_repository_href
|
39
|
+
# @param nested_role
|
40
|
+
# @param [Hash] opts the optional parameters
|
41
|
+
# @return [NestedRoleResponse]
|
42
|
+
describe 'add_role test' do
|
43
|
+
it 'should work' do
|
44
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
35
48
|
# unit tests for create
|
36
49
|
# Create a python repository
|
37
50
|
# PythonRepository represents a single Python repository, to which content can be synced, added, or removed.
|
@@ -96,6 +109,20 @@ describe 'RepositoriesPythonApi' do
|
|
96
109
|
end
|
97
110
|
end
|
98
111
|
|
112
|
+
# unit tests for list_roles
|
113
|
+
# List roles
|
114
|
+
# List roles assigned to this object.
|
115
|
+
# @param python_python_repository_href
|
116
|
+
# @param [Hash] opts the optional parameters
|
117
|
+
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
118
|
+
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
119
|
+
# @return [ObjectRolesResponse]
|
120
|
+
describe 'list_roles test' do
|
121
|
+
it 'should work' do
|
122
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
123
|
+
end
|
124
|
+
end
|
125
|
+
|
99
126
|
# unit tests for modify
|
100
127
|
# Modify Repository Content
|
101
128
|
# Trigger an asynchronous task to create a new repository version.
|
@@ -109,6 +136,20 @@ describe 'RepositoriesPythonApi' do
|
|
109
136
|
end
|
110
137
|
end
|
111
138
|
|
139
|
+
# unit tests for my_permissions
|
140
|
+
# List user permissions
|
141
|
+
# List permissions available to the current user on this object.
|
142
|
+
# @param python_python_repository_href
|
143
|
+
# @param [Hash] opts the optional parameters
|
144
|
+
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
145
|
+
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
146
|
+
# @return [MyPermissionsResponse]
|
147
|
+
describe 'my_permissions test' do
|
148
|
+
it 'should work' do
|
149
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
150
|
+
end
|
151
|
+
end
|
152
|
+
|
112
153
|
# unit tests for partial_update
|
113
154
|
# Update a python repository
|
114
155
|
# Trigger an asynchronous partial update task
|
@@ -136,6 +177,19 @@ describe 'RepositoriesPythonApi' do
|
|
136
177
|
end
|
137
178
|
end
|
138
179
|
|
180
|
+
# unit tests for remove_role
|
181
|
+
# Remove a role
|
182
|
+
# Remove a role for this object from users/groups.
|
183
|
+
# @param python_python_repository_href
|
184
|
+
# @param nested_role
|
185
|
+
# @param [Hash] opts the optional parameters
|
186
|
+
# @return [NestedRoleResponse]
|
187
|
+
describe 'remove_role test' do
|
188
|
+
it 'should work' do
|
189
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
190
|
+
end
|
191
|
+
end
|
192
|
+
|
139
193
|
# unit tests for set_label
|
140
194
|
# Set a label
|
141
195
|
# Set a single pulp_label on the object to a specific value or null.
|
data/spec/configuration_spec.rb
CHANGED
@@ -18,7 +18,7 @@ describe PulpPythonClient::Configuration do
|
|
18
18
|
before(:each) do
|
19
19
|
# uncomment below to setup host and base_path
|
20
20
|
# require 'URI'
|
21
|
-
# uri = URI.parse("http://
|
21
|
+
# uri = URI.parse("http://pulp")
|
22
22
|
# PulpPythonClient.configure do |c|
|
23
23
|
# c.host = uri.host
|
24
24
|
# c.base_path = uri.path
|
@@ -28,14 +28,14 @@ describe PulpPythonClient::Configuration do
|
|
28
28
|
describe '#base_url' do
|
29
29
|
it 'should have the default value' do
|
30
30
|
# uncomment below to test default value of the base path
|
31
|
-
# expect(config.base_url).to eq("http://
|
31
|
+
# expect(config.base_url).to eq("http://pulp")
|
32
32
|
end
|
33
33
|
|
34
34
|
it 'should remove trailing slashes' do
|
35
35
|
[nil, '', '/', '//'].each do |base_path|
|
36
36
|
config.base_path = base_path
|
37
37
|
# uncomment below to test trailing slashes
|
38
|
-
# expect(config.base_url).to eq("http://
|
38
|
+
# expect(config.base_url).to eq("http://pulp")
|
39
39
|
end
|
40
40
|
end
|
41
41
|
end
|
@@ -0,0 +1,41 @@
|
|
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.3.1
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for PulpPythonClient::MyPermissionsResponse
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'MyPermissionsResponse' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = PulpPythonClient::MyPermissionsResponse.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of MyPermissionsResponse' do
|
31
|
+
it 'should create an instance of MyPermissionsResponse' do
|
32
|
+
expect(@instance).to be_instance_of(PulpPythonClient::MyPermissionsResponse)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "permissions"' 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
|
+
|
41
|
+
end
|
@@ -0,0 +1,53 @@
|
|
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.3.1
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for PulpPythonClient::NestedRoleResponse
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'NestedRoleResponse' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = PulpPythonClient::NestedRoleResponse.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of NestedRoleResponse' do
|
31
|
+
it 'should create an instance of NestedRoleResponse' do
|
32
|
+
expect(@instance).to be_instance_of(PulpPythonClient::NestedRoleResponse)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "users"' 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
|
+
|
41
|
+
describe 'test attribute "groups"' do
|
42
|
+
it 'should work' do
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
describe 'test attribute "role"' 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
|
+
|
53
|
+
end
|
@@ -0,0 +1,53 @@
|
|
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.3.1
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for PulpPythonClient::NestedRole
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'NestedRole' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = PulpPythonClient::NestedRole.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of NestedRole' do
|
31
|
+
it 'should create an instance of NestedRole' do
|
32
|
+
expect(@instance).to be_instance_of(PulpPythonClient::NestedRole)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "users"' 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
|
+
|
41
|
+
describe 'test attribute "groups"' do
|
42
|
+
it 'should work' do
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
describe 'test attribute "role"' 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
|
+
|
53
|
+
end
|
@@ -0,0 +1,41 @@
|
|
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.3.1
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for PulpPythonClient::ObjectRolesResponse
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'ObjectRolesResponse' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = PulpPythonClient::ObjectRolesResponse.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of ObjectRolesResponse' do
|
31
|
+
it 'should create an instance of ObjectRolesResponse' do
|
32
|
+
expect(@instance).to be_instance_of(PulpPythonClient::ObjectRolesResponse)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "roles"' 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
|
+
|
41
|
+
end
|
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.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: 2024-
|
11
|
+
date: 2024-06-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -34,42 +34,42 @@ dependencies:
|
|
34
34
|
name: json
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
36
36
|
requirements:
|
37
|
-
- - "~>"
|
38
|
-
- !ruby/object:Gem::Version
|
39
|
-
version: '2.1'
|
40
37
|
- - ">="
|
41
38
|
- !ruby/object:Gem::Version
|
42
39
|
version: 2.1.0
|
40
|
+
- - "~>"
|
41
|
+
- !ruby/object:Gem::Version
|
42
|
+
version: '2.1'
|
43
43
|
type: :runtime
|
44
44
|
prerelease: false
|
45
45
|
version_requirements: !ruby/object:Gem::Requirement
|
46
46
|
requirements:
|
47
|
-
- - "~>"
|
48
|
-
- !ruby/object:Gem::Version
|
49
|
-
version: '2.1'
|
50
47
|
- - ">="
|
51
48
|
- !ruby/object:Gem::Version
|
52
49
|
version: 2.1.0
|
50
|
+
- - "~>"
|
51
|
+
- !ruby/object:Gem::Version
|
52
|
+
version: '2.1'
|
53
53
|
- !ruby/object:Gem::Dependency
|
54
54
|
name: rspec
|
55
55
|
requirement: !ruby/object:Gem::Requirement
|
56
56
|
requirements:
|
57
|
-
- - "~>"
|
58
|
-
- !ruby/object:Gem::Version
|
59
|
-
version: '3.6'
|
60
57
|
- - ">="
|
61
58
|
- !ruby/object:Gem::Version
|
62
59
|
version: 3.6.0
|
60
|
+
- - "~>"
|
61
|
+
- !ruby/object:Gem::Version
|
62
|
+
version: '3.6'
|
63
63
|
type: :development
|
64
64
|
prerelease: false
|
65
65
|
version_requirements: !ruby/object:Gem::Requirement
|
66
66
|
requirements:
|
67
|
-
- - "~>"
|
68
|
-
- !ruby/object:Gem::Version
|
69
|
-
version: '3.6'
|
70
67
|
- - ">="
|
71
68
|
- !ruby/object:Gem::Version
|
72
69
|
version: 3.6.0
|
70
|
+
- - "~>"
|
71
|
+
- !ruby/object:Gem::Version
|
72
|
+
version: '3.6'
|
73
73
|
description: Fetch, Upload, Organize, and Distribute Software Packages
|
74
74
|
email:
|
75
75
|
- pulp-list@redhat.com
|
@@ -85,6 +85,10 @@ files:
|
|
85
85
|
- docs/ContentSummaryResponse.md
|
86
86
|
- docs/DistributionsPypiApi.md
|
87
87
|
- docs/ExcludePlatformsEnum.md
|
88
|
+
- docs/MyPermissionsResponse.md
|
89
|
+
- docs/NestedRole.md
|
90
|
+
- docs/NestedRoleResponse.md
|
91
|
+
- docs/ObjectRolesResponse.md
|
88
92
|
- docs/PackageMetadataResponse.md
|
89
93
|
- docs/PackageTypesEnum.md
|
90
94
|
- docs/PackageUpload.md
|
@@ -145,6 +149,10 @@ files:
|
|
145
149
|
- lib/pulp_python_client/models/async_operation_response.rb
|
146
150
|
- lib/pulp_python_client/models/content_summary_response.rb
|
147
151
|
- lib/pulp_python_client/models/exclude_platforms_enum.rb
|
152
|
+
- lib/pulp_python_client/models/my_permissions_response.rb
|
153
|
+
- lib/pulp_python_client/models/nested_role.rb
|
154
|
+
- lib/pulp_python_client/models/nested_role_response.rb
|
155
|
+
- lib/pulp_python_client/models/object_roles_response.rb
|
148
156
|
- lib/pulp_python_client/models/package_metadata_response.rb
|
149
157
|
- lib/pulp_python_client/models/package_types_enum.rb
|
150
158
|
- lib/pulp_python_client/models/package_upload.rb
|
@@ -197,6 +205,10 @@ files:
|
|
197
205
|
- spec/models/async_operation_response_spec.rb
|
198
206
|
- spec/models/content_summary_response_spec.rb
|
199
207
|
- spec/models/exclude_platforms_enum_spec.rb
|
208
|
+
- spec/models/my_permissions_response_spec.rb
|
209
|
+
- spec/models/nested_role_response_spec.rb
|
210
|
+
- spec/models/nested_role_spec.rb
|
211
|
+
- spec/models/object_roles_response_spec.rb
|
200
212
|
- spec/models/package_metadata_response_spec.rb
|
201
213
|
- spec/models/package_types_enum_spec.rb
|
202
214
|
- spec/models/package_upload_spec.rb
|
@@ -252,59 +264,63 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
252
264
|
- !ruby/object:Gem::Version
|
253
265
|
version: '0'
|
254
266
|
requirements: []
|
255
|
-
rubygems_version: 3.3.
|
267
|
+
rubygems_version: 3.0.3.1
|
256
268
|
signing_key:
|
257
269
|
specification_version: 4
|
258
270
|
summary: Pulp 3 API Ruby Gem
|
259
271
|
test_files:
|
260
|
-
- spec/api/repositories_python_api_spec.rb
|
261
|
-
- spec/api/distributions_pypi_api_spec.rb
|
262
|
-
- spec/api/pypi_legacy_api_spec.rb
|
263
|
-
- spec/api/pypi_simple_api_spec.rb
|
264
|
-
- spec/api/publications_pypi_api_spec.rb
|
265
|
-
- spec/api/pypi_api_spec.rb
|
266
272
|
- spec/api/repositories_python_versions_api_spec.rb
|
273
|
+
- spec/api/publications_pypi_api_spec.rb
|
274
|
+
- spec/api/remotes_python_api_spec.rb
|
275
|
+
- spec/api/pypi_legacy_api_spec.rb
|
267
276
|
- spec/api/content_packages_api_spec.rb
|
277
|
+
- spec/api/pypi_api_spec.rb
|
278
|
+
- spec/api/pypi_simple_api_spec.rb
|
279
|
+
- spec/api/distributions_pypi_api_spec.rb
|
280
|
+
- spec/api/repositories_python_api_spec.rb
|
268
281
|
- spec/api/pypi_metadata_api_spec.rb
|
269
|
-
- spec/api/remotes_python_api_spec.rb
|
270
282
|
- spec/api_client_spec.rb
|
271
283
|
- spec/configuration_spec.rb
|
272
|
-
- spec/models/
|
273
|
-
- spec/models/
|
274
|
-
- spec/models/
|
275
|
-
- spec/models/
|
276
|
-
- spec/models/
|
284
|
+
- spec/models/python_python_publication_response_spec.rb
|
285
|
+
- spec/models/paginatedpython_python_package_content_response_list_spec.rb
|
286
|
+
- spec/models/patchedpython_python_distribution_spec.rb
|
287
|
+
- spec/models/object_roles_response_spec.rb
|
288
|
+
- spec/models/patchedpython_python_repository_spec.rb
|
277
289
|
- spec/models/python_python_remote_response_spec.rb
|
278
|
-
- spec/models/
|
279
|
-
- spec/models/paginated_repository_version_response_list_spec.rb
|
290
|
+
- spec/models/unset_label_response_spec.rb
|
280
291
|
- spec/models/set_label_response_spec.rb
|
281
|
-
- spec/models/policy_enum_spec.rb
|
282
|
-
- spec/models/repository_version_response_spec.rb
|
283
|
-
- spec/models/unset_label_spec.rb
|
284
|
-
- spec/models/paginatedpython_python_remote_response_list_spec.rb
|
285
|
-
- spec/models/python_python_distribution_response_spec.rb
|
286
292
|
- spec/models/repository_sync_url_spec.rb
|
287
|
-
- spec/models/
|
288
|
-
- spec/models/
|
289
|
-
- spec/models/
|
290
|
-
- spec/models/python_python_repository_spec.rb
|
291
|
-
- spec/models/paginatedpython_python_package_content_response_list_spec.rb
|
292
|
-
- spec/models/python_bander_remote_spec.rb
|
293
|
-
- spec/models/package_upload_task_response_spec.rb
|
294
|
-
- spec/models/async_operation_response_spec.rb
|
293
|
+
- spec/models/python_python_repository_response_spec.rb
|
294
|
+
- spec/models/python_python_distribution_spec.rb
|
295
|
+
- spec/models/my_permissions_response_spec.rb
|
295
296
|
- spec/models/python_python_package_content_response_spec.rb
|
296
297
|
- spec/models/paginatedpython_python_repository_response_list_spec.rb
|
297
|
-
- spec/models/
|
298
|
-
- spec/models/patchedpython_python_remote_spec.rb
|
298
|
+
- spec/models/content_summary_response_spec.rb
|
299
299
|
- spec/models/python_python_package_content_spec.rb
|
300
|
-
- spec/models/paginatedpython_python_distribution_response_list_spec.rb
|
301
300
|
- spec/models/python_python_publication_spec.rb
|
302
|
-
- spec/models/
|
303
|
-
- spec/models/
|
301
|
+
- spec/models/paginatedpython_python_remote_response_list_spec.rb
|
302
|
+
- spec/models/python_python_remote_response_hidden_fields_spec.rb
|
304
303
|
- spec/models/package_metadata_response_spec.rb
|
304
|
+
- spec/models/repair_spec.rb
|
305
305
|
- spec/models/repository_add_remove_content_spec.rb
|
306
|
-
- spec/models/
|
307
|
-
- spec/models/
|
306
|
+
- spec/models/policy_enum_spec.rb
|
307
|
+
- spec/models/paginatedpython_python_distribution_response_list_spec.rb
|
308
|
+
- spec/models/repository_version_response_spec.rb
|
309
|
+
- spec/models/python_bander_remote_spec.rb
|
310
|
+
- spec/models/python_python_repository_spec.rb
|
311
|
+
- spec/models/async_operation_response_spec.rb
|
312
|
+
- spec/models/paginated_repository_version_response_list_spec.rb
|
313
|
+
- spec/models/summary_response_spec.rb
|
314
|
+
- spec/models/nested_role_response_spec.rb
|
308
315
|
- spec/models/set_label_spec.rb
|
309
|
-
- spec/models/
|
316
|
+
- spec/models/python_python_remote_spec.rb
|
317
|
+
- spec/models/nested_role_spec.rb
|
318
|
+
- spec/models/exclude_platforms_enum_spec.rb
|
319
|
+
- spec/models/package_upload_spec.rb
|
320
|
+
- spec/models/python_python_distribution_response_spec.rb
|
321
|
+
- spec/models/package_types_enum_spec.rb
|
322
|
+
- spec/models/patchedpython_python_remote_spec.rb
|
323
|
+
- spec/models/paginatedpython_python_publication_response_list_spec.rb
|
324
|
+
- spec/models/unset_label_spec.rb
|
325
|
+
- spec/models/package_upload_task_response_spec.rb
|
310
326
|
- spec/spec_helper.rb
|