pulp_ansible_client 0.29.9 → 0.30.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 +4 -4
- data/docs/AnsibleCollectionRemote.md +3 -1
- data/docs/AnsibleCollectionRemoteResponse.md +2 -0
- data/docs/AnsibleCollectionVersionResponse.md +6 -6
- data/docs/AnsibleGitRemote.md +28 -28
- data/docs/AnsibleGitRemoteResponse.md +26 -26
- data/docs/AnsibleRole.md +4 -4
- data/docs/AnsibleRoleResponse.md +6 -6
- data/docs/ContentCollectionVersionsApi.md +8 -8
- data/docs/PatchedansibleCollectionRemote.md +3 -1
- data/docs/PatchedansibleGitRemote.md +28 -28
- data/docs/RemotesCollectionApi.md +2 -2
- data/docs/RemotesGitApi.md +2 -2
- data/lib/pulp_ansible_client/api/content_collection_versions_api.rb +12 -12
- data/lib/pulp_ansible_client/api/remotes_collection_api.rb +3 -3
- data/lib/pulp_ansible_client/models/ansible_collection_remote.rb +30 -4
- data/lib/pulp_ansible_client/models/ansible_collection_remote_response.rb +27 -1
- data/lib/pulp_ansible_client/models/ansible_collection_version_response.rb +27 -27
- data/lib/pulp_ansible_client/models/ansible_git_remote.rb +250 -250
- data/lib/pulp_ansible_client/models/ansible_git_remote_response.rb +176 -176
- data/lib/pulp_ansible_client/models/ansible_role.rb +18 -18
- data/lib/pulp_ansible_client/models/ansible_role_response.rb +27 -27
- data/lib/pulp_ansible_client/models/patchedansible_collection_remote.rb +30 -4
- data/lib/pulp_ansible_client/models/patchedansible_git_remote.rb +239 -239
- data/lib/pulp_ansible_client/version.rb +1 -1
- data/spec/api/content_collection_versions_api_spec.rb +4 -4
- data/spec/api/remotes_collection_api_spec.rb +1 -1
- data/spec/models/ansible_collection_remote_response_spec.rb +6 -0
- data/spec/models/ansible_collection_remote_spec.rb +6 -0
- data/spec/models/ansible_collection_version_response_spec.rb +5 -5
- data/spec/models/ansible_git_remote_response_spec.rb +20 -20
- data/spec/models/ansible_git_remote_spec.rb +20 -20
- data/spec/models/ansible_role_response_spec.rb +5 -5
- data/spec/models/ansible_role_spec.rb +3 -3
- data/spec/models/patchedansible_collection_remote_spec.rb +6 -0
- data/spec/models/patchedansible_git_remote_spec.rb +20 -20
- metadata +2 -2
|
@@ -16,64 +16,64 @@ require 'time'
|
|
|
16
16
|
module PulpAnsibleClient
|
|
17
17
|
# A serializer for Git Collection Remotes.
|
|
18
18
|
class AnsibleGitRemoteResponse
|
|
19
|
-
# aiohttp.ClientTimeout.total (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
|
|
20
|
-
attr_accessor :total_timeout
|
|
21
|
-
|
|
22
|
-
# The proxy URL. Format: scheme://host:port
|
|
23
|
-
attr_accessor :proxy_url
|
|
24
|
-
|
|
25
|
-
# The Pulp Resource Name (PRN).
|
|
26
|
-
attr_accessor :prn
|
|
27
|
-
|
|
28
|
-
# Headers for aiohttp.Clientsession
|
|
29
|
-
attr_accessor :headers
|
|
30
|
-
|
|
31
|
-
# List of hidden (write only) fields
|
|
32
|
-
attr_accessor :hidden_fields
|
|
33
|
-
|
|
34
|
-
attr_accessor :pulp_labels
|
|
35
|
-
|
|
36
19
|
attr_accessor :pulp_href
|
|
37
20
|
|
|
38
|
-
# aiohttp.ClientTimeout.connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
|
|
39
|
-
attr_accessor :connect_timeout
|
|
40
|
-
|
|
41
|
-
# aiohttp.ClientTimeout.sock_read (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
|
|
42
|
-
attr_accessor :sock_read_timeout
|
|
43
|
-
|
|
44
|
-
# A unique name for this remote.
|
|
45
|
-
attr_accessor :name
|
|
46
|
-
|
|
47
|
-
# The URL of an external content source.
|
|
48
|
-
attr_accessor :url
|
|
49
|
-
|
|
50
21
|
# aiohttp.ClientTimeout.sock_connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
|
|
51
22
|
attr_accessor :sock_connect_timeout
|
|
52
23
|
|
|
53
|
-
# A PEM encoded client certificate used for authentication.
|
|
54
|
-
attr_accessor :client_cert
|
|
55
|
-
|
|
56
|
-
# If True, TLS peer validation must be performed.
|
|
57
|
-
attr_accessor :tls_validation
|
|
58
|
-
|
|
59
24
|
# Limits requests per second for each concurrent downloader
|
|
60
25
|
attr_accessor :rate_limit
|
|
61
26
|
|
|
27
|
+
# Total number of simultaneous connections. If not set then the default value will be used.
|
|
28
|
+
attr_accessor :download_concurrency
|
|
29
|
+
|
|
30
|
+
# A PEM encoded client certificate used for authentication.
|
|
31
|
+
attr_accessor :client_cert
|
|
32
|
+
|
|
62
33
|
# Timestamp of creation.
|
|
63
34
|
attr_accessor :pulp_created
|
|
64
35
|
|
|
65
36
|
# Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used.
|
|
66
37
|
attr_accessor :max_retries
|
|
67
38
|
|
|
68
|
-
#
|
|
69
|
-
attr_accessor :
|
|
39
|
+
# The URL of an external content source.
|
|
40
|
+
attr_accessor :url
|
|
41
|
+
|
|
42
|
+
# aiohttp.ClientTimeout.total (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
|
|
43
|
+
attr_accessor :total_timeout
|
|
70
44
|
|
|
71
45
|
# Timestamp of the most recent update of the remote.
|
|
72
46
|
attr_accessor :pulp_last_updated
|
|
73
47
|
|
|
48
|
+
# List of hidden (write only) fields
|
|
49
|
+
attr_accessor :hidden_fields
|
|
50
|
+
|
|
74
51
|
# A PEM encoded CA certificate used to validate the server certificate presented by the remote server.
|
|
75
52
|
attr_accessor :ca_cert
|
|
76
53
|
|
|
54
|
+
# Headers for aiohttp.Clientsession
|
|
55
|
+
attr_accessor :headers
|
|
56
|
+
|
|
57
|
+
# aiohttp.ClientTimeout.sock_read (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
|
|
58
|
+
attr_accessor :sock_read_timeout
|
|
59
|
+
|
|
60
|
+
# The proxy URL. Format: scheme://host:port
|
|
61
|
+
attr_accessor :proxy_url
|
|
62
|
+
|
|
63
|
+
attr_accessor :pulp_labels
|
|
64
|
+
|
|
65
|
+
# The Pulp Resource Name (PRN).
|
|
66
|
+
attr_accessor :prn
|
|
67
|
+
|
|
68
|
+
# If True, TLS peer validation must be performed.
|
|
69
|
+
attr_accessor :tls_validation
|
|
70
|
+
|
|
71
|
+
# A unique name for this remote.
|
|
72
|
+
attr_accessor :name
|
|
73
|
+
|
|
74
|
+
# aiohttp.ClientTimeout.connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
|
|
75
|
+
attr_accessor :connect_timeout
|
|
76
|
+
|
|
77
77
|
# If True, only metadata about the content will be stored in Pulp. Clients will retrieve content from the remote URL.
|
|
78
78
|
attr_accessor :metadata_only
|
|
79
79
|
|
|
@@ -83,26 +83,26 @@ module PulpAnsibleClient
|
|
|
83
83
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
84
84
|
def self.attribute_map
|
|
85
85
|
{
|
|
86
|
-
:'total_timeout' => :'total_timeout',
|
|
87
|
-
:'proxy_url' => :'proxy_url',
|
|
88
|
-
:'prn' => :'prn',
|
|
89
|
-
:'headers' => :'headers',
|
|
90
|
-
:'hidden_fields' => :'hidden_fields',
|
|
91
|
-
:'pulp_labels' => :'pulp_labels',
|
|
92
86
|
:'pulp_href' => :'pulp_href',
|
|
93
|
-
:'connect_timeout' => :'connect_timeout',
|
|
94
|
-
:'sock_read_timeout' => :'sock_read_timeout',
|
|
95
|
-
:'name' => :'name',
|
|
96
|
-
:'url' => :'url',
|
|
97
87
|
:'sock_connect_timeout' => :'sock_connect_timeout',
|
|
98
|
-
:'client_cert' => :'client_cert',
|
|
99
|
-
:'tls_validation' => :'tls_validation',
|
|
100
88
|
:'rate_limit' => :'rate_limit',
|
|
89
|
+
:'download_concurrency' => :'download_concurrency',
|
|
90
|
+
:'client_cert' => :'client_cert',
|
|
101
91
|
:'pulp_created' => :'pulp_created',
|
|
102
92
|
:'max_retries' => :'max_retries',
|
|
103
|
-
:'
|
|
93
|
+
:'url' => :'url',
|
|
94
|
+
:'total_timeout' => :'total_timeout',
|
|
104
95
|
:'pulp_last_updated' => :'pulp_last_updated',
|
|
96
|
+
:'hidden_fields' => :'hidden_fields',
|
|
105
97
|
:'ca_cert' => :'ca_cert',
|
|
98
|
+
:'headers' => :'headers',
|
|
99
|
+
:'sock_read_timeout' => :'sock_read_timeout',
|
|
100
|
+
:'proxy_url' => :'proxy_url',
|
|
101
|
+
:'pulp_labels' => :'pulp_labels',
|
|
102
|
+
:'prn' => :'prn',
|
|
103
|
+
:'tls_validation' => :'tls_validation',
|
|
104
|
+
:'name' => :'name',
|
|
105
|
+
:'connect_timeout' => :'connect_timeout',
|
|
106
106
|
:'metadata_only' => :'metadata_only',
|
|
107
107
|
:'git_ref' => :'git_ref'
|
|
108
108
|
}
|
|
@@ -116,26 +116,26 @@ module PulpAnsibleClient
|
|
|
116
116
|
# Attribute type mapping.
|
|
117
117
|
def self.openapi_types
|
|
118
118
|
{
|
|
119
|
-
:'total_timeout' => :'Float',
|
|
120
|
-
:'proxy_url' => :'String',
|
|
121
|
-
:'prn' => :'String',
|
|
122
|
-
:'headers' => :'Array<Object>',
|
|
123
|
-
:'hidden_fields' => :'Array<AnsibleCollectionRemoteResponseHiddenFieldsInner>',
|
|
124
|
-
:'pulp_labels' => :'Hash<String, String>',
|
|
125
119
|
:'pulp_href' => :'String',
|
|
126
|
-
:'connect_timeout' => :'Float',
|
|
127
|
-
:'sock_read_timeout' => :'Float',
|
|
128
|
-
:'name' => :'String',
|
|
129
|
-
:'url' => :'String',
|
|
130
120
|
:'sock_connect_timeout' => :'Float',
|
|
131
|
-
:'client_cert' => :'String',
|
|
132
|
-
:'tls_validation' => :'Boolean',
|
|
133
121
|
:'rate_limit' => :'Integer',
|
|
122
|
+
:'download_concurrency' => :'Integer',
|
|
123
|
+
:'client_cert' => :'String',
|
|
134
124
|
:'pulp_created' => :'Time',
|
|
135
125
|
:'max_retries' => :'Integer',
|
|
136
|
-
:'
|
|
126
|
+
:'url' => :'String',
|
|
127
|
+
:'total_timeout' => :'Float',
|
|
137
128
|
:'pulp_last_updated' => :'Time',
|
|
129
|
+
:'hidden_fields' => :'Array<AnsibleCollectionRemoteResponseHiddenFieldsInner>',
|
|
138
130
|
:'ca_cert' => :'String',
|
|
131
|
+
:'headers' => :'Array<Object>',
|
|
132
|
+
:'sock_read_timeout' => :'Float',
|
|
133
|
+
:'proxy_url' => :'String',
|
|
134
|
+
:'pulp_labels' => :'Hash<String, String>',
|
|
135
|
+
:'prn' => :'String',
|
|
136
|
+
:'tls_validation' => :'Boolean',
|
|
137
|
+
:'name' => :'String',
|
|
138
|
+
:'connect_timeout' => :'Float',
|
|
139
139
|
:'metadata_only' => :'Boolean',
|
|
140
140
|
:'git_ref' => :'String'
|
|
141
141
|
}
|
|
@@ -144,16 +144,16 @@ module PulpAnsibleClient
|
|
|
144
144
|
# List of attributes with nullable: true
|
|
145
145
|
def self.openapi_nullable
|
|
146
146
|
Set.new([
|
|
147
|
-
:'total_timeout',
|
|
148
|
-
:'proxy_url',
|
|
149
|
-
:'connect_timeout',
|
|
150
|
-
:'sock_read_timeout',
|
|
151
147
|
:'sock_connect_timeout',
|
|
152
|
-
:'client_cert',
|
|
153
148
|
:'rate_limit',
|
|
154
|
-
:'max_retries',
|
|
155
149
|
:'download_concurrency',
|
|
150
|
+
:'client_cert',
|
|
151
|
+
:'max_retries',
|
|
152
|
+
:'total_timeout',
|
|
156
153
|
:'ca_cert',
|
|
154
|
+
:'sock_read_timeout',
|
|
155
|
+
:'proxy_url',
|
|
156
|
+
:'connect_timeout',
|
|
157
157
|
])
|
|
158
158
|
end
|
|
159
159
|
|
|
@@ -172,94 +172,94 @@ module PulpAnsibleClient
|
|
|
172
172
|
h[k.to_sym] = v
|
|
173
173
|
}
|
|
174
174
|
|
|
175
|
-
if attributes.key?(:'
|
|
176
|
-
self.
|
|
175
|
+
if attributes.key?(:'pulp_href')
|
|
176
|
+
self.pulp_href = attributes[:'pulp_href']
|
|
177
177
|
end
|
|
178
178
|
|
|
179
|
-
if attributes.key?(:'
|
|
180
|
-
self.
|
|
179
|
+
if attributes.key?(:'sock_connect_timeout')
|
|
180
|
+
self.sock_connect_timeout = attributes[:'sock_connect_timeout']
|
|
181
181
|
end
|
|
182
182
|
|
|
183
|
-
if attributes.key?(:'
|
|
184
|
-
self.
|
|
183
|
+
if attributes.key?(:'rate_limit')
|
|
184
|
+
self.rate_limit = attributes[:'rate_limit']
|
|
185
185
|
end
|
|
186
186
|
|
|
187
|
-
if attributes.key?(:'
|
|
188
|
-
|
|
189
|
-
self.headers = value
|
|
190
|
-
end
|
|
187
|
+
if attributes.key?(:'download_concurrency')
|
|
188
|
+
self.download_concurrency = attributes[:'download_concurrency']
|
|
191
189
|
end
|
|
192
190
|
|
|
193
|
-
if attributes.key?(:'
|
|
194
|
-
|
|
195
|
-
self.hidden_fields = value
|
|
196
|
-
end
|
|
191
|
+
if attributes.key?(:'client_cert')
|
|
192
|
+
self.client_cert = attributes[:'client_cert']
|
|
197
193
|
end
|
|
198
194
|
|
|
199
|
-
if attributes.key?(:'
|
|
200
|
-
|
|
201
|
-
self.pulp_labels = value
|
|
202
|
-
end
|
|
195
|
+
if attributes.key?(:'pulp_created')
|
|
196
|
+
self.pulp_created = attributes[:'pulp_created']
|
|
203
197
|
end
|
|
204
198
|
|
|
205
|
-
if attributes.key?(:'
|
|
206
|
-
self.
|
|
199
|
+
if attributes.key?(:'max_retries')
|
|
200
|
+
self.max_retries = attributes[:'max_retries']
|
|
207
201
|
end
|
|
208
202
|
|
|
209
|
-
if attributes.key?(:'
|
|
210
|
-
self.
|
|
203
|
+
if attributes.key?(:'url')
|
|
204
|
+
self.url = attributes[:'url']
|
|
205
|
+
else
|
|
206
|
+
self.url = nil
|
|
211
207
|
end
|
|
212
208
|
|
|
213
|
-
if attributes.key?(:'
|
|
214
|
-
self.
|
|
209
|
+
if attributes.key?(:'total_timeout')
|
|
210
|
+
self.total_timeout = attributes[:'total_timeout']
|
|
215
211
|
end
|
|
216
212
|
|
|
217
|
-
if attributes.key?(:'
|
|
218
|
-
self.
|
|
219
|
-
else
|
|
220
|
-
self.name = nil
|
|
213
|
+
if attributes.key?(:'pulp_last_updated')
|
|
214
|
+
self.pulp_last_updated = attributes[:'pulp_last_updated']
|
|
221
215
|
end
|
|
222
216
|
|
|
223
|
-
if attributes.key?(:'
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
217
|
+
if attributes.key?(:'hidden_fields')
|
|
218
|
+
if (value = attributes[:'hidden_fields']).is_a?(Array)
|
|
219
|
+
self.hidden_fields = value
|
|
220
|
+
end
|
|
227
221
|
end
|
|
228
222
|
|
|
229
|
-
if attributes.key?(:'
|
|
230
|
-
self.
|
|
223
|
+
if attributes.key?(:'ca_cert')
|
|
224
|
+
self.ca_cert = attributes[:'ca_cert']
|
|
231
225
|
end
|
|
232
226
|
|
|
233
|
-
if attributes.key?(:'
|
|
234
|
-
|
|
227
|
+
if attributes.key?(:'headers')
|
|
228
|
+
if (value = attributes[:'headers']).is_a?(Array)
|
|
229
|
+
self.headers = value
|
|
230
|
+
end
|
|
235
231
|
end
|
|
236
232
|
|
|
237
|
-
if attributes.key?(:'
|
|
238
|
-
self.
|
|
233
|
+
if attributes.key?(:'sock_read_timeout')
|
|
234
|
+
self.sock_read_timeout = attributes[:'sock_read_timeout']
|
|
239
235
|
end
|
|
240
236
|
|
|
241
|
-
if attributes.key?(:'
|
|
242
|
-
self.
|
|
237
|
+
if attributes.key?(:'proxy_url')
|
|
238
|
+
self.proxy_url = attributes[:'proxy_url']
|
|
243
239
|
end
|
|
244
240
|
|
|
245
|
-
if attributes.key?(:'
|
|
246
|
-
|
|
241
|
+
if attributes.key?(:'pulp_labels')
|
|
242
|
+
if (value = attributes[:'pulp_labels']).is_a?(Hash)
|
|
243
|
+
self.pulp_labels = value
|
|
244
|
+
end
|
|
247
245
|
end
|
|
248
246
|
|
|
249
|
-
if attributes.key?(:'
|
|
250
|
-
self.
|
|
247
|
+
if attributes.key?(:'prn')
|
|
248
|
+
self.prn = attributes[:'prn']
|
|
251
249
|
end
|
|
252
250
|
|
|
253
|
-
if attributes.key?(:'
|
|
254
|
-
self.
|
|
251
|
+
if attributes.key?(:'tls_validation')
|
|
252
|
+
self.tls_validation = attributes[:'tls_validation']
|
|
255
253
|
end
|
|
256
254
|
|
|
257
|
-
if attributes.key?(:'
|
|
258
|
-
self.
|
|
255
|
+
if attributes.key?(:'name')
|
|
256
|
+
self.name = attributes[:'name']
|
|
257
|
+
else
|
|
258
|
+
self.name = nil
|
|
259
259
|
end
|
|
260
260
|
|
|
261
|
-
if attributes.key?(:'
|
|
262
|
-
self.
|
|
261
|
+
if attributes.key?(:'connect_timeout')
|
|
262
|
+
self.connect_timeout = attributes[:'connect_timeout']
|
|
263
263
|
end
|
|
264
264
|
|
|
265
265
|
if attributes.key?(:'metadata_only')
|
|
@@ -276,32 +276,32 @@ module PulpAnsibleClient
|
|
|
276
276
|
def list_invalid_properties
|
|
277
277
|
warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
|
|
278
278
|
invalid_properties = Array.new
|
|
279
|
-
if !@
|
|
280
|
-
invalid_properties.push('invalid value for "
|
|
279
|
+
if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
|
|
280
|
+
invalid_properties.push('invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.')
|
|
281
281
|
end
|
|
282
282
|
|
|
283
|
-
if !@
|
|
284
|
-
invalid_properties.push('invalid value for "
|
|
283
|
+
if !@download_concurrency.nil? && @download_concurrency < 1
|
|
284
|
+
invalid_properties.push('invalid value for "download_concurrency", must be greater than or equal to 1.')
|
|
285
285
|
end
|
|
286
286
|
|
|
287
|
-
if
|
|
288
|
-
invalid_properties.push('invalid value for "
|
|
287
|
+
if @url.nil?
|
|
288
|
+
invalid_properties.push('invalid value for "url", url cannot be nil.')
|
|
289
289
|
end
|
|
290
290
|
|
|
291
|
-
if
|
|
292
|
-
invalid_properties.push('invalid value for "
|
|
291
|
+
if !@total_timeout.nil? && @total_timeout < 0.0
|
|
292
|
+
invalid_properties.push('invalid value for "total_timeout", must be greater than or equal to 0.0.')
|
|
293
293
|
end
|
|
294
294
|
|
|
295
|
-
if
|
|
296
|
-
invalid_properties.push('invalid value for "
|
|
295
|
+
if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
|
|
296
|
+
invalid_properties.push('invalid value for "sock_read_timeout", must be greater than or equal to 0.0.')
|
|
297
297
|
end
|
|
298
298
|
|
|
299
|
-
if
|
|
300
|
-
invalid_properties.push('invalid value for "
|
|
299
|
+
if @name.nil?
|
|
300
|
+
invalid_properties.push('invalid value for "name", name cannot be nil.')
|
|
301
301
|
end
|
|
302
302
|
|
|
303
|
-
if !@
|
|
304
|
-
invalid_properties.push('invalid value for "
|
|
303
|
+
if !@connect_timeout.nil? && @connect_timeout < 0.0
|
|
304
|
+
invalid_properties.push('invalid value for "connect_timeout", must be greater than or equal to 0.0.')
|
|
305
305
|
end
|
|
306
306
|
|
|
307
307
|
invalid_properties
|
|
@@ -311,64 +311,64 @@ module PulpAnsibleClient
|
|
|
311
311
|
# @return true if the model is valid
|
|
312
312
|
def valid?
|
|
313
313
|
warn '[DEPRECATED] the `valid?` method is obsolete'
|
|
314
|
+
return false if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
|
|
315
|
+
return false if !@download_concurrency.nil? && @download_concurrency < 1
|
|
316
|
+
return false if @url.nil?
|
|
314
317
|
return false if !@total_timeout.nil? && @total_timeout < 0.0
|
|
315
|
-
return false if !@connect_timeout.nil? && @connect_timeout < 0.0
|
|
316
318
|
return false if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
|
|
317
319
|
return false if @name.nil?
|
|
318
|
-
return false if
|
|
319
|
-
return false if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
|
|
320
|
-
return false if !@download_concurrency.nil? && @download_concurrency < 1
|
|
320
|
+
return false if !@connect_timeout.nil? && @connect_timeout < 0.0
|
|
321
321
|
true
|
|
322
322
|
end
|
|
323
323
|
|
|
324
324
|
# Custom attribute writer method with validation
|
|
325
|
-
# @param [Object]
|
|
326
|
-
def
|
|
327
|
-
if !
|
|
328
|
-
fail ArgumentError, 'invalid value for "
|
|
325
|
+
# @param [Object] sock_connect_timeout Value to be assigned
|
|
326
|
+
def sock_connect_timeout=(sock_connect_timeout)
|
|
327
|
+
if !sock_connect_timeout.nil? && sock_connect_timeout < 0.0
|
|
328
|
+
fail ArgumentError, 'invalid value for "sock_connect_timeout", must be greater than or equal to 0.0.'
|
|
329
329
|
end
|
|
330
330
|
|
|
331
|
-
@
|
|
331
|
+
@sock_connect_timeout = sock_connect_timeout
|
|
332
332
|
end
|
|
333
333
|
|
|
334
334
|
# Custom attribute writer method with validation
|
|
335
|
-
# @param [Object]
|
|
336
|
-
def
|
|
337
|
-
if !
|
|
338
|
-
fail ArgumentError, 'invalid value for "
|
|
335
|
+
# @param [Object] download_concurrency Value to be assigned
|
|
336
|
+
def download_concurrency=(download_concurrency)
|
|
337
|
+
if !download_concurrency.nil? && download_concurrency < 1
|
|
338
|
+
fail ArgumentError, 'invalid value for "download_concurrency", must be greater than or equal to 1.'
|
|
339
339
|
end
|
|
340
340
|
|
|
341
|
-
@
|
|
341
|
+
@download_concurrency = download_concurrency
|
|
342
342
|
end
|
|
343
343
|
|
|
344
344
|
# Custom attribute writer method with validation
|
|
345
|
-
# @param [Object]
|
|
346
|
-
def
|
|
347
|
-
if !
|
|
348
|
-
fail ArgumentError, 'invalid value for "
|
|
345
|
+
# @param [Object] total_timeout Value to be assigned
|
|
346
|
+
def total_timeout=(total_timeout)
|
|
347
|
+
if !total_timeout.nil? && total_timeout < 0.0
|
|
348
|
+
fail ArgumentError, 'invalid value for "total_timeout", must be greater than or equal to 0.0.'
|
|
349
349
|
end
|
|
350
350
|
|
|
351
|
-
@
|
|
351
|
+
@total_timeout = total_timeout
|
|
352
352
|
end
|
|
353
353
|
|
|
354
354
|
# Custom attribute writer method with validation
|
|
355
|
-
# @param [Object]
|
|
356
|
-
def
|
|
357
|
-
if !
|
|
358
|
-
fail ArgumentError, 'invalid value for "
|
|
355
|
+
# @param [Object] sock_read_timeout Value to be assigned
|
|
356
|
+
def sock_read_timeout=(sock_read_timeout)
|
|
357
|
+
if !sock_read_timeout.nil? && sock_read_timeout < 0.0
|
|
358
|
+
fail ArgumentError, 'invalid value for "sock_read_timeout", must be greater than or equal to 0.0.'
|
|
359
359
|
end
|
|
360
360
|
|
|
361
|
-
@
|
|
361
|
+
@sock_read_timeout = sock_read_timeout
|
|
362
362
|
end
|
|
363
363
|
|
|
364
364
|
# Custom attribute writer method with validation
|
|
365
|
-
# @param [Object]
|
|
366
|
-
def
|
|
367
|
-
if !
|
|
368
|
-
fail ArgumentError, 'invalid value for "
|
|
365
|
+
# @param [Object] connect_timeout Value to be assigned
|
|
366
|
+
def connect_timeout=(connect_timeout)
|
|
367
|
+
if !connect_timeout.nil? && connect_timeout < 0.0
|
|
368
|
+
fail ArgumentError, 'invalid value for "connect_timeout", must be greater than or equal to 0.0.'
|
|
369
369
|
end
|
|
370
370
|
|
|
371
|
-
@
|
|
371
|
+
@connect_timeout = connect_timeout
|
|
372
372
|
end
|
|
373
373
|
|
|
374
374
|
# Checks equality by comparing each attribute.
|
|
@@ -376,26 +376,26 @@ module PulpAnsibleClient
|
|
|
376
376
|
def ==(o)
|
|
377
377
|
return true if self.equal?(o)
|
|
378
378
|
self.class == o.class &&
|
|
379
|
-
total_timeout == o.total_timeout &&
|
|
380
|
-
proxy_url == o.proxy_url &&
|
|
381
|
-
prn == o.prn &&
|
|
382
|
-
headers == o.headers &&
|
|
383
|
-
hidden_fields == o.hidden_fields &&
|
|
384
|
-
pulp_labels == o.pulp_labels &&
|
|
385
379
|
pulp_href == o.pulp_href &&
|
|
386
|
-
connect_timeout == o.connect_timeout &&
|
|
387
|
-
sock_read_timeout == o.sock_read_timeout &&
|
|
388
|
-
name == o.name &&
|
|
389
|
-
url == o.url &&
|
|
390
380
|
sock_connect_timeout == o.sock_connect_timeout &&
|
|
391
|
-
client_cert == o.client_cert &&
|
|
392
|
-
tls_validation == o.tls_validation &&
|
|
393
381
|
rate_limit == o.rate_limit &&
|
|
382
|
+
download_concurrency == o.download_concurrency &&
|
|
383
|
+
client_cert == o.client_cert &&
|
|
394
384
|
pulp_created == o.pulp_created &&
|
|
395
385
|
max_retries == o.max_retries &&
|
|
396
|
-
|
|
386
|
+
url == o.url &&
|
|
387
|
+
total_timeout == o.total_timeout &&
|
|
397
388
|
pulp_last_updated == o.pulp_last_updated &&
|
|
389
|
+
hidden_fields == o.hidden_fields &&
|
|
398
390
|
ca_cert == o.ca_cert &&
|
|
391
|
+
headers == o.headers &&
|
|
392
|
+
sock_read_timeout == o.sock_read_timeout &&
|
|
393
|
+
proxy_url == o.proxy_url &&
|
|
394
|
+
pulp_labels == o.pulp_labels &&
|
|
395
|
+
prn == o.prn &&
|
|
396
|
+
tls_validation == o.tls_validation &&
|
|
397
|
+
name == o.name &&
|
|
398
|
+
connect_timeout == o.connect_timeout &&
|
|
399
399
|
metadata_only == o.metadata_only &&
|
|
400
400
|
git_ref == o.git_ref
|
|
401
401
|
end
|
|
@@ -409,7 +409,7 @@ module PulpAnsibleClient
|
|
|
409
409
|
# Calculates hash code according to all attributes.
|
|
410
410
|
# @return [Integer] Hash code
|
|
411
411
|
def hash
|
|
412
|
-
[
|
|
412
|
+
[pulp_href, sock_connect_timeout, rate_limit, download_concurrency, client_cert, pulp_created, max_retries, url, total_timeout, pulp_last_updated, hidden_fields, ca_cert, headers, sock_read_timeout, proxy_url, pulp_labels, prn, tls_validation, name, connect_timeout, metadata_only, git_ref].hash
|
|
413
413
|
end
|
|
414
414
|
|
|
415
415
|
# Builds the object from hash
|
|
@@ -16,17 +16,17 @@ require 'time'
|
|
|
16
16
|
module PulpAnsibleClient
|
|
17
17
|
# A serializer for Role versions.
|
|
18
18
|
class AnsibleRole
|
|
19
|
+
# When set to true, existing content in the repository with the same unique key will be silently overwritten. When set to false, the task will fail if content would be overwritten. Only used when 'repository' is specified. Defaults to true.
|
|
20
|
+
attr_accessor :overwrite
|
|
21
|
+
|
|
19
22
|
# Artifact file representing the physical content
|
|
20
23
|
attr_accessor :artifact
|
|
21
24
|
|
|
22
|
-
# A URI of a repository the new content unit should be associated with.
|
|
23
|
-
attr_accessor :repository
|
|
24
|
-
|
|
25
25
|
# A dictionary of arbitrary key/value pairs used to describe a specific Content instance.
|
|
26
26
|
attr_accessor :pulp_labels
|
|
27
27
|
|
|
28
|
-
#
|
|
29
|
-
attr_accessor :
|
|
28
|
+
# A URI of a repository the new content unit should be associated with.
|
|
29
|
+
attr_accessor :repository
|
|
30
30
|
|
|
31
31
|
attr_accessor :version
|
|
32
32
|
|
|
@@ -37,10 +37,10 @@ module PulpAnsibleClient
|
|
|
37
37
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
38
38
|
def self.attribute_map
|
|
39
39
|
{
|
|
40
|
+
:'overwrite' => :'overwrite',
|
|
40
41
|
:'artifact' => :'artifact',
|
|
41
|
-
:'repository' => :'repository',
|
|
42
42
|
:'pulp_labels' => :'pulp_labels',
|
|
43
|
-
:'
|
|
43
|
+
:'repository' => :'repository',
|
|
44
44
|
:'version' => :'version',
|
|
45
45
|
:'name' => :'name',
|
|
46
46
|
:'namespace' => :'namespace'
|
|
@@ -55,10 +55,10 @@ module PulpAnsibleClient
|
|
|
55
55
|
# Attribute type mapping.
|
|
56
56
|
def self.openapi_types
|
|
57
57
|
{
|
|
58
|
+
:'overwrite' => :'Boolean',
|
|
58
59
|
:'artifact' => :'String',
|
|
59
|
-
:'repository' => :'String',
|
|
60
60
|
:'pulp_labels' => :'Hash<String, String>',
|
|
61
|
-
:'
|
|
61
|
+
:'repository' => :'String',
|
|
62
62
|
:'version' => :'String',
|
|
63
63
|
:'name' => :'String',
|
|
64
64
|
:'namespace' => :'String'
|
|
@@ -86,24 +86,24 @@ module PulpAnsibleClient
|
|
|
86
86
|
h[k.to_sym] = v
|
|
87
87
|
}
|
|
88
88
|
|
|
89
|
+
if attributes.key?(:'overwrite')
|
|
90
|
+
self.overwrite = attributes[:'overwrite']
|
|
91
|
+
end
|
|
92
|
+
|
|
89
93
|
if attributes.key?(:'artifact')
|
|
90
94
|
self.artifact = attributes[:'artifact']
|
|
91
95
|
else
|
|
92
96
|
self.artifact = nil
|
|
93
97
|
end
|
|
94
98
|
|
|
95
|
-
if attributes.key?(:'repository')
|
|
96
|
-
self.repository = attributes[:'repository']
|
|
97
|
-
end
|
|
98
|
-
|
|
99
99
|
if attributes.key?(:'pulp_labels')
|
|
100
100
|
if (value = attributes[:'pulp_labels']).is_a?(Hash)
|
|
101
101
|
self.pulp_labels = value
|
|
102
102
|
end
|
|
103
103
|
end
|
|
104
104
|
|
|
105
|
-
if attributes.key?(:'
|
|
106
|
-
self.
|
|
105
|
+
if attributes.key?(:'repository')
|
|
106
|
+
self.repository = attributes[:'repository']
|
|
107
107
|
end
|
|
108
108
|
|
|
109
109
|
if attributes.key?(:'version')
|
|
@@ -222,10 +222,10 @@ module PulpAnsibleClient
|
|
|
222
222
|
def ==(o)
|
|
223
223
|
return true if self.equal?(o)
|
|
224
224
|
self.class == o.class &&
|
|
225
|
+
overwrite == o.overwrite &&
|
|
225
226
|
artifact == o.artifact &&
|
|
226
|
-
repository == o.repository &&
|
|
227
227
|
pulp_labels == o.pulp_labels &&
|
|
228
|
-
|
|
228
|
+
repository == o.repository &&
|
|
229
229
|
version == o.version &&
|
|
230
230
|
name == o.name &&
|
|
231
231
|
namespace == o.namespace
|
|
@@ -240,7 +240,7 @@ module PulpAnsibleClient
|
|
|
240
240
|
# Calculates hash code according to all attributes.
|
|
241
241
|
# @return [Integer] Hash code
|
|
242
242
|
def hash
|
|
243
|
-
[
|
|
243
|
+
[overwrite, artifact, pulp_labels, repository, version, name, namespace].hash
|
|
244
244
|
end
|
|
245
245
|
|
|
246
246
|
# Builds the object from hash
|