pulp_ansible_client 0.11.0.dev1636514074 → 0.11.0.dev1636859743

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of pulp_ansible_client might be problematic. Click here for more details.

@@ -15,37 +15,38 @@ require 'date'
15
15
  module PulpAnsibleClient
16
16
  # A serializer for Git Collection Remotes.
17
17
  class AnsibleGitRemote
18
- # If True, TLS peer validation must be performed.
19
- attr_accessor :tls_validation
18
+ # Total number of simultaneous connections. If not set then the default value will be used.
19
+ attr_accessor :download_concurrency
20
20
 
21
- # A PEM encoded CA certificate used to validate the server certificate presented by the remote server.
22
- attr_accessor :ca_cert
21
+ # The password to be used for authentication when syncing.
22
+ attr_accessor :password
23
23
 
24
- attr_accessor :pulp_labels
24
+ # A PEM encoded private key used for authentication.
25
+ attr_accessor :client_key
25
26
 
26
27
  # Limits total download rate in requests per second
27
28
  attr_accessor :rate_limit
28
29
 
29
- # A PEM encoded private key used for authentication.
30
- attr_accessor :client_key
30
+ # A unique name for this remote.
31
+ attr_accessor :name
31
32
 
32
- # A PEM encoded client certificate used for authentication.
33
- attr_accessor :client_cert
33
+ # The proxy URL. Format: scheme://host:port
34
+ attr_accessor :proxy_url
35
+
36
+ # The username to be used for authentication when syncing.
37
+ attr_accessor :username
34
38
 
35
39
  # 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.
36
40
  attr_accessor :sock_read_timeout
37
41
 
38
- # The URL of an external content source.
39
- attr_accessor :url
40
-
41
42
  # The username to authenticte to the proxy.
42
43
  attr_accessor :proxy_username
43
44
 
44
45
  # 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.
45
46
  attr_accessor :sock_connect_timeout
46
47
 
47
- # The password to be used for authentication when syncing.
48
- attr_accessor :password
48
+ # A PEM encoded CA certificate used to validate the server certificate presented by the remote server.
49
+ attr_accessor :ca_cert
49
50
 
50
51
  # aiohttp.ClientTimeout.total (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
51
52
  attr_accessor :total_timeout
@@ -53,53 +54,52 @@ module PulpAnsibleClient
53
54
  # Headers for aiohttp.Clientsession
54
55
  attr_accessor :headers
55
56
 
56
- # Total number of simultaneous connections. If not set then the default value will be used.
57
- attr_accessor :download_concurrency
58
-
59
- # Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used.
60
- attr_accessor :max_retries
61
-
62
- # The username to be used for authentication when syncing.
63
- attr_accessor :username
64
-
65
57
  # The password to authenticte to the proxy.
66
58
  attr_accessor :proxy_password
67
59
 
68
- # A unique name for this remote.
69
- attr_accessor :name
60
+ attr_accessor :pulp_labels
70
61
 
71
- # The proxy URL. Format: scheme://host:port
72
- attr_accessor :proxy_url
62
+ # If True, TLS peer validation must be performed.
63
+ attr_accessor :tls_validation
64
+
65
+ # The URL of an external content source.
66
+ attr_accessor :url
67
+
68
+ # Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used.
69
+ attr_accessor :max_retries
73
70
 
74
71
  # 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
72
  attr_accessor :connect_timeout
76
73
 
74
+ # A PEM encoded client certificate used for authentication.
75
+ attr_accessor :client_cert
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
 
80
80
  # Attribute mapping from ruby-style variable name to JSON key.
81
81
  def self.attribute_map
82
82
  {
83
- :'tls_validation' => :'tls_validation',
84
- :'ca_cert' => :'ca_cert',
85
- :'pulp_labels' => :'pulp_labels',
86
- :'rate_limit' => :'rate_limit',
83
+ :'download_concurrency' => :'download_concurrency',
84
+ :'password' => :'password',
87
85
  :'client_key' => :'client_key',
88
- :'client_cert' => :'client_cert',
86
+ :'rate_limit' => :'rate_limit',
87
+ :'name' => :'name',
88
+ :'proxy_url' => :'proxy_url',
89
+ :'username' => :'username',
89
90
  :'sock_read_timeout' => :'sock_read_timeout',
90
- :'url' => :'url',
91
91
  :'proxy_username' => :'proxy_username',
92
92
  :'sock_connect_timeout' => :'sock_connect_timeout',
93
- :'password' => :'password',
93
+ :'ca_cert' => :'ca_cert',
94
94
  :'total_timeout' => :'total_timeout',
95
95
  :'headers' => :'headers',
96
- :'download_concurrency' => :'download_concurrency',
97
- :'max_retries' => :'max_retries',
98
- :'username' => :'username',
99
96
  :'proxy_password' => :'proxy_password',
100
- :'name' => :'name',
101
- :'proxy_url' => :'proxy_url',
97
+ :'pulp_labels' => :'pulp_labels',
98
+ :'tls_validation' => :'tls_validation',
99
+ :'url' => :'url',
100
+ :'max_retries' => :'max_retries',
102
101
  :'connect_timeout' => :'connect_timeout',
102
+ :'client_cert' => :'client_cert',
103
103
  :'metadata_only' => :'metadata_only'
104
104
  }
105
105
  end
@@ -107,26 +107,26 @@ module PulpAnsibleClient
107
107
  # Attribute type mapping.
108
108
  def self.openapi_types
109
109
  {
110
- :'tls_validation' => :'Boolean',
111
- :'ca_cert' => :'String',
112
- :'pulp_labels' => :'Object',
113
- :'rate_limit' => :'Integer',
110
+ :'download_concurrency' => :'Integer',
111
+ :'password' => :'String',
114
112
  :'client_key' => :'String',
115
- :'client_cert' => :'String',
113
+ :'rate_limit' => :'Integer',
114
+ :'name' => :'String',
115
+ :'proxy_url' => :'String',
116
+ :'username' => :'String',
116
117
  :'sock_read_timeout' => :'Float',
117
- :'url' => :'String',
118
118
  :'proxy_username' => :'String',
119
119
  :'sock_connect_timeout' => :'Float',
120
- :'password' => :'String',
120
+ :'ca_cert' => :'String',
121
121
  :'total_timeout' => :'Float',
122
122
  :'headers' => :'Array<Object>',
123
- :'download_concurrency' => :'Integer',
124
- :'max_retries' => :'Integer',
125
- :'username' => :'String',
126
123
  :'proxy_password' => :'String',
127
- :'name' => :'String',
128
- :'proxy_url' => :'String',
124
+ :'pulp_labels' => :'Object',
125
+ :'tls_validation' => :'Boolean',
126
+ :'url' => :'String',
127
+ :'max_retries' => :'Integer',
129
128
  :'connect_timeout' => :'Float',
129
+ :'client_cert' => :'String',
130
130
  :'metadata_only' => :'Boolean'
131
131
  }
132
132
  end
@@ -134,21 +134,21 @@ module PulpAnsibleClient
134
134
  # List of attributes with nullable: true
135
135
  def self.openapi_nullable
136
136
  Set.new([
137
- :'ca_cert',
138
- :'rate_limit',
137
+ :'download_concurrency',
138
+ :'password',
139
139
  :'client_key',
140
- :'client_cert',
140
+ :'rate_limit',
141
+ :'proxy_url',
142
+ :'username',
141
143
  :'sock_read_timeout',
142
144
  :'proxy_username',
143
145
  :'sock_connect_timeout',
144
- :'password',
146
+ :'ca_cert',
145
147
  :'total_timeout',
146
- :'download_concurrency',
147
- :'max_retries',
148
- :'username',
149
148
  :'proxy_password',
150
- :'proxy_url',
149
+ :'max_retries',
151
150
  :'connect_timeout',
151
+ :'client_cert',
152
152
  ])
153
153
  end
154
154
 
@@ -167,36 +167,36 @@ module PulpAnsibleClient
167
167
  h[k.to_sym] = v
168
168
  }
169
169
 
170
- if attributes.key?(:'tls_validation')
171
- self.tls_validation = attributes[:'tls_validation']
170
+ if attributes.key?(:'download_concurrency')
171
+ self.download_concurrency = attributes[:'download_concurrency']
172
172
  end
173
173
 
174
- if attributes.key?(:'ca_cert')
175
- self.ca_cert = attributes[:'ca_cert']
174
+ if attributes.key?(:'password')
175
+ self.password = attributes[:'password']
176
176
  end
177
177
 
178
- if attributes.key?(:'pulp_labels')
179
- self.pulp_labels = attributes[:'pulp_labels']
178
+ if attributes.key?(:'client_key')
179
+ self.client_key = attributes[:'client_key']
180
180
  end
181
181
 
182
182
  if attributes.key?(:'rate_limit')
183
183
  self.rate_limit = attributes[:'rate_limit']
184
184
  end
185
185
 
186
- if attributes.key?(:'client_key')
187
- self.client_key = attributes[:'client_key']
186
+ if attributes.key?(:'name')
187
+ self.name = attributes[:'name']
188
188
  end
189
189
 
190
- if attributes.key?(:'client_cert')
191
- self.client_cert = attributes[:'client_cert']
190
+ if attributes.key?(:'proxy_url')
191
+ self.proxy_url = attributes[:'proxy_url']
192
192
  end
193
193
 
194
- if attributes.key?(:'sock_read_timeout')
195
- self.sock_read_timeout = attributes[:'sock_read_timeout']
194
+ if attributes.key?(:'username')
195
+ self.username = attributes[:'username']
196
196
  end
197
197
 
198
- if attributes.key?(:'url')
199
- self.url = attributes[:'url']
198
+ if attributes.key?(:'sock_read_timeout')
199
+ self.sock_read_timeout = attributes[:'sock_read_timeout']
200
200
  end
201
201
 
202
202
  if attributes.key?(:'proxy_username')
@@ -207,8 +207,8 @@ module PulpAnsibleClient
207
207
  self.sock_connect_timeout = attributes[:'sock_connect_timeout']
208
208
  end
209
209
 
210
- if attributes.key?(:'password')
211
- self.password = attributes[:'password']
210
+ if attributes.key?(:'ca_cert')
211
+ self.ca_cert = attributes[:'ca_cert']
212
212
  end
213
213
 
214
214
  if attributes.key?(:'total_timeout')
@@ -221,34 +221,34 @@ module PulpAnsibleClient
221
221
  end
222
222
  end
223
223
 
224
- if attributes.key?(:'download_concurrency')
225
- self.download_concurrency = attributes[:'download_concurrency']
226
- end
227
-
228
- if attributes.key?(:'max_retries')
229
- self.max_retries = attributes[:'max_retries']
224
+ if attributes.key?(:'proxy_password')
225
+ self.proxy_password = attributes[:'proxy_password']
230
226
  end
231
227
 
232
- if attributes.key?(:'username')
233
- self.username = attributes[:'username']
228
+ if attributes.key?(:'pulp_labels')
229
+ self.pulp_labels = attributes[:'pulp_labels']
234
230
  end
235
231
 
236
- if attributes.key?(:'proxy_password')
237
- self.proxy_password = attributes[:'proxy_password']
232
+ if attributes.key?(:'tls_validation')
233
+ self.tls_validation = attributes[:'tls_validation']
238
234
  end
239
235
 
240
- if attributes.key?(:'name')
241
- self.name = attributes[:'name']
236
+ if attributes.key?(:'url')
237
+ self.url = attributes[:'url']
242
238
  end
243
239
 
244
- if attributes.key?(:'proxy_url')
245
- self.proxy_url = attributes[:'proxy_url']
240
+ if attributes.key?(:'max_retries')
241
+ self.max_retries = attributes[:'max_retries']
246
242
  end
247
243
 
248
244
  if attributes.key?(:'connect_timeout')
249
245
  self.connect_timeout = attributes[:'connect_timeout']
250
246
  end
251
247
 
248
+ if attributes.key?(:'client_cert')
249
+ self.client_cert = attributes[:'client_cert']
250
+ end
251
+
252
252
  if attributes.key?(:'metadata_only')
253
253
  self.metadata_only = attributes[:'metadata_only']
254
254
  end
@@ -258,12 +258,16 @@ module PulpAnsibleClient
258
258
  # @return Array for valid properties with the reasons
259
259
  def list_invalid_properties
260
260
  invalid_properties = Array.new
261
- if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
262
- invalid_properties.push('invalid value for "sock_read_timeout", must be greater than or equal to 0.0.')
261
+ if !@download_concurrency.nil? && @download_concurrency < 1
262
+ invalid_properties.push('invalid value for "download_concurrency", must be greater than or equal to 1.')
263
263
  end
264
264
 
265
- if @url.nil?
266
- invalid_properties.push('invalid value for "url", url cannot be nil.')
265
+ if @name.nil?
266
+ invalid_properties.push('invalid value for "name", name cannot be nil.')
267
+ end
268
+
269
+ if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
270
+ invalid_properties.push('invalid value for "sock_read_timeout", must be greater than or equal to 0.0.')
267
271
  end
268
272
 
269
273
  if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
@@ -274,12 +278,8 @@ module PulpAnsibleClient
274
278
  invalid_properties.push('invalid value for "total_timeout", must be greater than or equal to 0.0.')
275
279
  end
276
280
 
277
- if !@download_concurrency.nil? && @download_concurrency < 1
278
- invalid_properties.push('invalid value for "download_concurrency", must be greater than or equal to 1.')
279
- end
280
-
281
- if @name.nil?
282
- invalid_properties.push('invalid value for "name", name cannot be nil.')
281
+ if @url.nil?
282
+ invalid_properties.push('invalid value for "url", url cannot be nil.')
283
283
  end
284
284
 
285
285
  if !@connect_timeout.nil? && @connect_timeout < 0.0
@@ -292,16 +292,26 @@ module PulpAnsibleClient
292
292
  # Check to see if the all the properties in the model are valid
293
293
  # @return true if the model is valid
294
294
  def valid?
295
+ return false if !@download_concurrency.nil? && @download_concurrency < 1
296
+ return false if @name.nil?
295
297
  return false if !@sock_read_timeout.nil? && @sock_read_timeout < 0.0
296
- return false if @url.nil?
297
298
  return false if !@sock_connect_timeout.nil? && @sock_connect_timeout < 0.0
298
299
  return false if !@total_timeout.nil? && @total_timeout < 0.0
299
- return false if !@download_concurrency.nil? && @download_concurrency < 1
300
- return false if @name.nil?
300
+ return false if @url.nil?
301
301
  return false if !@connect_timeout.nil? && @connect_timeout < 0.0
302
302
  true
303
303
  end
304
304
 
305
+ # Custom attribute writer method with validation
306
+ # @param [Object] download_concurrency Value to be assigned
307
+ def download_concurrency=(download_concurrency)
308
+ if !download_concurrency.nil? && download_concurrency < 1
309
+ fail ArgumentError, 'invalid value for "download_concurrency", must be greater than or equal to 1.'
310
+ end
311
+
312
+ @download_concurrency = download_concurrency
313
+ end
314
+
305
315
  # Custom attribute writer method with validation
306
316
  # @param [Object] sock_read_timeout Value to be assigned
307
317
  def sock_read_timeout=(sock_read_timeout)
@@ -332,16 +342,6 @@ module PulpAnsibleClient
332
342
  @total_timeout = total_timeout
333
343
  end
334
344
 
335
- # Custom attribute writer method with validation
336
- # @param [Object] download_concurrency Value to be assigned
337
- def download_concurrency=(download_concurrency)
338
- if !download_concurrency.nil? && download_concurrency < 1
339
- fail ArgumentError, 'invalid value for "download_concurrency", must be greater than or equal to 1.'
340
- end
341
-
342
- @download_concurrency = download_concurrency
343
- end
344
-
345
345
  # Custom attribute writer method with validation
346
346
  # @param [Object] connect_timeout Value to be assigned
347
347
  def connect_timeout=(connect_timeout)
@@ -357,26 +357,26 @@ module PulpAnsibleClient
357
357
  def ==(o)
358
358
  return true if self.equal?(o)
359
359
  self.class == o.class &&
360
- tls_validation == o.tls_validation &&
361
- ca_cert == o.ca_cert &&
362
- pulp_labels == o.pulp_labels &&
363
- rate_limit == o.rate_limit &&
360
+ download_concurrency == o.download_concurrency &&
361
+ password == o.password &&
364
362
  client_key == o.client_key &&
365
- client_cert == o.client_cert &&
363
+ rate_limit == o.rate_limit &&
364
+ name == o.name &&
365
+ proxy_url == o.proxy_url &&
366
+ username == o.username &&
366
367
  sock_read_timeout == o.sock_read_timeout &&
367
- url == o.url &&
368
368
  proxy_username == o.proxy_username &&
369
369
  sock_connect_timeout == o.sock_connect_timeout &&
370
- password == o.password &&
370
+ ca_cert == o.ca_cert &&
371
371
  total_timeout == o.total_timeout &&
372
372
  headers == o.headers &&
373
- download_concurrency == o.download_concurrency &&
374
- max_retries == o.max_retries &&
375
- username == o.username &&
376
373
  proxy_password == o.proxy_password &&
377
- name == o.name &&
378
- proxy_url == o.proxy_url &&
374
+ pulp_labels == o.pulp_labels &&
375
+ tls_validation == o.tls_validation &&
376
+ url == o.url &&
377
+ max_retries == o.max_retries &&
379
378
  connect_timeout == o.connect_timeout &&
379
+ client_cert == o.client_cert &&
380
380
  metadata_only == o.metadata_only
381
381
  end
382
382
 
@@ -389,7 +389,7 @@ module PulpAnsibleClient
389
389
  # Calculates hash code according to all attributes.
390
390
  # @return [Integer] Hash code
391
391
  def hash
392
- [tls_validation, ca_cert, pulp_labels, rate_limit, client_key, client_cert, sock_read_timeout, url, proxy_username, sock_connect_timeout, password, total_timeout, headers, download_concurrency, max_retries, username, proxy_password, name, proxy_url, connect_timeout, metadata_only].hash
392
+ [download_concurrency, password, client_key, rate_limit, name, proxy_url, username, sock_read_timeout, proxy_username, sock_connect_timeout, ca_cert, total_timeout, headers, proxy_password, pulp_labels, tls_validation, url, max_retries, connect_timeout, client_cert, metadata_only].hash
393
393
  end
394
394
 
395
395
  # Builds the object from hash