pulp_python_client 3.7.3 → 3.8.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.
Files changed (54) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +5 -4
  3. data/docs/ContentPackagesApi.md +8 -8
  4. data/docs/DistributionsPypiApi.md +12 -12
  5. data/docs/PatchedpythonPythonDistribution.md +1 -1
  6. data/docs/PatchedpythonPythonRemote.md +1 -1
  7. data/docs/PatchedpythonPythonRepository.md +1 -1
  8. data/docs/PublicationsPypiApi.md +10 -10
  9. data/docs/PypiApi.md +4 -4
  10. data/docs/PypiMetadataApi.md +4 -4
  11. data/docs/PypiSimpleApi.md +8 -8
  12. data/docs/PythonPythonDistribution.md +1 -1
  13. data/docs/PythonPythonDistributionResponse.md +1 -1
  14. data/docs/PythonPythonRemote.md +1 -1
  15. data/docs/PythonPythonRemoteResponse.md +3 -1
  16. data/docs/PythonPythonRemoteResponseHiddenFields.md +19 -0
  17. data/docs/PythonPythonRepository.md +1 -1
  18. data/docs/PythonPythonRepositoryResponse.md +1 -1
  19. data/docs/RemotesPythonApi.md +12 -12
  20. data/docs/RepositoriesPythonApi.md +11 -11
  21. data/docs/RepositoriesPythonVersionsApi.md +12 -12
  22. data/lib/pulp_python_client/api/content_packages_api.rb +13 -13
  23. data/lib/pulp_python_client/api/distributions_pypi_api.rb +17 -17
  24. data/lib/pulp_python_client/api/publications_pypi_api.rb +15 -15
  25. data/lib/pulp_python_client/api/pypi_api.rb +6 -6
  26. data/lib/pulp_python_client/api/pypi_metadata_api.rb +6 -6
  27. data/lib/pulp_python_client/api/pypi_simple_api.rb +12 -12
  28. data/lib/pulp_python_client/api/remotes_python_api.rb +17 -17
  29. data/lib/pulp_python_client/api/repositories_python_api.rb +15 -15
  30. data/lib/pulp_python_client/api/repositories_python_versions_api.rb +17 -17
  31. data/lib/pulp_python_client/models/patchedpython_python_distribution.rb +4 -2
  32. data/lib/pulp_python_client/models/patchedpython_python_remote.rb +4 -2
  33. data/lib/pulp_python_client/models/patchedpython_python_repository.rb +4 -2
  34. data/lib/pulp_python_client/models/python_python_distribution.rb +4 -2
  35. data/lib/pulp_python_client/models/python_python_distribution_response.rb +4 -2
  36. data/lib/pulp_python_client/models/python_python_remote.rb +4 -2
  37. data/lib/pulp_python_client/models/python_python_remote_response.rb +17 -3
  38. data/lib/pulp_python_client/models/python_python_remote_response_hidden_fields.rb +215 -0
  39. data/lib/pulp_python_client/models/python_python_repository.rb +4 -2
  40. data/lib/pulp_python_client/models/python_python_repository_response.rb +4 -2
  41. data/lib/pulp_python_client/version.rb +1 -1
  42. data/lib/pulp_python_client.rb +1 -0
  43. data/spec/api/content_packages_api_spec.rb +4 -4
  44. data/spec/api/distributions_pypi_api_spec.rb +6 -6
  45. data/spec/api/publications_pypi_api_spec.rb +5 -5
  46. data/spec/api/pypi_api_spec.rb +2 -2
  47. data/spec/api/pypi_metadata_api_spec.rb +2 -2
  48. data/spec/api/pypi_simple_api_spec.rb +4 -4
  49. data/spec/api/remotes_python_api_spec.rb +6 -6
  50. data/spec/api/repositories_python_api_spec.rb +5 -5
  51. data/spec/api/repositories_python_versions_api_spec.rb +6 -6
  52. data/spec/models/python_python_remote_response_hidden_fields_spec.rb +47 -0
  53. data/spec/models/python_python_remote_response_spec.rb +6 -0
  54. metadata +35 -31
@@ -11,5 +11,5 @@ OpenAPI Generator version: 4.3.1
11
11
  =end
12
12
 
13
13
  module PulpPythonClient
14
- VERSION = '3.7.3'
14
+ VERSION = '3.8.0'
15
15
  end
@@ -43,6 +43,7 @@ require 'pulp_python_client/models/python_python_publication'
43
43
  require 'pulp_python_client/models/python_python_publication_response'
44
44
  require 'pulp_python_client/models/python_python_remote'
45
45
  require 'pulp_python_client/models/python_python_remote_response'
46
+ require 'pulp_python_client/models/python_python_remote_response_hidden_fields'
46
47
  require 'pulp_python_client/models/python_python_repository'
47
48
  require 'pulp_python_client/models/python_python_repository_response'
48
49
  require 'pulp_python_client/models/repair'
@@ -96,8 +96,8 @@ describe 'ContentPackagesApi' do
96
96
  # @option opts [Array<String>] :requires_python__in Filter results where requires_python is in a comma-separated list of values
97
97
  # @option opts [String] :sha256 Filter results where sha256 matches value
98
98
  # @option opts [Array<String>] :sha256__in Filter results where sha256 is in a comma-separated list of values
99
- # @option opts [String] :fields A list of fields to include in the response.
100
- # @option opts [String] :exclude_fields A list of fields to exclude from the response.
99
+ # @option opts [Array<String>] :fields A list of fields to include in the response.
100
+ # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
101
101
  # @return [PaginatedpythonPythonPackageContentResponseList]
102
102
  describe 'list test' do
103
103
  it 'should work' do
@@ -110,8 +110,8 @@ describe 'ContentPackagesApi' do
110
110
  # PythonPackageContent represents each individually installable Python package. In the Python ecosystem, this is called a Python Distribution, sometimes (ambiguously) refered to as a package. In Pulp Python, we refer to it as PythonPackageContent. Each PythonPackageContent corresponds to a single filename, for example &#x60;pulpcore-3.0.0rc1-py3-none-any.whl&#x60; or &#x60;pulpcore-3.0.0rc1.tar.gz&#x60;.
111
111
  # @param python_python_package_content_href
112
112
  # @param [Hash] opts the optional parameters
113
- # @option opts [String] :fields A list of fields to include in the response.
114
- # @option opts [String] :exclude_fields A list of fields to exclude from the response.
113
+ # @option opts [Array<String>] :fields A list of fields to include in the response.
114
+ # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
115
115
  # @return [PythonPythonPackageContentResponse]
116
116
  describe 'read test' do
117
117
  it 'should work' do
@@ -60,12 +60,12 @@ describe 'DistributionsPypiApi' do
60
60
  # List python distributions
61
61
  # Pulp Python Distributions are used to distribute Python content from Python Repositories or Python Publications. Pulp Python Distributions should not be confused with \&quot;Python Distribution\&quot; as defined by the Python community. In Pulp usage, Python content is referred to as Python Package Content.
62
62
  # @param [Hash] opts the optional parameters
63
- # @option opts [String] :base_path
63
+ # @option opts [String] :base_path Filter results where base_path matches value
64
64
  # @option opts [String] :base_path__contains Filter results where base_path contains value
65
65
  # @option opts [String] :base_path__icontains Filter results where base_path contains value
66
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
68
+ # @option opts [String] :name Filter results where name matches value
69
69
  # @option opts [String] :name__contains Filter results where name contains value
70
70
  # @option opts [String] :name__icontains Filter results where name contains value
71
71
  # @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
@@ -74,8 +74,8 @@ describe 'DistributionsPypiApi' do
74
74
  # @option opts [Array<String>] :ordering Ordering
75
75
  # @option opts [String] :pulp_label_select Filter labels by search string
76
76
  # @option opts [String] :with_content Filter distributions based on the content served by them
77
- # @option opts [String] :fields A list of fields to include in the response.
78
- # @option opts [String] :exclude_fields A list of fields to exclude from the response.
77
+ # @option opts [Array<String>] :fields A list of fields to include in the response.
78
+ # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
79
79
  # @return [PaginatedpythonPythonDistributionResponseList]
80
80
  describe 'list test' do
81
81
  it 'should work' do
@@ -101,8 +101,8 @@ describe 'DistributionsPypiApi' do
101
101
  # Pulp Python Distributions are used to distribute Python content from Python Repositories or Python Publications. Pulp Python Distributions should not be confused with \&quot;Python Distribution\&quot; as defined by the Python community. In Pulp usage, Python content is referred to as Python Package Content.
102
102
  # @param python_python_distribution_href
103
103
  # @param [Hash] opts the optional parameters
104
- # @option opts [String] :fields A list of fields to include in the response.
105
- # @option opts [String] :exclude_fields A list of fields to exclude from the response.
104
+ # @option opts [Array<String>] :fields A list of fields to include in the response.
105
+ # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
106
106
  # @return [PythonPythonDistributionResponse]
107
107
  describe 'read test' do
108
108
  it 'should work' do
@@ -65,7 +65,7 @@ describe 'PublicationsPypiApi' do
65
65
  # @option opts [Integer] :limit Number of results to return per page.
66
66
  # @option opts [Integer] :offset The initial index from which to return the results.
67
67
  # @option opts [Array<String>] :ordering Ordering
68
- # @option opts [DateTime] :pulp_created ISO 8601 formatted dates are supported
68
+ # @option opts [DateTime] :pulp_created Filter results where pulp_created matches value
69
69
  # @option opts [DateTime] :pulp_created__gt Filter results where pulp_created is greater than value
70
70
  # @option opts [DateTime] :pulp_created__gte Filter results where pulp_created is greater than or equal to value
71
71
  # @option opts [DateTime] :pulp_created__lt Filter results where pulp_created is less than value
@@ -73,8 +73,8 @@ describe 'PublicationsPypiApi' do
73
73
  # @option opts [Array<DateTime>] :pulp_created__range Filter results where pulp_created is between two comma separated values
74
74
  # @option opts [String] :repository Repository referenced by HREF
75
75
  # @option opts [String] :repository_version Repository Version referenced by HREF
76
- # @option opts [String] :fields A list of fields to include in the response.
77
- # @option opts [String] :exclude_fields A list of fields to exclude from the response.
76
+ # @option opts [Array<String>] :fields A list of fields to include in the response.
77
+ # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
78
78
  # @return [PaginatedpythonPythonPublicationResponseList]
79
79
  describe 'list test' do
80
80
  it 'should work' do
@@ -87,8 +87,8 @@ describe 'PublicationsPypiApi' do
87
87
  # Python Publications refer to the Python Package content in a repository version, and include metadata about that content.
88
88
  # @param python_python_publication_href
89
89
  # @param [Hash] opts the optional parameters
90
- # @option opts [String] :fields A list of fields to include in the response.
91
- # @option opts [String] :exclude_fields A list of fields to exclude from the response.
90
+ # @option opts [Array<String>] :fields A list of fields to include in the response.
91
+ # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
92
92
  # @return [PythonPythonPublicationResponse]
93
93
  describe 'read test' do
94
94
  it 'should work' do
@@ -37,8 +37,8 @@ describe 'PypiApi' do
37
37
  # Gets package summary stats of index.
38
38
  # @param path
39
39
  # @param [Hash] opts the optional parameters
40
- # @option opts [String] :fields A list of fields to include in the response.
41
- # @option opts [String] :exclude_fields A list of fields to exclude from the response.
40
+ # @option opts [Array<String>] :fields A list of fields to include in the response.
41
+ # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
42
42
  # @return [SummaryResponse]
43
43
  describe 'read test' do
44
44
  it 'should work' do
@@ -38,8 +38,8 @@ describe 'PypiMetadataApi' do
38
38
  # @param meta
39
39
  # @param path
40
40
  # @param [Hash] opts the optional parameters
41
- # @option opts [String] :fields A list of fields to include in the response.
42
- # @option opts [String] :exclude_fields A list of fields to exclude from the response.
41
+ # @option opts [Array<String>] :fields A list of fields to include in the response.
42
+ # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
43
43
  # @return [PackageMetadataResponse]
44
44
  describe 'read test' do
45
45
  it 'should work' do
@@ -52,8 +52,8 @@ describe 'PypiSimpleApi' do
52
52
  # Gets the simple api html page for the index.
53
53
  # @param path
54
54
  # @param [Hash] opts the optional parameters
55
- # @option opts [String] :fields A list of fields to include in the response.
56
- # @option opts [String] :exclude_fields A list of fields to exclude from the response.
55
+ # @option opts [Array<String>] :fields A list of fields to include in the response.
56
+ # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
57
57
  # @return [nil]
58
58
  describe 'read test' do
59
59
  it 'should work' do
@@ -67,8 +67,8 @@ describe 'PypiSimpleApi' do
67
67
  # @param package
68
68
  # @param path
69
69
  # @param [Hash] opts the optional parameters
70
- # @option opts [String] :fields A list of fields to include in the response.
71
- # @option opts [String] :exclude_fields A list of fields to exclude from the response.
70
+ # @option opts [Array<String>] :fields A list of fields to include in the response.
71
+ # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
72
72
  # @return [nil]
73
73
  describe 'read_0 test' do
74
74
  it 'should work' do
@@ -75,7 +75,7 @@ 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 &#x60;sync&#x60; 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
78
+ # @option opts [String] :name Filter results where name matches value
79
79
  # @option opts [String] :name__contains Filter results where name contains value
80
80
  # @option opts [String] :name__icontains Filter results where name contains value
81
81
  # @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
@@ -83,14 +83,14 @@ describe 'RemotesPythonApi' do
83
83
  # @option opts [Integer] :offset The initial index from which to return the results.
84
84
  # @option opts [Array<String>] :ordering Ordering
85
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
86
+ # @option opts [DateTime] :pulp_last_updated Filter results where pulp_last_updated matches value
87
87
  # @option opts [DateTime] :pulp_last_updated__gt Filter results where pulp_last_updated is greater than value
88
88
  # @option opts [DateTime] :pulp_last_updated__gte Filter results where pulp_last_updated is greater than or equal to value
89
89
  # @option opts [DateTime] :pulp_last_updated__lt Filter results where pulp_last_updated is less than value
90
90
  # @option opts [DateTime] :pulp_last_updated__lte Filter results where pulp_last_updated is less than or equal to value
91
91
  # @option opts [Array<DateTime>] :pulp_last_updated__range Filter results where pulp_last_updated is between two comma separated values
92
- # @option opts [String] :fields A list of fields to include in the response.
93
- # @option opts [String] :exclude_fields A list of fields to exclude from the response.
92
+ # @option opts [Array<String>] :fields A list of fields to include in the response.
93
+ # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
94
94
  # @return [PaginatedpythonPythonRemoteResponseList]
95
95
  describe 'list test' do
96
96
  it 'should work' do
@@ -116,8 +116,8 @@ describe 'RemotesPythonApi' do
116
116
  # Python Remotes are representations of an external repository of Python content, eg. PyPI. Fields include upstream repository config. Python Remotes are also used to &#x60;sync&#x60; from upstream repositories, and contains sync settings.
117
117
  # @param python_python_remote_href
118
118
  # @param [Hash] opts the optional parameters
119
- # @option opts [String] :fields A list of fields to include in the response.
120
- # @option opts [String] :exclude_fields A list of fields to exclude from the response.
119
+ # @option opts [Array<String>] :fields A list of fields to include in the response.
120
+ # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
121
121
  # @return [PythonPythonRemoteResponse]
122
122
  describe 'read test' do
123
123
  it 'should work' do
@@ -61,7 +61,7 @@ describe 'RepositoriesPythonApi' do
61
61
  # PythonRepository represents a single Python repository, to which content can be synced, added, or removed.
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
64
+ # @option opts [String] :name Filter results where name matches value
65
65
  # @option opts [String] :name__contains Filter results where name contains value
66
66
  # @option opts [String] :name__icontains Filter results where name contains value
67
67
  # @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
@@ -70,8 +70,8 @@ describe 'RepositoriesPythonApi' do
70
70
  # @option opts [Array<String>] :ordering Ordering
71
71
  # @option opts [String] :pulp_label_select Filter labels by search string
72
72
  # @option opts [String] :remote Foreign Key referenced by HREF
73
- # @option opts [String] :fields A list of fields to include in the response.
74
- # @option opts [String] :exclude_fields A list of fields to exclude from the response.
73
+ # @option opts [Array<String>] :fields A list of fields to include in the response.
74
+ # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
75
75
  # @return [PaginatedpythonPythonRepositoryResponseList]
76
76
  describe 'list test' do
77
77
  it 'should work' do
@@ -110,8 +110,8 @@ describe 'RepositoriesPythonApi' do
110
110
  # PythonRepository represents a single Python repository, to which content can be synced, added, or removed.
111
111
  # @param python_python_repository_href
112
112
  # @param [Hash] opts the optional parameters
113
- # @option opts [String] :fields A list of fields to include in the response.
114
- # @option opts [String] :exclude_fields A list of fields to exclude from the response.
113
+ # @option opts [Array<String>] :fields A list of fields to include in the response.
114
+ # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
115
115
  # @return [PythonPythonRepositoryResponse]
116
116
  describe 'read test' do
117
117
  it 'should work' do
@@ -52,7 +52,7 @@ describe 'RepositoriesPythonVersionsApi' do
52
52
  # @option opts [String] :content Content Unit referenced by HREF
53
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 [Integer] :number
55
+ # @option opts [Integer] :number Filter results where number matches value
56
56
  # @option opts [Integer] :number__gt Filter results where number is greater than value
57
57
  # @option opts [Integer] :number__gte Filter results where number is greater than or equal to value
58
58
  # @option opts [Integer] :number__lt Filter results where number is less than value
@@ -60,14 +60,14 @@ describe 'RepositoriesPythonVersionsApi' do
60
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 [Array<String>] :ordering Ordering
63
- # @option opts [DateTime] :pulp_created ISO 8601 formatted dates are supported
63
+ # @option opts [DateTime] :pulp_created Filter results where pulp_created matches value
64
64
  # @option opts [DateTime] :pulp_created__gt Filter results where pulp_created is greater than value
65
65
  # @option opts [DateTime] :pulp_created__gte Filter results where pulp_created is greater than or equal to value
66
66
  # @option opts [DateTime] :pulp_created__lt Filter results where pulp_created is less than value
67
67
  # @option opts [DateTime] :pulp_created__lte Filter results where pulp_created is less than or equal to value
68
68
  # @option opts [Array<DateTime>] :pulp_created__range Filter results where pulp_created is between two comma separated values
69
- # @option opts [String] :fields A list of fields to include in the response.
70
- # @option opts [String] :exclude_fields A list of fields to exclude from the response.
69
+ # @option opts [Array<String>] :fields A list of fields to include in the response.
70
+ # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
71
71
  # @return [PaginatedRepositoryVersionResponseList]
72
72
  describe 'list test' do
73
73
  it 'should work' do
@@ -80,8 +80,8 @@ describe 'RepositoriesPythonVersionsApi' do
80
80
  # PythonRepositoryVersion represents a single Python repository version.
81
81
  # @param python_python_repository_version_href
82
82
  # @param [Hash] opts the optional parameters
83
- # @option opts [String] :fields A list of fields to include in the response.
84
- # @option opts [String] :exclude_fields A list of fields to exclude from the response.
83
+ # @option opts [Array<String>] :fields A list of fields to include in the response.
84
+ # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
85
85
  # @return [RepositoryVersionResponse]
86
86
  describe 'read test' do
87
87
  it 'should work' do
@@ -0,0 +1,47 @@
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::PythonPythonRemoteResponseHiddenFields
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe 'PythonPythonRemoteResponseHiddenFields' do
21
+ before do
22
+ # run before each test
23
+ @instance = PulpPythonClient::PythonPythonRemoteResponseHiddenFields.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of PythonPythonRemoteResponseHiddenFields' do
31
+ it 'should create an instance of PythonPythonRemoteResponseHiddenFields' do
32
+ expect(@instance).to be_instance_of(PulpPythonClient::PythonPythonRemoteResponseHiddenFields)
33
+ end
34
+ end
35
+ describe 'test attribute "name"' 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 "is_set"' 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
+ end
@@ -146,6 +146,12 @@ describe 'PythonPythonRemoteResponse' do
146
146
  end
147
147
  end
148
148
 
149
+ describe 'test attribute "hidden_fields"' 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
+
149
155
  describe 'test attribute "includes"' do
150
156
  it 'should work' do
151
157
  # 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.7.3
4
+ version: 3.8.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: 2022-10-06 00:00:00.000000000 Z
11
+ date: 2022-12-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -113,6 +113,7 @@ files:
113
113
  - docs/PythonPythonPublicationResponse.md
114
114
  - docs/PythonPythonRemote.md
115
115
  - docs/PythonPythonRemoteResponse.md
116
+ - docs/PythonPythonRemoteResponseHiddenFields.md
116
117
  - docs/PythonPythonRepository.md
117
118
  - docs/PythonPythonRepositoryResponse.md
118
119
  - docs/RemotesPythonApi.md
@@ -163,6 +164,7 @@ files:
163
164
  - lib/pulp_python_client/models/python_python_publication_response.rb
164
165
  - lib/pulp_python_client/models/python_python_remote.rb
165
166
  - lib/pulp_python_client/models/python_python_remote_response.rb
167
+ - lib/pulp_python_client/models/python_python_remote_response_hidden_fields.rb
166
168
  - lib/pulp_python_client/models/python_python_repository.rb
167
169
  - lib/pulp_python_client/models/python_python_repository_response.rb
168
170
  - lib/pulp_python_client/models/repair.rb
@@ -208,6 +210,7 @@ files:
208
210
  - spec/models/python_python_package_content_spec.rb
209
211
  - spec/models/python_python_publication_response_spec.rb
210
212
  - spec/models/python_python_publication_spec.rb
213
+ - spec/models/python_python_remote_response_hidden_fields_spec.rb
211
214
  - spec/models/python_python_remote_response_spec.rb
212
215
  - spec/models/python_python_remote_spec.rb
213
216
  - spec/models/python_python_repository_response_spec.rb
@@ -242,49 +245,50 @@ signing_key:
242
245
  specification_version: 4
243
246
  summary: Pulp 3 API Ruby Gem
244
247
  test_files:
245
- - spec/api/remotes_python_api_spec.rb
246
- - spec/api/content_packages_api_spec.rb
247
248
  - spec/api/pypi_simple_api_spec.rb
248
249
  - spec/api/publications_pypi_api_spec.rb
250
+ - spec/api/pypi_metadata_api_spec.rb
251
+ - spec/api/content_packages_api_spec.rb
252
+ - spec/api/pypi_api_spec.rb
249
253
  - spec/api/repositories_python_versions_api_spec.rb
254
+ - spec/api/repositories_python_api_spec.rb
255
+ - spec/api/remotes_python_api_spec.rb
250
256
  - spec/api/pypi_legacy_api_spec.rb
251
257
  - spec/api/distributions_pypi_api_spec.rb
252
- - spec/api/pypi_api_spec.rb
253
- - spec/api/repositories_python_api_spec.rb
254
- - spec/api/pypi_metadata_api_spec.rb
255
258
  - spec/api_client_spec.rb
256
259
  - spec/configuration_spec.rb
257
- - spec/models/repository_version_response_spec.rb
258
- - spec/models/package_types_enum_spec.rb
259
- - spec/models/summary_response_spec.rb
260
+ - spec/models/repository_sync_url_spec.rb
261
+ - spec/models/python_python_remote_response_hidden_fields_spec.rb
262
+ - spec/models/python_python_package_content_spec.rb
260
263
  - spec/models/paginatedpython_python_distribution_response_list_spec.rb
261
- - spec/models/python_python_distribution_spec.rb
262
- - spec/models/patchedpython_python_repository_spec.rb
264
+ - spec/models/exclude_platforms_enum_spec.rb
263
265
  - spec/models/python_python_package_content_response_spec.rb
264
- - spec/models/python_python_remote_response_spec.rb
265
- - spec/models/python_python_repository_response_spec.rb
266
- - spec/models/paginatedpython_python_repository_response_list_spec.rb
267
266
  - spec/models/async_operation_response_spec.rb
268
- - spec/models/python_python_package_content_spec.rb
269
- - spec/models/paginatedpython_python_publication_response_list_spec.rb
270
- - spec/models/content_summary_response_spec.rb
271
- - spec/models/patchedpython_python_distribution_spec.rb
272
- - spec/models/policy_enum_spec.rb
267
+ - spec/models/patchedpython_python_remote_spec.rb
268
+ - spec/models/python_python_publication_spec.rb
269
+ - spec/models/paginatedpython_python_repository_response_list_spec.rb
273
270
  - spec/models/paginatedpython_python_remote_response_list_spec.rb
271
+ - spec/models/package_metadata_response_spec.rb
272
+ - spec/models/package_types_enum_spec.rb
273
+ - spec/models/patchedpython_python_repository_spec.rb
274
274
  - spec/models/repair_spec.rb
275
- - spec/models/paginated_repository_version_response_list_spec.rb
276
- - spec/models/repository_sync_url_spec.rb
277
- - spec/models/python_python_publication_response_spec.rb
278
- - spec/models/python_python_publication_spec.rb
275
+ - spec/models/package_upload_spec.rb
276
+ - spec/models/policy_enum_spec.rb
277
+ - spec/models/repository_version_response_spec.rb
278
+ - spec/models/python_bander_remote_spec.rb
279
+ - spec/models/summary_response_spec.rb
280
+ - spec/models/repository_add_remove_content_spec.rb
279
281
  - spec/models/package_upload_task_response_spec.rb
280
- - spec/models/python_python_remote_spec.rb
282
+ - spec/models/patchedpython_python_distribution_spec.rb
283
+ - spec/models/python_python_remote_response_spec.rb
284
+ - spec/models/paginatedpython_python_publication_response_list_spec.rb
281
285
  - spec/models/paginatedpython_python_package_content_response_list_spec.rb
282
- - spec/models/package_upload_spec.rb
286
+ - spec/models/python_python_distribution_spec.rb
283
287
  - spec/models/python_python_distribution_response_spec.rb
284
- - spec/models/exclude_platforms_enum_spec.rb
285
- - spec/models/python_bander_remote_spec.rb
288
+ - spec/models/python_python_remote_spec.rb
289
+ - spec/models/paginated_repository_version_response_list_spec.rb
290
+ - spec/models/python_python_repository_response_spec.rb
286
291
  - spec/models/python_python_repository_spec.rb
287
- - spec/models/repository_add_remove_content_spec.rb
288
- - spec/models/patchedpython_python_remote_spec.rb
289
- - spec/models/package_metadata_response_spec.rb
292
+ - spec/models/content_summary_response_spec.rb
293
+ - spec/models/python_python_publication_response_spec.rb
290
294
  - spec/spec_helper.rb