pulp_python_client 3.1.0.dev01613619223 → 3.1.0.dev01613705623
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.
Potentially problematic release.
This version of pulp_python_client might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/README.md +4 -4
- data/docs/ContentPackagesApi.md +34 -34
- data/docs/DistributionsPypiApi.md +20 -20
- data/docs/PublicationsPypiApi.md +14 -14
- data/docs/RemotesPythonApi.md +24 -24
- data/docs/RepositoriesPythonApi.md +12 -12
- data/docs/RepositoriesPythonVersionsApi.md +28 -28
- data/lib/pulp_python_client/api/content_packages_api.rb +44 -40
- data/lib/pulp_python_client/api/distributions_pypi_api.rb +22 -22
- data/lib/pulp_python_client/api/publications_pypi_api.rb +15 -15
- data/lib/pulp_python_client/api/remotes_python_api.rb +26 -26
- data/lib/pulp_python_client/api/repositories_python_api.rb +13 -13
- data/lib/pulp_python_client/api/repositories_python_versions_api.rb +50 -30
- data/lib/pulp_python_client/version.rb +1 -1
- data/spec/api/content_packages_api_spec.rb +17 -17
- data/spec/api/distributions_pypi_api_spec.rb +10 -10
- data/spec/api/publications_pypi_api_spec.rb +7 -7
- data/spec/api/remotes_python_api_spec.rb +12 -12
- data/spec/api/repositories_python_api_spec.rb +6 -6
- data/spec/api/repositories_python_versions_api_spec.rb +14 -14
- metadata +2 -2
@@ -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,20 +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] :name__contains
|
80
|
-
# @option opts [String] :name__icontains
|
81
|
-
# @option opts [String] :name__in
|
82
|
-
# @option opts [String] :name__startswith
|
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
|
83
83
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
84
84
|
# @option opts [String] :ordering Which field to use when ordering the results.
|
85
|
-
# @option opts [String] :pulp_label_select
|
86
|
-
# @option opts [
|
87
|
-
# @option opts [
|
88
|
-
# @option opts [
|
89
|
-
# @option opts [
|
90
|
-
# @option opts [
|
91
|
-
# @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
|
92
92
|
# @option opts [String] :fields A list of fields to include in the response.
|
93
93
|
# @option opts [String] :exclude_fields A list of fields to exclude from the response.
|
94
94
|
# @return [PaginatedpythonPythonRemoteResponseList]
|
@@ -61,14 +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] :name__contains
|
66
|
-
# @option opts [String] :name__icontains
|
67
|
-
# @option opts [String] :name__in
|
68
|
-
# @option opts [String] :name__startswith
|
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
|
69
69
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
70
70
|
# @option opts [String] :ordering Which field to use when ordering the results.
|
71
|
-
# @option opts [String] :pulp_label_select
|
71
|
+
# @option opts [String] :pulp_label_select Filter labels by search string
|
72
72
|
# @option opts [String] :fields A list of fields to include in the response.
|
73
73
|
# @option opts [String] :exclude_fields A list of fields to exclude from the response.
|
74
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]
|
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.1.0.
|
4
|
+
version: 3.1.0.dev01613705623
|
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-02-
|
11
|
+
date: 2021-02-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|