pulp_maven_client 0.1.0 → 0.2.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 +43 -31
- data/docs/ContentArtifactApi.md +37 -35
- data/docs/ContentSummary.md +3 -3
- data/docs/ContentSummaryResponse.md +21 -0
- data/docs/DistributionsMavenApi.md +63 -61
- data/docs/MavenMavenArtifact.md +3 -13
- data/docs/MavenMavenArtifactResponse.md +29 -0
- data/docs/MavenMavenDistribution.md +1 -7
- data/docs/MavenMavenDistributionResponse.md +29 -0
- data/docs/MavenMavenRemote.md +18 -12
- data/docs/MavenMavenRemoteResponse.md +51 -0
- data/docs/MavenMavenRepository.md +4 -10
- data/docs/MavenMavenRepositoryResponse.md +29 -0
- data/docs/PaginatedRepositoryVersionResponseList.md +23 -0
- data/docs/PaginatedmavenMavenArtifactResponseList.md +23 -0
- data/docs/PaginatedmavenMavenDistributionResponseList.md +23 -0
- data/docs/PaginatedmavenMavenRemoteResponseList.md +23 -0
- data/docs/PaginatedmavenMavenRepositoryResponseList.md +23 -0
- data/docs/PatchedmavenMavenDistribution.md +23 -0
- data/docs/PatchedmavenMavenRemote.md +45 -0
- data/docs/PatchedmavenMavenRepository.md +21 -0
- data/docs/PolicyEnum.md +16 -0
- data/docs/RemotesMavenApi.md +68 -66
- data/docs/RepositoriesMavenApi.md +60 -58
- data/docs/RepositoriesMavenVersionsApi.md +110 -53
- data/docs/RepositoryVersion.md +1 -9
- data/docs/RepositoryVersionResponse.md +25 -0
- data/lib/pulp_maven_client/api/content_artifact_api.rb +55 -52
- data/lib/pulp_maven_client/api/distributions_maven_api.rb +94 -91
- data/lib/pulp_maven_client/api/remotes_maven_api.rb +104 -101
- data/lib/pulp_maven_client/api/repositories_maven_api.rb +97 -94
- data/lib/pulp_maven_client/api/repositories_maven_versions_api.rb +149 -78
- data/lib/pulp_maven_client/api_client.rb +3 -3
- data/lib/pulp_maven_client/api_error.rb +3 -3
- data/lib/pulp_maven_client/configuration.rb +6 -6
- data/lib/pulp_maven_client/models/async_operation_response.rb +4 -3
- data/lib/pulp_maven_client/models/content_summary.rb +10 -16
- data/lib/pulp_maven_client/models/content_summary_response.rb +240 -0
- data/lib/pulp_maven_client/models/maven_maven_artifact.rb +15 -118
- data/lib/pulp_maven_client/models/maven_maven_artifact_response.rb +272 -0
- data/lib/pulp_maven_client/models/maven_maven_distribution.rb +5 -86
- data/lib/pulp_maven_client/models/maven_maven_distribution_response.rb +279 -0
- data/lib/pulp_maven_client/models/maven_maven_remote.rb +111 -147
- data/lib/pulp_maven_client/models/maven_maven_remote_response.rb +472 -0
- data/lib/pulp_maven_client/models/maven_maven_repository.rb +19 -79
- data/lib/pulp_maven_client/models/maven_maven_repository_response.rb +271 -0
- data/lib/pulp_maven_client/models/{inline_response200.rb → paginated_repository_version_response_list.rb} +7 -17
- data/lib/pulp_maven_client/models/{inline_response2002.rb → paginatedmaven_maven_artifact_response_list.rb} +7 -17
- data/lib/pulp_maven_client/models/{inline_response2004.rb → paginatedmaven_maven_distribution_response_list.rb} +7 -17
- data/lib/pulp_maven_client/models/{inline_response2003.rb → paginatedmaven_maven_remote_response_list.rb} +7 -17
- data/lib/pulp_maven_client/models/paginatedmaven_maven_repository_response_list.rb +237 -0
- data/lib/pulp_maven_client/models/{inline_response2001.rb → patchedmaven_maven_distribution.rb} +38 -45
- data/lib/pulp_maven_client/models/patchedmaven_maven_remote.rb +433 -0
- data/lib/pulp_maven_client/models/patchedmaven_maven_repository.rb +229 -0
- data/lib/pulp_maven_client/models/policy_enum.rb +36 -0
- data/lib/pulp_maven_client/models/repository_version.rb +8 -44
- data/lib/pulp_maven_client/models/repository_version_response.rb +246 -0
- data/lib/pulp_maven_client/version.rb +4 -4
- data/lib/pulp_maven_client.rb +18 -8
- data/pulp_maven_client.gemspec +5 -5
- data/spec/api/content_artifact_api_spec.rb +16 -15
- data/spec/api/distributions_maven_api_spec.rb +20 -19
- data/spec/api/remotes_maven_api_spec.rb +23 -22
- data/spec/api/repositories_maven_api_spec.rb +21 -20
- data/spec/api/repositories_maven_versions_api_spec.rb +36 -23
- data/spec/api_client_spec.rb +3 -3
- data/spec/configuration_spec.rb +6 -6
- data/spec/models/async_operation_response_spec.rb +3 -3
- data/spec/models/content_summary_response_spec.rb +53 -0
- data/spec/models/content_summary_spec.rb +3 -3
- data/spec/models/maven_maven_artifact_response_spec.rb +77 -0
- data/spec/models/maven_maven_artifact_spec.rb +4 -34
- data/spec/models/maven_maven_distribution_response_spec.rb +77 -0
- data/spec/models/maven_maven_distribution_spec.rb +3 -21
- data/spec/models/maven_maven_remote_response_spec.rb +143 -0
- data/spec/models/maven_maven_remote_spec.rb +33 -19
- data/spec/models/maven_maven_repository_response_spec.rb +77 -0
- data/spec/models/maven_maven_repository_spec.rb +6 -24
- data/spec/models/{inline_response2002_spec.rb → paginated_repository_version_response_list_spec.rb} +9 -9
- data/spec/models/{inline_response2003_spec.rb → paginatedmaven_maven_artifact_response_list_spec.rb} +9 -9
- data/spec/models/paginatedmaven_maven_distribution_response_list_spec.rb +59 -0
- data/spec/models/{inline_response2001_spec.rb → paginatedmaven_maven_remote_response_list_spec.rb} +9 -9
- data/spec/models/{inline_response2004_spec.rb → paginatedmaven_maven_repository_response_list_spec.rb} +9 -9
- data/spec/models/patchedmaven_maven_distribution_spec.rb +59 -0
- data/spec/models/patchedmaven_maven_remote_spec.rb +125 -0
- data/spec/models/{inline_response200_spec.rb → patchedmaven_maven_repository_spec.rb} +12 -18
- data/spec/models/policy_enum_spec.rb +35 -0
- data/spec/models/repository_version_response_spec.rb +65 -0
- data/spec/models/repository_version_spec.rb +3 -27
- data/spec/spec_helper.rb +3 -3
- metadata +70 -30
- data/docs/InlineResponse200.md +0 -23
- data/docs/InlineResponse2001.md +0 -23
- data/docs/InlineResponse2002.md +0 -23
- data/docs/InlineResponse2003.md +0 -23
- data/docs/InlineResponse2004.md +0 -23
|
@@ -1,50 +1,34 @@
|
|
|
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
|
-
OpenAPI Generator version: 4.2.
|
|
9
|
+
OpenAPI Generator version: 4.2.3
|
|
10
10
|
|
|
11
11
|
=end
|
|
12
12
|
|
|
13
13
|
require 'date'
|
|
14
14
|
|
|
15
15
|
module PulpMavenClient
|
|
16
|
+
# Base serializer for use with :class:`pulpcore.app.models.Model` This ensures that all Serializers provide values for the 'pulp_href` field. The class provides a default for the ``ref_name`` attribute in the ModelSerializers's ``Meta`` class. This ensures that the OpenAPI definitions of plugins are namespaced properly.
|
|
16
17
|
class RepositoryVersion
|
|
17
|
-
attr_accessor :pulp_href
|
|
18
|
-
|
|
19
|
-
# Timestamp of creation.
|
|
20
|
-
attr_accessor :pulp_created
|
|
21
|
-
|
|
22
|
-
attr_accessor :number
|
|
23
|
-
|
|
24
18
|
# A repository version whose content was used as the initial set of content for this repository version
|
|
25
19
|
attr_accessor :base_version
|
|
26
20
|
|
|
27
|
-
attr_accessor :content_summary
|
|
28
|
-
|
|
29
21
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
30
22
|
def self.attribute_map
|
|
31
23
|
{
|
|
32
|
-
:'
|
|
33
|
-
:'pulp_created' => :'pulp_created',
|
|
34
|
-
:'number' => :'number',
|
|
35
|
-
:'base_version' => :'base_version',
|
|
36
|
-
:'content_summary' => :'content_summary'
|
|
24
|
+
:'base_version' => :'base_version'
|
|
37
25
|
}
|
|
38
26
|
end
|
|
39
27
|
|
|
40
28
|
# Attribute type mapping.
|
|
41
29
|
def self.openapi_types
|
|
42
30
|
{
|
|
43
|
-
:'
|
|
44
|
-
:'pulp_created' => :'DateTime',
|
|
45
|
-
:'number' => :'Integer',
|
|
46
|
-
:'base_version' => :'String',
|
|
47
|
-
:'content_summary' => :'ContentSummary'
|
|
31
|
+
:'base_version' => :'String'
|
|
48
32
|
}
|
|
49
33
|
end
|
|
50
34
|
|
|
@@ -69,25 +53,9 @@ module PulpMavenClient
|
|
|
69
53
|
h[k.to_sym] = v
|
|
70
54
|
}
|
|
71
55
|
|
|
72
|
-
if attributes.key?(:'pulp_href')
|
|
73
|
-
self.pulp_href = attributes[:'pulp_href']
|
|
74
|
-
end
|
|
75
|
-
|
|
76
|
-
if attributes.key?(:'pulp_created')
|
|
77
|
-
self.pulp_created = attributes[:'pulp_created']
|
|
78
|
-
end
|
|
79
|
-
|
|
80
|
-
if attributes.key?(:'number')
|
|
81
|
-
self.number = attributes[:'number']
|
|
82
|
-
end
|
|
83
|
-
|
|
84
56
|
if attributes.key?(:'base_version')
|
|
85
57
|
self.base_version = attributes[:'base_version']
|
|
86
58
|
end
|
|
87
|
-
|
|
88
|
-
if attributes.key?(:'content_summary')
|
|
89
|
-
self.content_summary = attributes[:'content_summary']
|
|
90
|
-
end
|
|
91
59
|
end
|
|
92
60
|
|
|
93
61
|
# Show invalid properties with the reasons. Usually used together with valid?
|
|
@@ -108,11 +76,7 @@ module PulpMavenClient
|
|
|
108
76
|
def ==(o)
|
|
109
77
|
return true if self.equal?(o)
|
|
110
78
|
self.class == o.class &&
|
|
111
|
-
|
|
112
|
-
pulp_created == o.pulp_created &&
|
|
113
|
-
number == o.number &&
|
|
114
|
-
base_version == o.base_version &&
|
|
115
|
-
content_summary == o.content_summary
|
|
79
|
+
base_version == o.base_version
|
|
116
80
|
end
|
|
117
81
|
|
|
118
82
|
# @see the `==` method
|
|
@@ -124,7 +88,7 @@ module PulpMavenClient
|
|
|
124
88
|
# Calculates hash code according to all attributes.
|
|
125
89
|
# @return [Integer] Hash code
|
|
126
90
|
def hash
|
|
127
|
-
[
|
|
91
|
+
[base_version].hash
|
|
128
92
|
end
|
|
129
93
|
|
|
130
94
|
# Builds the object from hash
|
|
@@ -0,0 +1,246 @@
|
|
|
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 PulpMavenClient
|
|
16
|
+
# Base serializer for use with :class:`pulpcore.app.models.Model` This ensures that all Serializers provide values for the 'pulp_href` field. The class provides a default for the ``ref_name`` attribute in the ModelSerializers's ``Meta`` class. This ensures that the OpenAPI definitions of plugins are namespaced properly.
|
|
17
|
+
class RepositoryVersionResponse
|
|
18
|
+
attr_accessor :pulp_href
|
|
19
|
+
|
|
20
|
+
# Timestamp of creation.
|
|
21
|
+
attr_accessor :pulp_created
|
|
22
|
+
|
|
23
|
+
attr_accessor :number
|
|
24
|
+
|
|
25
|
+
# A repository version whose content was used as the initial set of content for this repository version
|
|
26
|
+
attr_accessor :base_version
|
|
27
|
+
|
|
28
|
+
# Various count summaries of the content in the version and the HREF to view them.
|
|
29
|
+
attr_accessor :content_summary
|
|
30
|
+
|
|
31
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
|
32
|
+
def self.attribute_map
|
|
33
|
+
{
|
|
34
|
+
:'pulp_href' => :'pulp_href',
|
|
35
|
+
:'pulp_created' => :'pulp_created',
|
|
36
|
+
:'number' => :'number',
|
|
37
|
+
:'base_version' => :'base_version',
|
|
38
|
+
:'content_summary' => :'content_summary'
|
|
39
|
+
}
|
|
40
|
+
end
|
|
41
|
+
|
|
42
|
+
# Attribute type mapping.
|
|
43
|
+
def self.openapi_types
|
|
44
|
+
{
|
|
45
|
+
:'pulp_href' => :'String',
|
|
46
|
+
:'pulp_created' => :'DateTime',
|
|
47
|
+
:'number' => :'Integer',
|
|
48
|
+
:'base_version' => :'String',
|
|
49
|
+
:'content_summary' => :'ContentSummaryResponse'
|
|
50
|
+
}
|
|
51
|
+
end
|
|
52
|
+
|
|
53
|
+
# List of attributes with nullable: true
|
|
54
|
+
def self.openapi_nullable
|
|
55
|
+
Set.new([
|
|
56
|
+
])
|
|
57
|
+
end
|
|
58
|
+
|
|
59
|
+
# Initializes the object
|
|
60
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
61
|
+
def initialize(attributes = {})
|
|
62
|
+
if (!attributes.is_a?(Hash))
|
|
63
|
+
fail ArgumentError, "The input argument (attributes) must be a hash in `PulpMavenClient::RepositoryVersionResponse` initialize method"
|
|
64
|
+
end
|
|
65
|
+
|
|
66
|
+
# check to see if the attribute exists and convert string to symbol for hash key
|
|
67
|
+
attributes = attributes.each_with_object({}) { |(k, v), h|
|
|
68
|
+
if (!self.class.attribute_map.key?(k.to_sym))
|
|
69
|
+
fail ArgumentError, "`#{k}` is not a valid attribute in `PulpMavenClient::RepositoryVersionResponse`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
|
|
70
|
+
end
|
|
71
|
+
h[k.to_sym] = v
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
if attributes.key?(:'pulp_href')
|
|
75
|
+
self.pulp_href = attributes[:'pulp_href']
|
|
76
|
+
end
|
|
77
|
+
|
|
78
|
+
if attributes.key?(:'pulp_created')
|
|
79
|
+
self.pulp_created = attributes[:'pulp_created']
|
|
80
|
+
end
|
|
81
|
+
|
|
82
|
+
if attributes.key?(:'number')
|
|
83
|
+
self.number = attributes[:'number']
|
|
84
|
+
end
|
|
85
|
+
|
|
86
|
+
if attributes.key?(:'base_version')
|
|
87
|
+
self.base_version = attributes[:'base_version']
|
|
88
|
+
end
|
|
89
|
+
|
|
90
|
+
if attributes.key?(:'content_summary')
|
|
91
|
+
self.content_summary = attributes[:'content_summary']
|
|
92
|
+
end
|
|
93
|
+
end
|
|
94
|
+
|
|
95
|
+
# Show invalid properties with the reasons. Usually used together with valid?
|
|
96
|
+
# @return Array for valid properties with the reasons
|
|
97
|
+
def list_invalid_properties
|
|
98
|
+
invalid_properties = Array.new
|
|
99
|
+
invalid_properties
|
|
100
|
+
end
|
|
101
|
+
|
|
102
|
+
# Check to see if the all the properties in the model are valid
|
|
103
|
+
# @return true if the model is valid
|
|
104
|
+
def valid?
|
|
105
|
+
true
|
|
106
|
+
end
|
|
107
|
+
|
|
108
|
+
# Checks equality by comparing each attribute.
|
|
109
|
+
# @param [Object] Object to be compared
|
|
110
|
+
def ==(o)
|
|
111
|
+
return true if self.equal?(o)
|
|
112
|
+
self.class == o.class &&
|
|
113
|
+
pulp_href == o.pulp_href &&
|
|
114
|
+
pulp_created == o.pulp_created &&
|
|
115
|
+
number == o.number &&
|
|
116
|
+
base_version == o.base_version &&
|
|
117
|
+
content_summary == o.content_summary
|
|
118
|
+
end
|
|
119
|
+
|
|
120
|
+
# @see the `==` method
|
|
121
|
+
# @param [Object] Object to be compared
|
|
122
|
+
def eql?(o)
|
|
123
|
+
self == o
|
|
124
|
+
end
|
|
125
|
+
|
|
126
|
+
# Calculates hash code according to all attributes.
|
|
127
|
+
# @return [Integer] Hash code
|
|
128
|
+
def hash
|
|
129
|
+
[pulp_href, pulp_created, number, base_version, content_summary].hash
|
|
130
|
+
end
|
|
131
|
+
|
|
132
|
+
# Builds the object from hash
|
|
133
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
134
|
+
# @return [Object] Returns the model itself
|
|
135
|
+
def self.build_from_hash(attributes)
|
|
136
|
+
new.build_from_hash(attributes)
|
|
137
|
+
end
|
|
138
|
+
|
|
139
|
+
# Builds the object from hash
|
|
140
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
141
|
+
# @return [Object] Returns the model itself
|
|
142
|
+
def build_from_hash(attributes)
|
|
143
|
+
return nil unless attributes.is_a?(Hash)
|
|
144
|
+
self.class.openapi_types.each_pair do |key, type|
|
|
145
|
+
if type =~ /\AArray<(.*)>/i
|
|
146
|
+
# check to ensure the input is an array given that the attribute
|
|
147
|
+
# is documented as an array but the input is not
|
|
148
|
+
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
|
149
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
|
|
150
|
+
end
|
|
151
|
+
elsif !attributes[self.class.attribute_map[key]].nil?
|
|
152
|
+
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
|
153
|
+
end # or else data not found in attributes(hash), not an issue as the data can be optional
|
|
154
|
+
end
|
|
155
|
+
|
|
156
|
+
self
|
|
157
|
+
end
|
|
158
|
+
|
|
159
|
+
# Deserializes the data based on type
|
|
160
|
+
# @param string type Data type
|
|
161
|
+
# @param string value Value to be deserialized
|
|
162
|
+
# @return [Object] Deserialized data
|
|
163
|
+
def _deserialize(type, value)
|
|
164
|
+
case type.to_sym
|
|
165
|
+
when :DateTime
|
|
166
|
+
DateTime.parse(value)
|
|
167
|
+
when :Date
|
|
168
|
+
Date.parse(value)
|
|
169
|
+
when :String
|
|
170
|
+
value.to_s
|
|
171
|
+
when :Integer
|
|
172
|
+
value.to_i
|
|
173
|
+
when :Float
|
|
174
|
+
value.to_f
|
|
175
|
+
when :Boolean
|
|
176
|
+
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
|
177
|
+
true
|
|
178
|
+
else
|
|
179
|
+
false
|
|
180
|
+
end
|
|
181
|
+
when :Object
|
|
182
|
+
# generic object (usually a Hash), return directly
|
|
183
|
+
value
|
|
184
|
+
when /\AArray<(?<inner_type>.+)>\z/
|
|
185
|
+
inner_type = Regexp.last_match[:inner_type]
|
|
186
|
+
value.map { |v| _deserialize(inner_type, v) }
|
|
187
|
+
when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
|
|
188
|
+
k_type = Regexp.last_match[:k_type]
|
|
189
|
+
v_type = Regexp.last_match[:v_type]
|
|
190
|
+
{}.tap do |hash|
|
|
191
|
+
value.each do |k, v|
|
|
192
|
+
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
|
193
|
+
end
|
|
194
|
+
end
|
|
195
|
+
else # model
|
|
196
|
+
PulpMavenClient.const_get(type).build_from_hash(value)
|
|
197
|
+
end
|
|
198
|
+
end
|
|
199
|
+
|
|
200
|
+
# Returns the string representation of the object
|
|
201
|
+
# @return [String] String presentation of the object
|
|
202
|
+
def to_s
|
|
203
|
+
to_hash.to_s
|
|
204
|
+
end
|
|
205
|
+
|
|
206
|
+
# to_body is an alias to to_hash (backward compatibility)
|
|
207
|
+
# @return [Hash] Returns the object in the form of hash
|
|
208
|
+
def to_body
|
|
209
|
+
to_hash
|
|
210
|
+
end
|
|
211
|
+
|
|
212
|
+
# Returns the object in the form of hash
|
|
213
|
+
# @return [Hash] Returns the object in the form of hash
|
|
214
|
+
def to_hash
|
|
215
|
+
hash = {}
|
|
216
|
+
self.class.attribute_map.each_pair do |attr, param|
|
|
217
|
+
value = self.send(attr)
|
|
218
|
+
if value.nil?
|
|
219
|
+
is_nullable = self.class.openapi_nullable.include?(attr)
|
|
220
|
+
next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
|
|
221
|
+
end
|
|
222
|
+
|
|
223
|
+
hash[param] = _to_hash(value)
|
|
224
|
+
end
|
|
225
|
+
hash
|
|
226
|
+
end
|
|
227
|
+
|
|
228
|
+
# Outputs non-array value in the form of hash
|
|
229
|
+
# For object, use to_hash. Otherwise, just return the value
|
|
230
|
+
# @param [Object] value Any valid value
|
|
231
|
+
# @return [Hash] Returns the value in the form of hash
|
|
232
|
+
def _to_hash(value)
|
|
233
|
+
if value.is_a?(Array)
|
|
234
|
+
value.compact.map { |v| _to_hash(v) }
|
|
235
|
+
elsif value.is_a?(Hash)
|
|
236
|
+
{}.tap do |hash|
|
|
237
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
|
238
|
+
end
|
|
239
|
+
elsif value.respond_to? :to_hash
|
|
240
|
+
value.to_hash
|
|
241
|
+
else
|
|
242
|
+
value
|
|
243
|
+
end
|
|
244
|
+
end
|
|
245
|
+
end
|
|
246
|
+
end
|
|
@@ -1,15 +1,15 @@
|
|
|
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
|
-
OpenAPI Generator version: 4.2.
|
|
9
|
+
OpenAPI Generator version: 4.2.3
|
|
10
10
|
|
|
11
11
|
=end
|
|
12
12
|
|
|
13
13
|
module PulpMavenClient
|
|
14
|
-
VERSION = '0.
|
|
14
|
+
VERSION = '0.2.0'
|
|
15
15
|
end
|
data/lib/pulp_maven_client.rb
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
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
|
-
OpenAPI Generator version: 4.2.
|
|
9
|
+
OpenAPI Generator version: 4.2.3
|
|
10
10
|
|
|
11
11
|
=end
|
|
12
12
|
|
|
@@ -19,16 +19,26 @@ require 'pulp_maven_client/configuration'
|
|
|
19
19
|
# Models
|
|
20
20
|
require 'pulp_maven_client/models/async_operation_response'
|
|
21
21
|
require 'pulp_maven_client/models/content_summary'
|
|
22
|
-
require 'pulp_maven_client/models/
|
|
23
|
-
require 'pulp_maven_client/models/inline_response2001'
|
|
24
|
-
require 'pulp_maven_client/models/inline_response2002'
|
|
25
|
-
require 'pulp_maven_client/models/inline_response2003'
|
|
26
|
-
require 'pulp_maven_client/models/inline_response2004'
|
|
22
|
+
require 'pulp_maven_client/models/content_summary_response'
|
|
27
23
|
require 'pulp_maven_client/models/maven_maven_artifact'
|
|
24
|
+
require 'pulp_maven_client/models/maven_maven_artifact_response'
|
|
28
25
|
require 'pulp_maven_client/models/maven_maven_distribution'
|
|
26
|
+
require 'pulp_maven_client/models/maven_maven_distribution_response'
|
|
29
27
|
require 'pulp_maven_client/models/maven_maven_remote'
|
|
28
|
+
require 'pulp_maven_client/models/maven_maven_remote_response'
|
|
30
29
|
require 'pulp_maven_client/models/maven_maven_repository'
|
|
30
|
+
require 'pulp_maven_client/models/maven_maven_repository_response'
|
|
31
|
+
require 'pulp_maven_client/models/paginated_repository_version_response_list'
|
|
32
|
+
require 'pulp_maven_client/models/paginatedmaven_maven_artifact_response_list'
|
|
33
|
+
require 'pulp_maven_client/models/paginatedmaven_maven_distribution_response_list'
|
|
34
|
+
require 'pulp_maven_client/models/paginatedmaven_maven_remote_response_list'
|
|
35
|
+
require 'pulp_maven_client/models/paginatedmaven_maven_repository_response_list'
|
|
36
|
+
require 'pulp_maven_client/models/patchedmaven_maven_distribution'
|
|
37
|
+
require 'pulp_maven_client/models/patchedmaven_maven_remote'
|
|
38
|
+
require 'pulp_maven_client/models/patchedmaven_maven_repository'
|
|
39
|
+
require 'pulp_maven_client/models/policy_enum'
|
|
31
40
|
require 'pulp_maven_client/models/repository_version'
|
|
41
|
+
require 'pulp_maven_client/models/repository_version_response'
|
|
32
42
|
|
|
33
43
|
# APIs
|
|
34
44
|
require 'pulp_maven_client/api/content_artifact_api'
|
data/pulp_maven_client.gemspec
CHANGED
|
@@ -3,12 +3,12 @@
|
|
|
3
3
|
=begin
|
|
4
4
|
#Pulp 3 API
|
|
5
5
|
|
|
6
|
-
#
|
|
6
|
+
#Fetch, Upload, Organize, and Distribute Software Packages
|
|
7
7
|
|
|
8
8
|
The version of the OpenAPI document: v3
|
|
9
|
-
|
|
9
|
+
Contact: pulp-list@redhat.com
|
|
10
10
|
Generated by: https://openapi-generator.tech
|
|
11
|
-
OpenAPI Generator version: 4.2.
|
|
11
|
+
OpenAPI Generator version: 4.2.3
|
|
12
12
|
|
|
13
13
|
=end
|
|
14
14
|
|
|
@@ -20,10 +20,10 @@ Gem::Specification.new do |s|
|
|
|
20
20
|
s.version = PulpMavenClient::VERSION
|
|
21
21
|
s.platform = Gem::Platform::RUBY
|
|
22
22
|
s.authors = ["OpenAPI-Generator"]
|
|
23
|
-
s.email = [""]
|
|
23
|
+
s.email = ["pulp-list@redhat.com"]
|
|
24
24
|
s.homepage = "https://openapi-generator.tech"
|
|
25
25
|
s.summary = "Pulp 3 API Ruby Gem"
|
|
26
|
-
s.description = "
|
|
26
|
+
s.description = "Fetch, Upload, Organize, and Distribute Software Packages"
|
|
27
27
|
s.license = 'GPL-2.0+'
|
|
28
28
|
s.required_ruby_version = ">= 1.9"
|
|
29
29
|
|
|
@@ -1,12 +1,12 @@
|
|
|
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
|
-
OpenAPI Generator version: 4.2.
|
|
9
|
+
OpenAPI Generator version: 4.2.3
|
|
10
10
|
|
|
11
11
|
=end
|
|
12
12
|
|
|
@@ -35,9 +35,9 @@ describe 'ContentArtifactApi' do
|
|
|
35
35
|
# unit tests for create
|
|
36
36
|
# Create a maven artifact
|
|
37
37
|
# A ViewSet for MavenArtifact.
|
|
38
|
-
# @param
|
|
38
|
+
# @param maven_maven_artifact
|
|
39
39
|
# @param [Hash] opts the optional parameters
|
|
40
|
-
# @return [
|
|
40
|
+
# @return [MavenMavenArtifactResponse]
|
|
41
41
|
describe 'create test' do
|
|
42
42
|
it 'should work' do
|
|
43
43
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
@@ -48,18 +48,19 @@ describe 'ContentArtifactApi' do
|
|
|
48
48
|
# List maven artifacts
|
|
49
49
|
# A ViewSet for MavenArtifact.
|
|
50
50
|
# @param [Hash] opts the optional parameters
|
|
51
|
-
# @option opts [String] :
|
|
52
|
-
# @option opts [String] :
|
|
53
|
-
# @option opts [String] :
|
|
54
|
-
# @option opts [String] :filename Filter results where filename matches value
|
|
55
|
-
# @option opts [String] :repository_version Repository Version referenced by HREF
|
|
56
|
-
# @option opts [String] :repository_version_added Repository Version referenced by HREF
|
|
57
|
-
# @option opts [String] :repository_version_removed Repository Version referenced by HREF
|
|
51
|
+
# @option opts [String] :artifact_id artifact_id
|
|
52
|
+
# @option opts [String] :filename filename
|
|
53
|
+
# @option opts [String] :group_id group_id
|
|
58
54
|
# @option opts [Integer] :limit Number of results to return per page.
|
|
59
55
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
|
56
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
57
|
+
# @option opts [String] :repository_version repository_version
|
|
58
|
+
# @option opts [String] :repository_version_added repository_version_added
|
|
59
|
+
# @option opts [String] :repository_version_removed repository_version_removed
|
|
60
|
+
# @option opts [String] :version version
|
|
60
61
|
# @option opts [String] :fields A list of fields to include in the response.
|
|
61
62
|
# @option opts [String] :exclude_fields A list of fields to exclude from the response.
|
|
62
|
-
# @return [
|
|
63
|
+
# @return [PaginatedmavenMavenArtifactResponseList]
|
|
63
64
|
describe 'list test' do
|
|
64
65
|
it 'should work' do
|
|
65
66
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
@@ -69,11 +70,11 @@ describe 'ContentArtifactApi' do
|
|
|
69
70
|
# unit tests for read
|
|
70
71
|
# Inspect a maven artifact
|
|
71
72
|
# A ViewSet for MavenArtifact.
|
|
72
|
-
# @param
|
|
73
|
+
# @param maven_maven_artifact_href
|
|
73
74
|
# @param [Hash] opts the optional parameters
|
|
74
75
|
# @option opts [String] :fields A list of fields to include in the response.
|
|
75
76
|
# @option opts [String] :exclude_fields A list of fields to exclude from the response.
|
|
76
|
-
# @return [
|
|
77
|
+
# @return [MavenMavenArtifactResponse]
|
|
77
78
|
describe 'read test' do
|
|
78
79
|
it 'should work' do
|
|
79
80
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
@@ -1,12 +1,12 @@
|
|
|
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
|
-
OpenAPI Generator version: 4.2.
|
|
9
|
+
OpenAPI Generator version: 4.2.3
|
|
10
10
|
|
|
11
11
|
=end
|
|
12
12
|
|
|
@@ -35,7 +35,7 @@ describe 'DistributionsMavenApi' do
|
|
|
35
35
|
# unit tests for create
|
|
36
36
|
# Create a maven distribution
|
|
37
37
|
# Trigger an asynchronous create task
|
|
38
|
-
# @param
|
|
38
|
+
# @param maven_maven_distribution
|
|
39
39
|
# @param [Hash] opts the optional parameters
|
|
40
40
|
# @return [AsyncOperationResponse]
|
|
41
41
|
describe 'create test' do
|
|
@@ -47,7 +47,7 @@ describe 'DistributionsMavenApi' do
|
|
|
47
47
|
# unit tests for delete
|
|
48
48
|
# Delete a maven distribution
|
|
49
49
|
# Trigger an asynchronous delete task
|
|
50
|
-
# @param
|
|
50
|
+
# @param maven_maven_distribution_href
|
|
51
51
|
# @param [Hash] opts the optional parameters
|
|
52
52
|
# @return [AsyncOperationResponse]
|
|
53
53
|
describe 'delete test' do
|
|
@@ -60,17 +60,18 @@ describe 'DistributionsMavenApi' do
|
|
|
60
60
|
# List maven distributions
|
|
61
61
|
# ViewSet for Maven Distributions.
|
|
62
62
|
# @param [Hash] opts the optional parameters
|
|
63
|
-
# @option opts [String] :
|
|
64
|
-
# @option opts [String] :
|
|
65
|
-
# @option opts [String] :
|
|
66
|
-
# @option opts [String] :
|
|
67
|
-
# @option opts [String] :base_path__icontains Filter results where base_path contains value
|
|
68
|
-
# @option opts [String] :base_path__in Filter results where base_path is in a comma-separated list of values
|
|
63
|
+
# @option opts [String] :base_path base_path
|
|
64
|
+
# @option opts [String] :base_path__contains base_path__contains
|
|
65
|
+
# @option opts [String] :base_path__icontains base_path__icontains
|
|
66
|
+
# @option opts [String] :base_path__in base_path__in
|
|
69
67
|
# @option opts [Integer] :limit Number of results to return per page.
|
|
68
|
+
# @option opts [String] :name name
|
|
69
|
+
# @option opts [String] :name__in name__in
|
|
70
70
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
|
71
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
|
71
72
|
# @option opts [String] :fields A list of fields to include in the response.
|
|
72
73
|
# @option opts [String] :exclude_fields A list of fields to exclude from the response.
|
|
73
|
-
# @return [
|
|
74
|
+
# @return [PaginatedmavenMavenDistributionResponseList]
|
|
74
75
|
describe 'list test' do
|
|
75
76
|
it 'should work' do
|
|
76
77
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
@@ -78,10 +79,10 @@ describe 'DistributionsMavenApi' do
|
|
|
78
79
|
end
|
|
79
80
|
|
|
80
81
|
# unit tests for partial_update
|
|
81
|
-
#
|
|
82
|
+
# Update a maven distribution
|
|
82
83
|
# Trigger an asynchronous partial update task
|
|
83
|
-
# @param
|
|
84
|
-
# @param
|
|
84
|
+
# @param maven_maven_distribution_href
|
|
85
|
+
# @param patchedmaven_maven_distribution
|
|
85
86
|
# @param [Hash] opts the optional parameters
|
|
86
87
|
# @return [AsyncOperationResponse]
|
|
87
88
|
describe 'partial_update test' do
|
|
@@ -93,11 +94,11 @@ describe 'DistributionsMavenApi' do
|
|
|
93
94
|
# unit tests for read
|
|
94
95
|
# Inspect a maven distribution
|
|
95
96
|
# ViewSet for Maven Distributions.
|
|
96
|
-
# @param
|
|
97
|
+
# @param maven_maven_distribution_href
|
|
97
98
|
# @param [Hash] opts the optional parameters
|
|
98
99
|
# @option opts [String] :fields A list of fields to include in the response.
|
|
99
100
|
# @option opts [String] :exclude_fields A list of fields to exclude from the response.
|
|
100
|
-
# @return [
|
|
101
|
+
# @return [MavenMavenDistributionResponse]
|
|
101
102
|
describe 'read test' do
|
|
102
103
|
it 'should work' do
|
|
103
104
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
@@ -107,8 +108,8 @@ describe 'DistributionsMavenApi' do
|
|
|
107
108
|
# unit tests for update
|
|
108
109
|
# Update a maven distribution
|
|
109
110
|
# Trigger an asynchronous update task
|
|
110
|
-
# @param
|
|
111
|
-
# @param
|
|
111
|
+
# @param maven_maven_distribution_href
|
|
112
|
+
# @param maven_maven_distribution
|
|
112
113
|
# @param [Hash] opts the optional parameters
|
|
113
114
|
# @return [AsyncOperationResponse]
|
|
114
115
|
describe 'update test' do
|