pulp_python_client 3.0.0b9 → 3.0.0b11
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 +49 -42
- data/docs/ContentPackagesApi.md +54 -56
- data/docs/ContentSummary.md +3 -3
- data/docs/ContentSummaryResponse.md +21 -0
- data/docs/DistributionsPypiApi.md +108 -60
- data/docs/InlineResponse200.md +3 -3
- data/docs/InlineResponse2001.md +3 -3
- data/docs/InlineResponse2002.md +3 -3
- data/docs/InlineResponse2003.md +3 -3
- data/docs/InlineResponse2004.md +3 -3
- data/docs/InlineResponse2005.md +3 -3
- data/docs/PatchedpythonPythonDistribution.md +23 -0
- data/docs/PatchedpythonPythonRemote.md +43 -0
- data/docs/PatchedpythonPythonRepository.md +21 -0
- data/docs/PolicyEnum.md +16 -0
- data/docs/PublicationsPypiApi.md +40 -40
- data/docs/PythonBanderRemote.md +19 -0
- data/docs/PythonPythonDistribution.md +1 -7
- data/docs/{PythonPythonDistributionRead.md → PythonPythonDistributionResponse.md} +2 -2
- data/docs/PythonPythonPackageContent.md +61 -0
- data/docs/{PythonPythonPackageContentRead.md → PythonPythonPackageContentResponse.md} +3 -3
- data/docs/PythonPythonPublication.md +2 -8
- data/docs/{PythonPythonPublicationRead.md → PythonPythonPublicationResponse.md} +2 -2
- data/docs/PythonPythonRemote.md +6 -12
- data/docs/{PythonPythonRemoteRead.md → PythonPythonRemoteResponse.md} +7 -7
- data/docs/PythonPythonRepository.md +4 -10
- data/docs/{PythonPythonRepositoryRead.md → PythonPythonRepositoryResponse.md} +5 -3
- data/docs/RemotesPythonApi.md +181 -65
- data/docs/RepositoriesPythonApi.md +97 -73
- data/docs/RepositoriesPythonVersionsApi.md +94 -60
- data/docs/RepositoryAddRemoveContent.md +2 -2
- data/docs/RepositorySyncURL.md +1 -1
- data/docs/RepositoryVersion.md +1 -9
- data/docs/{RepositoryVersionRead.md → RepositoryVersionResponse.md} +3 -3
- data/lib/pulp_python_client.rb +15 -9
- data/lib/pulp_python_client/api/content_packages_api.rb +73 -84
- data/lib/pulp_python_client/api/distributions_pypi_api.rb +153 -90
- data/lib/pulp_python_client/api/publications_pypi_api.rb +59 -59
- data/lib/pulp_python_client/api/remotes_python_api.rb +253 -100
- data/lib/pulp_python_client/api/repositories_python_api.rb +145 -118
- data/lib/pulp_python_client/api/repositories_python_versions_api.rb +137 -89
- data/lib/pulp_python_client/api_client.rb +2 -2
- data/lib/pulp_python_client/api_error.rb +2 -2
- data/lib/pulp_python_client/configuration.rb +3 -3
- data/lib/pulp_python_client/models/async_operation_response.rb +3 -2
- data/lib/pulp_python_client/models/content_summary.rb +9 -15
- data/lib/pulp_python_client/models/content_summary_response.rb +240 -0
- data/lib/pulp_python_client/models/inline_response200.rb +3 -13
- data/lib/pulp_python_client/models/inline_response2001.rb +3 -13
- data/lib/pulp_python_client/models/inline_response2002.rb +3 -13
- data/lib/pulp_python_client/models/inline_response2003.rb +3 -13
- data/lib/pulp_python_client/models/inline_response2004.rb +3 -13
- data/lib/pulp_python_client/models/inline_response2005.rb +3 -13
- data/lib/pulp_python_client/models/patchedpython_python_distribution.rb +240 -0
- data/lib/pulp_python_client/models/patchedpython_python_remote.rb +359 -0
- data/lib/pulp_python_client/models/patchedpython_python_repository.rb +229 -0
- data/lib/pulp_python_client/models/policy_enum.rb +37 -0
- data/lib/pulp_python_client/models/{project_specifier.rb → python_bander_remote.rb} +26 -40
- data/lib/pulp_python_client/models/python_python_distribution.rb +4 -85
- data/lib/pulp_python_client/models/{python_python_distribution_read.rb → python_python_distribution_response.rb} +6 -58
- data/lib/pulp_python_client/models/python_python_package_content.rb +433 -0
- data/lib/pulp_python_client/models/{python_python_package_content_read.rb → python_python_package_content_response.rb} +6 -89
- data/lib/pulp_python_client/models/python_python_publication.rb +7 -37
- data/lib/pulp_python_client/models/{python_python_publication_read.rb → python_python_publication_response.rb} +6 -5
- data/lib/pulp_python_client/models/python_python_remote.rb +13 -209
- data/lib/pulp_python_client/models/{python_python_remote_read.rb → python_python_remote_response.rb} +15 -182
- data/lib/pulp_python_client/models/python_python_repository.rb +18 -78
- data/lib/pulp_python_client/models/{python_python_repository_read.rb → python_python_repository_response.rb} +21 -44
- data/lib/pulp_python_client/models/repository_add_remove_content.rb +5 -4
- data/lib/pulp_python_client/models/repository_sync_url.rb +3 -8
- data/lib/pulp_python_client/models/repository_version.rb +7 -43
- data/lib/pulp_python_client/models/{repository_version_read.rb → repository_version_response.rb} +8 -6
- data/lib/pulp_python_client/version.rb +3 -3
- data/pulp_python_client.gemspec +4 -4
- data/spec/api/content_packages_api_spec.rb +24 -25
- data/spec/api/distributions_pypi_api_spec.rb +39 -18
- data/spec/api/publications_pypi_api_spec.rb +14 -14
- data/spec/api/remotes_python_api_spec.rb +61 -21
- data/spec/api/repositories_python_api_spec.rb +28 -19
- data/spec/api/repositories_python_versions_api_spec.rb +38 -22
- data/spec/api_client_spec.rb +2 -2
- data/spec/configuration_spec.rb +2 -2
- data/spec/models/async_operation_response_spec.rb +2 -2
- data/spec/models/content_summary_response_spec.rb +53 -0
- data/spec/models/content_summary_spec.rb +2 -2
- data/spec/models/inline_response2001_spec.rb +2 -2
- data/spec/models/inline_response2002_spec.rb +2 -2
- data/spec/models/inline_response2003_spec.rb +2 -2
- data/spec/models/inline_response2004_spec.rb +2 -2
- data/spec/models/inline_response2005_spec.rb +2 -2
- data/spec/models/inline_response200_spec.rb +2 -2
- data/spec/models/patchedpython_python_distribution_spec.rb +59 -0
- data/spec/models/patchedpython_python_remote_spec.rb +119 -0
- data/spec/models/patchedpython_python_repository_spec.rb +53 -0
- data/spec/models/policy_enum_spec.rb +35 -0
- data/spec/models/{project_specifier_spec.rb → python_bander_remote_spec.rb} +10 -10
- data/spec/models/{python_python_distribution_read_spec.rb → python_python_distribution_response_spec.rb} +8 -8
- data/spec/models/python_python_distribution_spec.rb +2 -20
- data/spec/models/{python_python_package_content_read_spec.rb → python_python_package_content_response_spec.rb} +8 -8
- data/spec/models/python_python_package_content_spec.rb +173 -0
- data/spec/models/{python_python_publication_read_spec.rb → python_python_publication_response_spec.rb} +8 -8
- data/spec/models/python_python_publication_spec.rb +2 -20
- data/spec/models/{python_python_remote_read_spec.rb → python_python_remote_response_spec.rb} +8 -12
- data/spec/models/python_python_remote_spec.rb +2 -24
- data/spec/models/{python_python_repository_read_spec.rb → python_python_repository_response_spec.rb} +14 -8
- data/spec/models/python_python_repository_spec.rb +5 -23
- data/spec/models/repository_add_remove_content_spec.rb +2 -2
- data/spec/models/repository_sync_url_spec.rb +2 -2
- data/spec/models/{repository_version_read_spec.rb → repository_version_response_spec.rb} +8 -8
- data/spec/models/repository_version_spec.rb +2 -26
- data/spec/spec_helper.rb +2 -2
- metadata +70 -46
- data/docs/ProjectSpecifier.md +0 -19
|
@@ -0,0 +1,229 @@
|
|
|
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 'date'
|
|
14
|
+
|
|
15
|
+
module PulpPythonClient
|
|
16
|
+
# Serializer for Python Repositories.
|
|
17
|
+
class PatchedpythonPythonRepository
|
|
18
|
+
# A unique name for this repository.
|
|
19
|
+
attr_accessor :name
|
|
20
|
+
|
|
21
|
+
# An optional description.
|
|
22
|
+
attr_accessor :description
|
|
23
|
+
|
|
24
|
+
attr_accessor :remote
|
|
25
|
+
|
|
26
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
|
27
|
+
def self.attribute_map
|
|
28
|
+
{
|
|
29
|
+
:'name' => :'name',
|
|
30
|
+
:'description' => :'description',
|
|
31
|
+
:'remote' => :'remote'
|
|
32
|
+
}
|
|
33
|
+
end
|
|
34
|
+
|
|
35
|
+
# Attribute type mapping.
|
|
36
|
+
def self.openapi_types
|
|
37
|
+
{
|
|
38
|
+
:'name' => :'String',
|
|
39
|
+
:'description' => :'String',
|
|
40
|
+
:'remote' => :'String'
|
|
41
|
+
}
|
|
42
|
+
end
|
|
43
|
+
|
|
44
|
+
# List of attributes with nullable: true
|
|
45
|
+
def self.openapi_nullable
|
|
46
|
+
Set.new([
|
|
47
|
+
:'description',
|
|
48
|
+
:'remote'
|
|
49
|
+
])
|
|
50
|
+
end
|
|
51
|
+
|
|
52
|
+
# Initializes the object
|
|
53
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
54
|
+
def initialize(attributes = {})
|
|
55
|
+
if (!attributes.is_a?(Hash))
|
|
56
|
+
fail ArgumentError, "The input argument (attributes) must be a hash in `PulpPythonClient::PatchedpythonPythonRepository` initialize method"
|
|
57
|
+
end
|
|
58
|
+
|
|
59
|
+
# check to see if the attribute exists and convert string to symbol for hash key
|
|
60
|
+
attributes = attributes.each_with_object({}) { |(k, v), h|
|
|
61
|
+
if (!self.class.attribute_map.key?(k.to_sym))
|
|
62
|
+
fail ArgumentError, "`#{k}` is not a valid attribute in `PulpPythonClient::PatchedpythonPythonRepository`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
|
|
63
|
+
end
|
|
64
|
+
h[k.to_sym] = v
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
if attributes.key?(:'name')
|
|
68
|
+
self.name = attributes[:'name']
|
|
69
|
+
end
|
|
70
|
+
|
|
71
|
+
if attributes.key?(:'description')
|
|
72
|
+
self.description = attributes[:'description']
|
|
73
|
+
end
|
|
74
|
+
|
|
75
|
+
if attributes.key?(:'remote')
|
|
76
|
+
self.remote = attributes[:'remote']
|
|
77
|
+
end
|
|
78
|
+
end
|
|
79
|
+
|
|
80
|
+
# Show invalid properties with the reasons. Usually used together with valid?
|
|
81
|
+
# @return Array for valid properties with the reasons
|
|
82
|
+
def list_invalid_properties
|
|
83
|
+
invalid_properties = Array.new
|
|
84
|
+
invalid_properties
|
|
85
|
+
end
|
|
86
|
+
|
|
87
|
+
# Check to see if the all the properties in the model are valid
|
|
88
|
+
# @return true if the model is valid
|
|
89
|
+
def valid?
|
|
90
|
+
true
|
|
91
|
+
end
|
|
92
|
+
|
|
93
|
+
# Checks equality by comparing each attribute.
|
|
94
|
+
# @param [Object] Object to be compared
|
|
95
|
+
def ==(o)
|
|
96
|
+
return true if self.equal?(o)
|
|
97
|
+
self.class == o.class &&
|
|
98
|
+
name == o.name &&
|
|
99
|
+
description == o.description &&
|
|
100
|
+
remote == o.remote
|
|
101
|
+
end
|
|
102
|
+
|
|
103
|
+
# @see the `==` method
|
|
104
|
+
# @param [Object] Object to be compared
|
|
105
|
+
def eql?(o)
|
|
106
|
+
self == o
|
|
107
|
+
end
|
|
108
|
+
|
|
109
|
+
# Calculates hash code according to all attributes.
|
|
110
|
+
# @return [Integer] Hash code
|
|
111
|
+
def hash
|
|
112
|
+
[name, description, remote].hash
|
|
113
|
+
end
|
|
114
|
+
|
|
115
|
+
# Builds the object from hash
|
|
116
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
117
|
+
# @return [Object] Returns the model itself
|
|
118
|
+
def self.build_from_hash(attributes)
|
|
119
|
+
new.build_from_hash(attributes)
|
|
120
|
+
end
|
|
121
|
+
|
|
122
|
+
# Builds the object from hash
|
|
123
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
124
|
+
# @return [Object] Returns the model itself
|
|
125
|
+
def build_from_hash(attributes)
|
|
126
|
+
return nil unless attributes.is_a?(Hash)
|
|
127
|
+
self.class.openapi_types.each_pair do |key, type|
|
|
128
|
+
if type =~ /\AArray<(.*)>/i
|
|
129
|
+
# check to ensure the input is an array given that the attribute
|
|
130
|
+
# is documented as an array but the input is not
|
|
131
|
+
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
|
132
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
|
|
133
|
+
end
|
|
134
|
+
elsif !attributes[self.class.attribute_map[key]].nil?
|
|
135
|
+
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
|
136
|
+
end # or else data not found in attributes(hash), not an issue as the data can be optional
|
|
137
|
+
end
|
|
138
|
+
|
|
139
|
+
self
|
|
140
|
+
end
|
|
141
|
+
|
|
142
|
+
# Deserializes the data based on type
|
|
143
|
+
# @param string type Data type
|
|
144
|
+
# @param string value Value to be deserialized
|
|
145
|
+
# @return [Object] Deserialized data
|
|
146
|
+
def _deserialize(type, value)
|
|
147
|
+
case type.to_sym
|
|
148
|
+
when :DateTime
|
|
149
|
+
DateTime.parse(value)
|
|
150
|
+
when :Date
|
|
151
|
+
Date.parse(value)
|
|
152
|
+
when :String
|
|
153
|
+
value.to_s
|
|
154
|
+
when :Integer
|
|
155
|
+
value.to_i
|
|
156
|
+
when :Float
|
|
157
|
+
value.to_f
|
|
158
|
+
when :Boolean
|
|
159
|
+
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
|
160
|
+
true
|
|
161
|
+
else
|
|
162
|
+
false
|
|
163
|
+
end
|
|
164
|
+
when :Object
|
|
165
|
+
# generic object (usually a Hash), return directly
|
|
166
|
+
value
|
|
167
|
+
when /\AArray<(?<inner_type>.+)>\z/
|
|
168
|
+
inner_type = Regexp.last_match[:inner_type]
|
|
169
|
+
value.map { |v| _deserialize(inner_type, v) }
|
|
170
|
+
when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
|
|
171
|
+
k_type = Regexp.last_match[:k_type]
|
|
172
|
+
v_type = Regexp.last_match[:v_type]
|
|
173
|
+
{}.tap do |hash|
|
|
174
|
+
value.each do |k, v|
|
|
175
|
+
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
|
176
|
+
end
|
|
177
|
+
end
|
|
178
|
+
else # model
|
|
179
|
+
PulpPythonClient.const_get(type).build_from_hash(value)
|
|
180
|
+
end
|
|
181
|
+
end
|
|
182
|
+
|
|
183
|
+
# Returns the string representation of the object
|
|
184
|
+
# @return [String] String presentation of the object
|
|
185
|
+
def to_s
|
|
186
|
+
to_hash.to_s
|
|
187
|
+
end
|
|
188
|
+
|
|
189
|
+
# to_body is an alias to to_hash (backward compatibility)
|
|
190
|
+
# @return [Hash] Returns the object in the form of hash
|
|
191
|
+
def to_body
|
|
192
|
+
to_hash
|
|
193
|
+
end
|
|
194
|
+
|
|
195
|
+
# Returns the object in the form of hash
|
|
196
|
+
# @return [Hash] Returns the object in the form of hash
|
|
197
|
+
def to_hash
|
|
198
|
+
hash = {}
|
|
199
|
+
self.class.attribute_map.each_pair do |attr, param|
|
|
200
|
+
value = self.send(attr)
|
|
201
|
+
if value.nil?
|
|
202
|
+
is_nullable = self.class.openapi_nullable.include?(attr)
|
|
203
|
+
next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
|
|
204
|
+
end
|
|
205
|
+
|
|
206
|
+
hash[param] = _to_hash(value)
|
|
207
|
+
end
|
|
208
|
+
hash
|
|
209
|
+
end
|
|
210
|
+
|
|
211
|
+
# Outputs non-array value in the form of hash
|
|
212
|
+
# For object, use to_hash. Otherwise, just return the value
|
|
213
|
+
# @param [Object] value Any valid value
|
|
214
|
+
# @return [Hash] Returns the value in the form of hash
|
|
215
|
+
def _to_hash(value)
|
|
216
|
+
if value.is_a?(Array)
|
|
217
|
+
value.compact.map { |v| _to_hash(v) }
|
|
218
|
+
elsif value.is_a?(Hash)
|
|
219
|
+
{}.tap do |hash|
|
|
220
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
|
221
|
+
end
|
|
222
|
+
elsif value.respond_to? :to_hash
|
|
223
|
+
value.to_hash
|
|
224
|
+
else
|
|
225
|
+
value
|
|
226
|
+
end
|
|
227
|
+
end
|
|
228
|
+
end
|
|
229
|
+
end
|
|
@@ -0,0 +1,37 @@
|
|
|
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 'date'
|
|
14
|
+
|
|
15
|
+
module PulpPythonClient
|
|
16
|
+
class PolicyEnum
|
|
17
|
+
IMMEDIATE = "immediate".freeze
|
|
18
|
+
ON_DEMAND = "on_demand".freeze
|
|
19
|
+
STREAMED = "streamed".freeze
|
|
20
|
+
|
|
21
|
+
# Builds the enum from string
|
|
22
|
+
# @param [String] The enum value in the form of the string
|
|
23
|
+
# @return [String] The enum value
|
|
24
|
+
def self.build_from_hash(value)
|
|
25
|
+
new.build_from_hash(value)
|
|
26
|
+
end
|
|
27
|
+
|
|
28
|
+
# Builds the enum from string
|
|
29
|
+
# @param [String] The enum value in the form of the string
|
|
30
|
+
# @return [String] The enum value
|
|
31
|
+
def build_from_hash(value)
|
|
32
|
+
constantValues = PolicyEnum.constants.select { |c| PolicyEnum::const_get(c) == value }
|
|
33
|
+
raise "Invalid ENUM value #{value} for class #PolicyEnum" if constantValues.empty?
|
|
34
|
+
value
|
|
35
|
+
end
|
|
36
|
+
end
|
|
37
|
+
end
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
=begin
|
|
2
2
|
#Pulp 3 API
|
|
3
3
|
|
|
4
|
-
#
|
|
4
|
+
#Fetch, Upload, Organize, and Distribute Software Packages
|
|
5
5
|
|
|
6
6
|
The version of the OpenAPI document: v3
|
|
7
|
-
|
|
7
|
+
Contact: pulp-list@redhat.com
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 4.2.3
|
|
10
10
|
|
|
@@ -13,27 +13,27 @@ OpenAPI Generator version: 4.2.3
|
|
|
13
13
|
require 'date'
|
|
14
14
|
|
|
15
15
|
module PulpPythonClient
|
|
16
|
-
#
|
|
17
|
-
class
|
|
18
|
-
# A
|
|
19
|
-
attr_accessor :
|
|
16
|
+
# A Serializer for the initial step of creating a Python Remote from a Bandersnatch config file
|
|
17
|
+
class PythonBanderRemote
|
|
18
|
+
# A Bandersnatch config that may be used to construct a Python Remote.
|
|
19
|
+
attr_accessor :config
|
|
20
20
|
|
|
21
|
-
# A
|
|
22
|
-
attr_accessor :
|
|
21
|
+
# A unique name for this remote
|
|
22
|
+
attr_accessor :name
|
|
23
23
|
|
|
24
24
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
25
25
|
def self.attribute_map
|
|
26
26
|
{
|
|
27
|
-
:'
|
|
28
|
-
:'
|
|
27
|
+
:'config' => :'config',
|
|
28
|
+
:'name' => :'name'
|
|
29
29
|
}
|
|
30
30
|
end
|
|
31
31
|
|
|
32
32
|
# Attribute type mapping.
|
|
33
33
|
def self.openapi_types
|
|
34
34
|
{
|
|
35
|
-
:'
|
|
36
|
-
:'
|
|
35
|
+
:'config' => :'File',
|
|
36
|
+
:'name' => :'String'
|
|
37
37
|
}
|
|
38
38
|
end
|
|
39
39
|
|
|
@@ -47,23 +47,23 @@ module PulpPythonClient
|
|
|
47
47
|
# @param [Hash] attributes Model attributes in the form of hash
|
|
48
48
|
def initialize(attributes = {})
|
|
49
49
|
if (!attributes.is_a?(Hash))
|
|
50
|
-
fail ArgumentError, "The input argument (attributes) must be a hash in `PulpPythonClient::
|
|
50
|
+
fail ArgumentError, "The input argument (attributes) must be a hash in `PulpPythonClient::PythonBanderRemote` initialize method"
|
|
51
51
|
end
|
|
52
52
|
|
|
53
53
|
# check to see if the attribute exists and convert string to symbol for hash key
|
|
54
54
|
attributes = attributes.each_with_object({}) { |(k, v), h|
|
|
55
55
|
if (!self.class.attribute_map.key?(k.to_sym))
|
|
56
|
-
fail ArgumentError, "`#{k}` is not a valid attribute in `PulpPythonClient::
|
|
56
|
+
fail ArgumentError, "`#{k}` is not a valid attribute in `PulpPythonClient::PythonBanderRemote`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
|
|
57
57
|
end
|
|
58
58
|
h[k.to_sym] = v
|
|
59
59
|
}
|
|
60
60
|
|
|
61
|
-
if attributes.key?(:'
|
|
62
|
-
self.
|
|
61
|
+
if attributes.key?(:'config')
|
|
62
|
+
self.config = attributes[:'config']
|
|
63
63
|
end
|
|
64
64
|
|
|
65
|
-
if attributes.key?(:'
|
|
66
|
-
self.
|
|
65
|
+
if attributes.key?(:'name')
|
|
66
|
+
self.name = attributes[:'name']
|
|
67
67
|
end
|
|
68
68
|
end
|
|
69
69
|
|
|
@@ -71,12 +71,12 @@ module PulpPythonClient
|
|
|
71
71
|
# @return Array for valid properties with the reasons
|
|
72
72
|
def list_invalid_properties
|
|
73
73
|
invalid_properties = Array.new
|
|
74
|
-
if @
|
|
75
|
-
invalid_properties.push('invalid value for "
|
|
74
|
+
if @config.nil?
|
|
75
|
+
invalid_properties.push('invalid value for "config", config cannot be nil.')
|
|
76
76
|
end
|
|
77
77
|
|
|
78
|
-
if @name.
|
|
79
|
-
invalid_properties.push('invalid value for "name",
|
|
78
|
+
if @name.nil?
|
|
79
|
+
invalid_properties.push('invalid value for "name", name cannot be nil.')
|
|
80
80
|
end
|
|
81
81
|
|
|
82
82
|
invalid_properties
|
|
@@ -85,32 +85,18 @@ module PulpPythonClient
|
|
|
85
85
|
# Check to see if the all the properties in the model are valid
|
|
86
86
|
# @return true if the model is valid
|
|
87
87
|
def valid?
|
|
88
|
+
return false if @config.nil?
|
|
88
89
|
return false if @name.nil?
|
|
89
|
-
return false if @name.to_s.length < 1
|
|
90
90
|
true
|
|
91
91
|
end
|
|
92
92
|
|
|
93
|
-
# Custom attribute writer method with validation
|
|
94
|
-
# @param [Object] name Value to be assigned
|
|
95
|
-
def name=(name)
|
|
96
|
-
if name.nil?
|
|
97
|
-
fail ArgumentError, 'name cannot be nil'
|
|
98
|
-
end
|
|
99
|
-
|
|
100
|
-
if name.to_s.length < 1
|
|
101
|
-
fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
|
|
102
|
-
end
|
|
103
|
-
|
|
104
|
-
@name = name
|
|
105
|
-
end
|
|
106
|
-
|
|
107
93
|
# Checks equality by comparing each attribute.
|
|
108
94
|
# @param [Object] Object to be compared
|
|
109
95
|
def ==(o)
|
|
110
96
|
return true if self.equal?(o)
|
|
111
97
|
self.class == o.class &&
|
|
112
|
-
|
|
113
|
-
|
|
98
|
+
config == o.config &&
|
|
99
|
+
name == o.name
|
|
114
100
|
end
|
|
115
101
|
|
|
116
102
|
# @see the `==` method
|
|
@@ -122,7 +108,7 @@ module PulpPythonClient
|
|
|
122
108
|
# Calculates hash code according to all attributes.
|
|
123
109
|
# @return [Integer] Hash code
|
|
124
110
|
def hash
|
|
125
|
-
[
|
|
111
|
+
[config, name].hash
|
|
126
112
|
end
|
|
127
113
|
|
|
128
114
|
# Builds the object from hash
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
=begin
|
|
2
2
|
#Pulp 3 API
|
|
3
3
|
|
|
4
|
-
#
|
|
4
|
+
#Fetch, Upload, Organize, and Distribute Software Packages
|
|
5
5
|
|
|
6
6
|
The version of the OpenAPI document: v3
|
|
7
|
-
|
|
7
|
+
Contact: pulp-list@redhat.com
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 4.2.3
|
|
10
10
|
|
|
@@ -13,18 +13,11 @@ OpenAPI Generator version: 4.2.3
|
|
|
13
13
|
require 'date'
|
|
14
14
|
|
|
15
15
|
module PulpPythonClient
|
|
16
|
+
# Serializer for Pulp distributions for the Python type.
|
|
16
17
|
class PythonPythonDistribution
|
|
17
|
-
attr_accessor :pulp_href
|
|
18
|
-
|
|
19
|
-
# Timestamp of creation.
|
|
20
|
-
attr_accessor :pulp_created
|
|
21
|
-
|
|
22
18
|
# The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
|
|
23
19
|
attr_accessor :base_path
|
|
24
20
|
|
|
25
|
-
# The URL for accessing the publication as defined by this distribution.
|
|
26
|
-
attr_accessor :base_url
|
|
27
|
-
|
|
28
21
|
# An optional content-guard.
|
|
29
22
|
attr_accessor :content_guard
|
|
30
23
|
|
|
@@ -37,10 +30,7 @@ module PulpPythonClient
|
|
|
37
30
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
38
31
|
def self.attribute_map
|
|
39
32
|
{
|
|
40
|
-
:'pulp_href' => :'pulp_href',
|
|
41
|
-
:'pulp_created' => :'pulp_created',
|
|
42
33
|
:'base_path' => :'base_path',
|
|
43
|
-
:'base_url' => :'base_url',
|
|
44
34
|
:'content_guard' => :'content_guard',
|
|
45
35
|
:'name' => :'name',
|
|
46
36
|
:'publication' => :'publication'
|
|
@@ -50,10 +40,7 @@ module PulpPythonClient
|
|
|
50
40
|
# Attribute type mapping.
|
|
51
41
|
def self.openapi_types
|
|
52
42
|
{
|
|
53
|
-
:'pulp_href' => :'String',
|
|
54
|
-
:'pulp_created' => :'DateTime',
|
|
55
43
|
:'base_path' => :'String',
|
|
56
|
-
:'base_url' => :'String',
|
|
57
44
|
:'content_guard' => :'String',
|
|
58
45
|
:'name' => :'String',
|
|
59
46
|
:'publication' => :'String'
|
|
@@ -83,22 +70,10 @@ module PulpPythonClient
|
|
|
83
70
|
h[k.to_sym] = v
|
|
84
71
|
}
|
|
85
72
|
|
|
86
|
-
if attributes.key?(:'pulp_href')
|
|
87
|
-
self.pulp_href = attributes[:'pulp_href']
|
|
88
|
-
end
|
|
89
|
-
|
|
90
|
-
if attributes.key?(:'pulp_created')
|
|
91
|
-
self.pulp_created = attributes[:'pulp_created']
|
|
92
|
-
end
|
|
93
|
-
|
|
94
73
|
if attributes.key?(:'base_path')
|
|
95
74
|
self.base_path = attributes[:'base_path']
|
|
96
75
|
end
|
|
97
76
|
|
|
98
|
-
if attributes.key?(:'base_url')
|
|
99
|
-
self.base_url = attributes[:'base_url']
|
|
100
|
-
end
|
|
101
|
-
|
|
102
77
|
if attributes.key?(:'content_guard')
|
|
103
78
|
self.content_guard = attributes[:'content_guard']
|
|
104
79
|
end
|
|
@@ -120,22 +95,10 @@ module PulpPythonClient
|
|
|
120
95
|
invalid_properties.push('invalid value for "base_path", base_path cannot be nil.')
|
|
121
96
|
end
|
|
122
97
|
|
|
123
|
-
if @base_path.to_s.length < 1
|
|
124
|
-
invalid_properties.push('invalid value for "base_path", the character length must be great than or equal to 1.')
|
|
125
|
-
end
|
|
126
|
-
|
|
127
|
-
if !@base_url.nil? && @base_url.to_s.length < 1
|
|
128
|
-
invalid_properties.push('invalid value for "base_url", the character length must be great than or equal to 1.')
|
|
129
|
-
end
|
|
130
|
-
|
|
131
98
|
if @name.nil?
|
|
132
99
|
invalid_properties.push('invalid value for "name", name cannot be nil.')
|
|
133
100
|
end
|
|
134
101
|
|
|
135
|
-
if @name.to_s.length < 1
|
|
136
|
-
invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
|
|
137
|
-
end
|
|
138
|
-
|
|
139
102
|
invalid_properties
|
|
140
103
|
end
|
|
141
104
|
|
|
@@ -143,60 +106,16 @@ module PulpPythonClient
|
|
|
143
106
|
# @return true if the model is valid
|
|
144
107
|
def valid?
|
|
145
108
|
return false if @base_path.nil?
|
|
146
|
-
return false if @base_path.to_s.length < 1
|
|
147
|
-
return false if !@base_url.nil? && @base_url.to_s.length < 1
|
|
148
109
|
return false if @name.nil?
|
|
149
|
-
return false if @name.to_s.length < 1
|
|
150
110
|
true
|
|
151
111
|
end
|
|
152
112
|
|
|
153
|
-
# Custom attribute writer method with validation
|
|
154
|
-
# @param [Object] base_path Value to be assigned
|
|
155
|
-
def base_path=(base_path)
|
|
156
|
-
if base_path.nil?
|
|
157
|
-
fail ArgumentError, 'base_path cannot be nil'
|
|
158
|
-
end
|
|
159
|
-
|
|
160
|
-
if base_path.to_s.length < 1
|
|
161
|
-
fail ArgumentError, 'invalid value for "base_path", the character length must be great than or equal to 1.'
|
|
162
|
-
end
|
|
163
|
-
|
|
164
|
-
@base_path = base_path
|
|
165
|
-
end
|
|
166
|
-
|
|
167
|
-
# Custom attribute writer method with validation
|
|
168
|
-
# @param [Object] base_url Value to be assigned
|
|
169
|
-
def base_url=(base_url)
|
|
170
|
-
if !base_url.nil? && base_url.to_s.length < 1
|
|
171
|
-
fail ArgumentError, 'invalid value for "base_url", the character length must be great than or equal to 1.'
|
|
172
|
-
end
|
|
173
|
-
|
|
174
|
-
@base_url = base_url
|
|
175
|
-
end
|
|
176
|
-
|
|
177
|
-
# Custom attribute writer method with validation
|
|
178
|
-
# @param [Object] name Value to be assigned
|
|
179
|
-
def name=(name)
|
|
180
|
-
if name.nil?
|
|
181
|
-
fail ArgumentError, 'name cannot be nil'
|
|
182
|
-
end
|
|
183
|
-
|
|
184
|
-
if name.to_s.length < 1
|
|
185
|
-
fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
|
|
186
|
-
end
|
|
187
|
-
|
|
188
|
-
@name = name
|
|
189
|
-
end
|
|
190
|
-
|
|
191
113
|
# Checks equality by comparing each attribute.
|
|
192
114
|
# @param [Object] Object to be compared
|
|
193
115
|
def ==(o)
|
|
194
116
|
return true if self.equal?(o)
|
|
195
117
|
self.class == o.class &&
|
|
196
|
-
pulp_href == o.pulp_href &&
|
|
197
|
-
pulp_created == o.pulp_created &&
|
|
198
118
|
base_path == o.base_path &&
|
|
199
|
-
base_url == o.base_url &&
|
|
200
119
|
content_guard == o.content_guard &&
|
|
201
120
|
name == o.name &&
|
|
202
121
|
publication == o.publication
|
|
@@ -211,7 +130,7 @@ module PulpPythonClient
|
|
|
211
130
|
# Calculates hash code according to all attributes.
|
|
212
131
|
# @return [Integer] Hash code
|
|
213
132
|
def hash
|
|
214
|
-
[
|
|
133
|
+
[base_path, content_guard, name, publication].hash
|
|
215
134
|
end
|
|
216
135
|
|
|
217
136
|
# Builds the object from hash
|