lockss-pyclient 0.1.0.dev2__py3-none-any.whl → 0.1.0.dev3__py3-none-any.whl

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.
Files changed (93) hide show
  1. lockss/pyclient/__init__.py +8 -29
  2. lockss/pyclient/__main__.py +37 -0
  3. lockss/pyclient/_internal_common.py +395 -0
  4. lockss/pyclient/_internal_config.py +207 -0
  5. lockss/pyclient/_internal_crawler.py +251 -0
  6. lockss/pyclient/_internal_md.py +111 -0
  7. lockss/pyclient/_internal_poller.py +174 -0
  8. lockss/pyclient/_internal_rs.py +232 -0
  9. lockss/pyclient/cli.py +839 -0
  10. lockss/pyclient/config/__init__.py +15 -0
  11. lockss/pyclient/config/api/aus_api.py +14 -6
  12. lockss/pyclient/config/api/config_api.py +12 -12
  13. lockss/pyclient/config/api/utils_api.py +2 -2
  14. lockss/pyclient/config/configuration.py +1 -1
  15. lockss/pyclient/config/models/__init__.py +15 -0
  16. lockss/pyclient/config/models/access_type.py +90 -0
  17. lockss/pyclient/config/models/au_agreements.py +136 -0
  18. lockss/pyclient/config/models/au_config_page_info.py +140 -0
  19. lockss/pyclient/config/models/au_state_bean.py +942 -0
  20. lockss/pyclient/config/models/au_status.py +837 -8
  21. lockss/pyclient/config/models/au_suspect_url_versions.py +136 -0
  22. lockss/pyclient/config/models/check_substance_result.py +6 -22
  23. lockss/pyclient/config/models/dated_peer_id_set_impl.py +162 -0
  24. lockss/pyclient/config/models/hash_result.py +136 -0
  25. lockss/pyclient/config/models/page_info.py +226 -0
  26. lockss/pyclient/config/models/peer_agreement.py +188 -0
  27. lockss/pyclient/config/models/peer_agreements.py +136 -0
  28. lockss/pyclient/config/models/platform_configuration_ws_result.py +421 -8
  29. lockss/pyclient/config/models/platform_configuration_ws_result_daemon_version.py +188 -0
  30. lockss/pyclient/config/models/platform_configuration_ws_result_java_version.py +188 -0
  31. lockss/pyclient/config/models/platform_configuration_ws_result_platform.py +162 -0
  32. lockss/pyclient/config/models/substance_checker_state.py +91 -0
  33. lockss/pyclient/config/models/suspect_url_version.py +214 -0
  34. lockss/pyclient/config/swagger.yaml +2031 -0
  35. lockss/pyclient/crawler/__init__.py +1 -0
  36. lockss/pyclient/crawler/api/crawls_api.py +2 -2
  37. lockss/pyclient/crawler/configuration.py +1 -1
  38. lockss/pyclient/crawler/models/__init__.py +1 -0
  39. lockss/pyclient/crawler/models/crawl_desc.py +4 -12
  40. lockss/pyclient/crawler/models/crawl_kind_enum.py +90 -0
  41. lockss/pyclient/crawler/models/page_info.py +22 -24
  42. lockss/pyclient/crawler/swagger.yaml +1197 -0
  43. lockss/pyclient/md/configuration.py +1 -1
  44. lockss/pyclient/md/models/page_info.py +22 -24
  45. lockss/pyclient/md/swagger.yaml +583 -0
  46. lockss/pyclient/output.py +131 -0
  47. lockss/pyclient/poller/__init__.py +11 -5
  48. lockss/pyclient/poller/api/export_api.py +5 -5
  49. lockss/pyclient/poller/api/hash_api.py +3 -3
  50. lockss/pyclient/poller/api/poll_detail_api.py +42 -42
  51. lockss/pyclient/poller/api/poller_polls_api.py +18 -18
  52. lockss/pyclient/poller/api/service_api.py +2 -2
  53. lockss/pyclient/poller/api/voter_polls_api.py +18 -18
  54. lockss/pyclient/poller/configuration.py +1 -1
  55. lockss/pyclient/poller/models/__init__.py +11 -5
  56. lockss/pyclient/poller/models/export_file_type_enum.py +93 -0
  57. lockss/pyclient/poller/models/export_filename_translation_enum.py +91 -0
  58. lockss/pyclient/poller/models/page_info.py +226 -0
  59. lockss/pyclient/poller/models/poll_desc.py +3 -11
  60. lockss/pyclient/poller/models/poll_variant_enum.py +92 -0
  61. lockss/pyclient/poller/models/poller_page_info.py +140 -0
  62. lockss/pyclient/poller/models/repair_page_info.py +140 -0
  63. lockss/pyclient/poller/models/repair_type_enum.py +91 -0
  64. lockss/pyclient/poller/models/tally_type_enum.py +93 -0
  65. lockss/pyclient/poller/models/url_page_info.py +140 -0
  66. lockss/pyclient/poller/models/voter_page_info.py +140 -0
  67. lockss/pyclient/poller/models/voter_urls_enum.py +92 -0
  68. lockss/pyclient/poller/swagger.yaml +1658 -0
  69. lockss/pyclient/rs/__init__.py +6 -0
  70. lockss/pyclient/rs/api/artifacts_api.py +20 -20
  71. lockss/pyclient/rs/api/aus_api.py +5 -5
  72. lockss/pyclient/rs/api/repo_api.py +4 -4
  73. lockss/pyclient/rs/api/status_api.py +1 -1
  74. lockss/pyclient/rs/api/wayback_api.py +12 -12
  75. lockss/pyclient/rs/configuration.py +8 -1
  76. lockss/pyclient/rs/models/__init__.py +6 -0
  77. lockss/pyclient/rs/models/artifact.py +111 -81
  78. lockss/pyclient/rs/models/au_size.py +6 -0
  79. lockss/pyclient/rs/models/auid_page_info.py +2 -2
  80. lockss/pyclient/rs/models/bulk_au_op_enum.py +90 -0
  81. lockss/pyclient/rs/models/include_content_enum.py +91 -0
  82. lockss/pyclient/rs/models/page_info.py +26 -29
  83. lockss/pyclient/rs/models/pywb_match_enum.py +93 -0
  84. lockss/pyclient/rs/models/pywb_output_enum.py +90 -0
  85. lockss/pyclient/rs/models/pywb_sort_enum.py +91 -0
  86. lockss/pyclient/rs/models/storage_info.py +131 -80
  87. lockss/pyclient/rs/models/versions_enum.py +90 -0
  88. lockss/pyclient/rs/swagger.yaml +1306 -0
  89. {lockss_pyclient-0.1.0.dev2.dist-info → lockss_pyclient-0.1.0.dev3.dist-info}/METADATA +10 -3
  90. {lockss_pyclient-0.1.0.dev2.dist-info → lockss_pyclient-0.1.0.dev3.dist-info}/RECORD +93 -45
  91. {lockss_pyclient-0.1.0.dev2.dist-info → lockss_pyclient-0.1.0.dev3.dist-info}/WHEEL +1 -1
  92. lockss_pyclient-0.1.0.dev3.dist-info/entry_points.txt +3 -0
  93. {lockss_pyclient-0.1.0.dev2.dist-info → lockss_pyclient-0.1.0.dev3.dist-info/licenses}/LICENSE +0 -0
@@ -28,24 +28,184 @@ class AuStatus(object):
28
28
  and the value is json key in definition.
29
29
  """
30
30
  swagger_types = {
31
- 'volume': 'str'
31
+ 'volume': 'str',
32
+ 'journal_title': 'str',
33
+ 'plugin_name': 'str',
34
+ 'year': 'str',
35
+ 'access_type': 'str',
36
+ 'content_size': 'int',
37
+ 'disk_usage': 'int',
38
+ 'repository': 'str',
39
+ 'status': 'str',
40
+ 'recent_poll_agreement': 'float',
41
+ 'publishing_platform': 'str',
42
+ 'publisher': 'str',
43
+ 'available_from_publisher': 'bool',
44
+ 'substance_state': 'str',
45
+ 'creation_time': 'int',
46
+ 'crawl_proxy': 'str',
47
+ 'crawl_window': 'str',
48
+ 'crawl_pool': 'str',
49
+ 'last_completed_crawl': 'int',
50
+ 'last_crawl': 'int',
51
+ 'last_crawl_result': 'str',
52
+ 'last_completed_deep_crawl': 'int',
53
+ 'last_deep_crawl': 'int',
54
+ 'last_deep_crawl_result': 'str',
55
+ 'last_completed_deep_crawl_depth': 'int',
56
+ 'last_metadata_index': 'int',
57
+ 'last_completed_poll': 'int',
58
+ 'last_poll': 'int',
59
+ 'last_poll_result': 'str',
60
+ 'currently_crawling': 'bool',
61
+ 'currently_polling': 'bool',
62
+ 'subscription_status': 'str',
63
+ 'provider': 'str'
32
64
  }
33
65
 
34
66
  attribute_map = {
35
- 'volume': 'volume'
67
+ 'volume': 'volume',
68
+ 'journal_title': 'journalTitle',
69
+ 'plugin_name': 'pluginName',
70
+ 'year': 'year',
71
+ 'access_type': 'accessType',
72
+ 'content_size': 'contentSize',
73
+ 'disk_usage': 'diskUsage',
74
+ 'repository': 'repository',
75
+ 'status': 'status',
76
+ 'recent_poll_agreement': 'recentPollAgreement',
77
+ 'publishing_platform': 'publishingPlatform',
78
+ 'publisher': 'publisher',
79
+ 'available_from_publisher': 'availableFromPublisher',
80
+ 'substance_state': 'substanceState',
81
+ 'creation_time': 'creationTime',
82
+ 'crawl_proxy': 'crawlProxy',
83
+ 'crawl_window': 'crawlWindow',
84
+ 'crawl_pool': 'crawlPool',
85
+ 'last_completed_crawl': 'lastCompletedCrawl',
86
+ 'last_crawl': 'lastCrawl',
87
+ 'last_crawl_result': 'lastCrawlResult',
88
+ 'last_completed_deep_crawl': 'lastCompletedDeepCrawl',
89
+ 'last_deep_crawl': 'lastDeepCrawl',
90
+ 'last_deep_crawl_result': 'lastDeepCrawlResult',
91
+ 'last_completed_deep_crawl_depth': 'lastCompletedDeepCrawlDepth',
92
+ 'last_metadata_index': 'lastMetadataIndex',
93
+ 'last_completed_poll': 'lastCompletedPoll',
94
+ 'last_poll': 'lastPoll',
95
+ 'last_poll_result': 'lastPollResult',
96
+ 'currently_crawling': 'currentlyCrawling',
97
+ 'currently_polling': 'currentlyPolling',
98
+ 'subscription_status': 'subscriptionStatus',
99
+ 'provider': 'provider'
36
100
  }
37
101
 
38
- def __init__(self, volume=None): # noqa: E501
102
+ def __init__(self, volume=None, journal_title=None, plugin_name=None, year=None, access_type=None, content_size=None, disk_usage=None, repository=None, status=None, recent_poll_agreement=None, publishing_platform=None, publisher=None, available_from_publisher=None, substance_state=None, creation_time=None, crawl_proxy=None, crawl_window=None, crawl_pool=None, last_completed_crawl=None, last_crawl=None, last_crawl_result=None, last_completed_deep_crawl=None, last_deep_crawl=None, last_deep_crawl_result=None, last_completed_deep_crawl_depth=None, last_metadata_index=None, last_completed_poll=None, last_poll=None, last_poll_result=None, currently_crawling=None, currently_polling=None, subscription_status=None, provider=None): # noqa: E501
39
103
  """AuStatus - a model defined in Swagger""" # noqa: E501
40
104
  self._volume = None
105
+ self._journal_title = None
106
+ self._plugin_name = None
107
+ self._year = None
108
+ self._access_type = None
109
+ self._content_size = None
110
+ self._disk_usage = None
111
+ self._repository = None
112
+ self._status = None
113
+ self._recent_poll_agreement = None
114
+ self._publishing_platform = None
115
+ self._publisher = None
116
+ self._available_from_publisher = None
117
+ self._substance_state = None
118
+ self._creation_time = None
119
+ self._crawl_proxy = None
120
+ self._crawl_window = None
121
+ self._crawl_pool = None
122
+ self._last_completed_crawl = None
123
+ self._last_crawl = None
124
+ self._last_crawl_result = None
125
+ self._last_completed_deep_crawl = None
126
+ self._last_deep_crawl = None
127
+ self._last_deep_crawl_result = None
128
+ self._last_completed_deep_crawl_depth = None
129
+ self._last_metadata_index = None
130
+ self._last_completed_poll = None
131
+ self._last_poll = None
132
+ self._last_poll_result = None
133
+ self._currently_crawling = None
134
+ self._currently_polling = None
135
+ self._subscription_status = None
136
+ self._provider = None
41
137
  self.discriminator = None
42
- self.volume = volume
138
+ if volume is not None:
139
+ self.volume = volume
140
+ if journal_title is not None:
141
+ self.journal_title = journal_title
142
+ if plugin_name is not None:
143
+ self.plugin_name = plugin_name
144
+ if year is not None:
145
+ self.year = year
146
+ if access_type is not None:
147
+ self.access_type = access_type
148
+ if content_size is not None:
149
+ self.content_size = content_size
150
+ if disk_usage is not None:
151
+ self.disk_usage = disk_usage
152
+ if repository is not None:
153
+ self.repository = repository
154
+ if status is not None:
155
+ self.status = status
156
+ if recent_poll_agreement is not None:
157
+ self.recent_poll_agreement = recent_poll_agreement
158
+ if publishing_platform is not None:
159
+ self.publishing_platform = publishing_platform
160
+ if publisher is not None:
161
+ self.publisher = publisher
162
+ if available_from_publisher is not None:
163
+ self.available_from_publisher = available_from_publisher
164
+ if substance_state is not None:
165
+ self.substance_state = substance_state
166
+ if creation_time is not None:
167
+ self.creation_time = creation_time
168
+ if crawl_proxy is not None:
169
+ self.crawl_proxy = crawl_proxy
170
+ if crawl_window is not None:
171
+ self.crawl_window = crawl_window
172
+ if crawl_pool is not None:
173
+ self.crawl_pool = crawl_pool
174
+ if last_completed_crawl is not None:
175
+ self.last_completed_crawl = last_completed_crawl
176
+ if last_crawl is not None:
177
+ self.last_crawl = last_crawl
178
+ if last_crawl_result is not None:
179
+ self.last_crawl_result = last_crawl_result
180
+ if last_completed_deep_crawl is not None:
181
+ self.last_completed_deep_crawl = last_completed_deep_crawl
182
+ if last_deep_crawl is not None:
183
+ self.last_deep_crawl = last_deep_crawl
184
+ if last_deep_crawl_result is not None:
185
+ self.last_deep_crawl_result = last_deep_crawl_result
186
+ if last_completed_deep_crawl_depth is not None:
187
+ self.last_completed_deep_crawl_depth = last_completed_deep_crawl_depth
188
+ if last_metadata_index is not None:
189
+ self.last_metadata_index = last_metadata_index
190
+ if last_completed_poll is not None:
191
+ self.last_completed_poll = last_completed_poll
192
+ if last_poll is not None:
193
+ self.last_poll = last_poll
194
+ if last_poll_result is not None:
195
+ self.last_poll_result = last_poll_result
196
+ if currently_crawling is not None:
197
+ self.currently_crawling = currently_crawling
198
+ if currently_polling is not None:
199
+ self.currently_polling = currently_polling
200
+ if subscription_status is not None:
201
+ self.subscription_status = subscription_status
202
+ if provider is not None:
203
+ self.provider = provider
43
204
 
44
205
  @property
45
206
  def volume(self):
46
207
  """Gets the volume of this AuStatus. # noqa: E501
47
208
 
48
- The volume of the archival unit # noqa: E501
49
209
 
50
210
  :return: The volume of this AuStatus. # noqa: E501
51
211
  :rtype: str
@@ -56,16 +216,685 @@ class AuStatus(object):
56
216
  def volume(self, volume):
57
217
  """Sets the volume of this AuStatus.
58
218
 
59
- The volume of the archival unit # noqa: E501
60
219
 
61
220
  :param volume: The volume of this AuStatus. # noqa: E501
62
221
  :type: str
63
222
  """
64
- if volume is None:
65
- raise ValueError("Invalid value for `volume`, must not be `None`") # noqa: E501
66
223
 
67
224
  self._volume = volume
68
225
 
226
+ @property
227
+ def journal_title(self):
228
+ """Gets the journal_title of this AuStatus. # noqa: E501
229
+
230
+
231
+ :return: The journal_title of this AuStatus. # noqa: E501
232
+ :rtype: str
233
+ """
234
+ return self._journal_title
235
+
236
+ @journal_title.setter
237
+ def journal_title(self, journal_title):
238
+ """Sets the journal_title of this AuStatus.
239
+
240
+
241
+ :param journal_title: The journal_title of this AuStatus. # noqa: E501
242
+ :type: str
243
+ """
244
+
245
+ self._journal_title = journal_title
246
+
247
+ @property
248
+ def plugin_name(self):
249
+ """Gets the plugin_name of this AuStatus. # noqa: E501
250
+
251
+
252
+ :return: The plugin_name of this AuStatus. # noqa: E501
253
+ :rtype: str
254
+ """
255
+ return self._plugin_name
256
+
257
+ @plugin_name.setter
258
+ def plugin_name(self, plugin_name):
259
+ """Sets the plugin_name of this AuStatus.
260
+
261
+
262
+ :param plugin_name: The plugin_name of this AuStatus. # noqa: E501
263
+ :type: str
264
+ """
265
+
266
+ self._plugin_name = plugin_name
267
+
268
+ @property
269
+ def year(self):
270
+ """Gets the year of this AuStatus. # noqa: E501
271
+
272
+
273
+ :return: The year of this AuStatus. # noqa: E501
274
+ :rtype: str
275
+ """
276
+ return self._year
277
+
278
+ @year.setter
279
+ def year(self, year):
280
+ """Sets the year of this AuStatus.
281
+
282
+
283
+ :param year: The year of this AuStatus. # noqa: E501
284
+ :type: str
285
+ """
286
+
287
+ self._year = year
288
+
289
+ @property
290
+ def access_type(self):
291
+ """Gets the access_type of this AuStatus. # noqa: E501
292
+
293
+
294
+ :return: The access_type of this AuStatus. # noqa: E501
295
+ :rtype: str
296
+ """
297
+ return self._access_type
298
+
299
+ @access_type.setter
300
+ def access_type(self, access_type):
301
+ """Sets the access_type of this AuStatus.
302
+
303
+
304
+ :param access_type: The access_type of this AuStatus. # noqa: E501
305
+ :type: str
306
+ """
307
+
308
+ self._access_type = access_type
309
+
310
+ @property
311
+ def content_size(self):
312
+ """Gets the content_size of this AuStatus. # noqa: E501
313
+
314
+
315
+ :return: The content_size of this AuStatus. # noqa: E501
316
+ :rtype: int
317
+ """
318
+ return self._content_size
319
+
320
+ @content_size.setter
321
+ def content_size(self, content_size):
322
+ """Sets the content_size of this AuStatus.
323
+
324
+
325
+ :param content_size: The content_size of this AuStatus. # noqa: E501
326
+ :type: int
327
+ """
328
+
329
+ self._content_size = content_size
330
+
331
+ @property
332
+ def disk_usage(self):
333
+ """Gets the disk_usage of this AuStatus. # noqa: E501
334
+
335
+
336
+ :return: The disk_usage of this AuStatus. # noqa: E501
337
+ :rtype: int
338
+ """
339
+ return self._disk_usage
340
+
341
+ @disk_usage.setter
342
+ def disk_usage(self, disk_usage):
343
+ """Sets the disk_usage of this AuStatus.
344
+
345
+
346
+ :param disk_usage: The disk_usage of this AuStatus. # noqa: E501
347
+ :type: int
348
+ """
349
+
350
+ self._disk_usage = disk_usage
351
+
352
+ @property
353
+ def repository(self):
354
+ """Gets the repository of this AuStatus. # noqa: E501
355
+
356
+
357
+ :return: The repository of this AuStatus. # noqa: E501
358
+ :rtype: str
359
+ """
360
+ return self._repository
361
+
362
+ @repository.setter
363
+ def repository(self, repository):
364
+ """Sets the repository of this AuStatus.
365
+
366
+
367
+ :param repository: The repository of this AuStatus. # noqa: E501
368
+ :type: str
369
+ """
370
+
371
+ self._repository = repository
372
+
373
+ @property
374
+ def status(self):
375
+ """Gets the status of this AuStatus. # noqa: E501
376
+
377
+
378
+ :return: The status of this AuStatus. # noqa: E501
379
+ :rtype: str
380
+ """
381
+ return self._status
382
+
383
+ @status.setter
384
+ def status(self, status):
385
+ """Sets the status of this AuStatus.
386
+
387
+
388
+ :param status: The status of this AuStatus. # noqa: E501
389
+ :type: str
390
+ """
391
+
392
+ self._status = status
393
+
394
+ @property
395
+ def recent_poll_agreement(self):
396
+ """Gets the recent_poll_agreement of this AuStatus. # noqa: E501
397
+
398
+
399
+ :return: The recent_poll_agreement of this AuStatus. # noqa: E501
400
+ :rtype: float
401
+ """
402
+ return self._recent_poll_agreement
403
+
404
+ @recent_poll_agreement.setter
405
+ def recent_poll_agreement(self, recent_poll_agreement):
406
+ """Sets the recent_poll_agreement of this AuStatus.
407
+
408
+
409
+ :param recent_poll_agreement: The recent_poll_agreement of this AuStatus. # noqa: E501
410
+ :type: float
411
+ """
412
+
413
+ self._recent_poll_agreement = recent_poll_agreement
414
+
415
+ @property
416
+ def publishing_platform(self):
417
+ """Gets the publishing_platform of this AuStatus. # noqa: E501
418
+
419
+
420
+ :return: The publishing_platform of this AuStatus. # noqa: E501
421
+ :rtype: str
422
+ """
423
+ return self._publishing_platform
424
+
425
+ @publishing_platform.setter
426
+ def publishing_platform(self, publishing_platform):
427
+ """Sets the publishing_platform of this AuStatus.
428
+
429
+
430
+ :param publishing_platform: The publishing_platform of this AuStatus. # noqa: E501
431
+ :type: str
432
+ """
433
+
434
+ self._publishing_platform = publishing_platform
435
+
436
+ @property
437
+ def publisher(self):
438
+ """Gets the publisher of this AuStatus. # noqa: E501
439
+
440
+
441
+ :return: The publisher of this AuStatus. # noqa: E501
442
+ :rtype: str
443
+ """
444
+ return self._publisher
445
+
446
+ @publisher.setter
447
+ def publisher(self, publisher):
448
+ """Sets the publisher of this AuStatus.
449
+
450
+
451
+ :param publisher: The publisher of this AuStatus. # noqa: E501
452
+ :type: str
453
+ """
454
+
455
+ self._publisher = publisher
456
+
457
+ @property
458
+ def available_from_publisher(self):
459
+ """Gets the available_from_publisher of this AuStatus. # noqa: E501
460
+
461
+
462
+ :return: The available_from_publisher of this AuStatus. # noqa: E501
463
+ :rtype: bool
464
+ """
465
+ return self._available_from_publisher
466
+
467
+ @available_from_publisher.setter
468
+ def available_from_publisher(self, available_from_publisher):
469
+ """Sets the available_from_publisher of this AuStatus.
470
+
471
+
472
+ :param available_from_publisher: The available_from_publisher of this AuStatus. # noqa: E501
473
+ :type: bool
474
+ """
475
+
476
+ self._available_from_publisher = available_from_publisher
477
+
478
+ @property
479
+ def substance_state(self):
480
+ """Gets the substance_state of this AuStatus. # noqa: E501
481
+
482
+
483
+ :return: The substance_state of this AuStatus. # noqa: E501
484
+ :rtype: str
485
+ """
486
+ return self._substance_state
487
+
488
+ @substance_state.setter
489
+ def substance_state(self, substance_state):
490
+ """Sets the substance_state of this AuStatus.
491
+
492
+
493
+ :param substance_state: The substance_state of this AuStatus. # noqa: E501
494
+ :type: str
495
+ """
496
+
497
+ self._substance_state = substance_state
498
+
499
+ @property
500
+ def creation_time(self):
501
+ """Gets the creation_time of this AuStatus. # noqa: E501
502
+
503
+
504
+ :return: The creation_time of this AuStatus. # noqa: E501
505
+ :rtype: int
506
+ """
507
+ return self._creation_time
508
+
509
+ @creation_time.setter
510
+ def creation_time(self, creation_time):
511
+ """Sets the creation_time of this AuStatus.
512
+
513
+
514
+ :param creation_time: The creation_time of this AuStatus. # noqa: E501
515
+ :type: int
516
+ """
517
+
518
+ self._creation_time = creation_time
519
+
520
+ @property
521
+ def crawl_proxy(self):
522
+ """Gets the crawl_proxy of this AuStatus. # noqa: E501
523
+
524
+
525
+ :return: The crawl_proxy of this AuStatus. # noqa: E501
526
+ :rtype: str
527
+ """
528
+ return self._crawl_proxy
529
+
530
+ @crawl_proxy.setter
531
+ def crawl_proxy(self, crawl_proxy):
532
+ """Sets the crawl_proxy of this AuStatus.
533
+
534
+
535
+ :param crawl_proxy: The crawl_proxy of this AuStatus. # noqa: E501
536
+ :type: str
537
+ """
538
+
539
+ self._crawl_proxy = crawl_proxy
540
+
541
+ @property
542
+ def crawl_window(self):
543
+ """Gets the crawl_window of this AuStatus. # noqa: E501
544
+
545
+
546
+ :return: The crawl_window of this AuStatus. # noqa: E501
547
+ :rtype: str
548
+ """
549
+ return self._crawl_window
550
+
551
+ @crawl_window.setter
552
+ def crawl_window(self, crawl_window):
553
+ """Sets the crawl_window of this AuStatus.
554
+
555
+
556
+ :param crawl_window: The crawl_window of this AuStatus. # noqa: E501
557
+ :type: str
558
+ """
559
+
560
+ self._crawl_window = crawl_window
561
+
562
+ @property
563
+ def crawl_pool(self):
564
+ """Gets the crawl_pool of this AuStatus. # noqa: E501
565
+
566
+
567
+ :return: The crawl_pool of this AuStatus. # noqa: E501
568
+ :rtype: str
569
+ """
570
+ return self._crawl_pool
571
+
572
+ @crawl_pool.setter
573
+ def crawl_pool(self, crawl_pool):
574
+ """Sets the crawl_pool of this AuStatus.
575
+
576
+
577
+ :param crawl_pool: The crawl_pool of this AuStatus. # noqa: E501
578
+ :type: str
579
+ """
580
+
581
+ self._crawl_pool = crawl_pool
582
+
583
+ @property
584
+ def last_completed_crawl(self):
585
+ """Gets the last_completed_crawl of this AuStatus. # noqa: E501
586
+
587
+
588
+ :return: The last_completed_crawl of this AuStatus. # noqa: E501
589
+ :rtype: int
590
+ """
591
+ return self._last_completed_crawl
592
+
593
+ @last_completed_crawl.setter
594
+ def last_completed_crawl(self, last_completed_crawl):
595
+ """Sets the last_completed_crawl of this AuStatus.
596
+
597
+
598
+ :param last_completed_crawl: The last_completed_crawl of this AuStatus. # noqa: E501
599
+ :type: int
600
+ """
601
+
602
+ self._last_completed_crawl = last_completed_crawl
603
+
604
+ @property
605
+ def last_crawl(self):
606
+ """Gets the last_crawl of this AuStatus. # noqa: E501
607
+
608
+
609
+ :return: The last_crawl of this AuStatus. # noqa: E501
610
+ :rtype: int
611
+ """
612
+ return self._last_crawl
613
+
614
+ @last_crawl.setter
615
+ def last_crawl(self, last_crawl):
616
+ """Sets the last_crawl of this AuStatus.
617
+
618
+
619
+ :param last_crawl: The last_crawl of this AuStatus. # noqa: E501
620
+ :type: int
621
+ """
622
+
623
+ self._last_crawl = last_crawl
624
+
625
+ @property
626
+ def last_crawl_result(self):
627
+ """Gets the last_crawl_result of this AuStatus. # noqa: E501
628
+
629
+
630
+ :return: The last_crawl_result of this AuStatus. # noqa: E501
631
+ :rtype: str
632
+ """
633
+ return self._last_crawl_result
634
+
635
+ @last_crawl_result.setter
636
+ def last_crawl_result(self, last_crawl_result):
637
+ """Sets the last_crawl_result of this AuStatus.
638
+
639
+
640
+ :param last_crawl_result: The last_crawl_result of this AuStatus. # noqa: E501
641
+ :type: str
642
+ """
643
+
644
+ self._last_crawl_result = last_crawl_result
645
+
646
+ @property
647
+ def last_completed_deep_crawl(self):
648
+ """Gets the last_completed_deep_crawl of this AuStatus. # noqa: E501
649
+
650
+
651
+ :return: The last_completed_deep_crawl of this AuStatus. # noqa: E501
652
+ :rtype: int
653
+ """
654
+ return self._last_completed_deep_crawl
655
+
656
+ @last_completed_deep_crawl.setter
657
+ def last_completed_deep_crawl(self, last_completed_deep_crawl):
658
+ """Sets the last_completed_deep_crawl of this AuStatus.
659
+
660
+
661
+ :param last_completed_deep_crawl: The last_completed_deep_crawl of this AuStatus. # noqa: E501
662
+ :type: int
663
+ """
664
+
665
+ self._last_completed_deep_crawl = last_completed_deep_crawl
666
+
667
+ @property
668
+ def last_deep_crawl(self):
669
+ """Gets the last_deep_crawl of this AuStatus. # noqa: E501
670
+
671
+
672
+ :return: The last_deep_crawl of this AuStatus. # noqa: E501
673
+ :rtype: int
674
+ """
675
+ return self._last_deep_crawl
676
+
677
+ @last_deep_crawl.setter
678
+ def last_deep_crawl(self, last_deep_crawl):
679
+ """Sets the last_deep_crawl of this AuStatus.
680
+
681
+
682
+ :param last_deep_crawl: The last_deep_crawl of this AuStatus. # noqa: E501
683
+ :type: int
684
+ """
685
+
686
+ self._last_deep_crawl = last_deep_crawl
687
+
688
+ @property
689
+ def last_deep_crawl_result(self):
690
+ """Gets the last_deep_crawl_result of this AuStatus. # noqa: E501
691
+
692
+
693
+ :return: The last_deep_crawl_result of this AuStatus. # noqa: E501
694
+ :rtype: str
695
+ """
696
+ return self._last_deep_crawl_result
697
+
698
+ @last_deep_crawl_result.setter
699
+ def last_deep_crawl_result(self, last_deep_crawl_result):
700
+ """Sets the last_deep_crawl_result of this AuStatus.
701
+
702
+
703
+ :param last_deep_crawl_result: The last_deep_crawl_result of this AuStatus. # noqa: E501
704
+ :type: str
705
+ """
706
+
707
+ self._last_deep_crawl_result = last_deep_crawl_result
708
+
709
+ @property
710
+ def last_completed_deep_crawl_depth(self):
711
+ """Gets the last_completed_deep_crawl_depth of this AuStatus. # noqa: E501
712
+
713
+
714
+ :return: The last_completed_deep_crawl_depth of this AuStatus. # noqa: E501
715
+ :rtype: int
716
+ """
717
+ return self._last_completed_deep_crawl_depth
718
+
719
+ @last_completed_deep_crawl_depth.setter
720
+ def last_completed_deep_crawl_depth(self, last_completed_deep_crawl_depth):
721
+ """Sets the last_completed_deep_crawl_depth of this AuStatus.
722
+
723
+
724
+ :param last_completed_deep_crawl_depth: The last_completed_deep_crawl_depth of this AuStatus. # noqa: E501
725
+ :type: int
726
+ """
727
+
728
+ self._last_completed_deep_crawl_depth = last_completed_deep_crawl_depth
729
+
730
+ @property
731
+ def last_metadata_index(self):
732
+ """Gets the last_metadata_index of this AuStatus. # noqa: E501
733
+
734
+
735
+ :return: The last_metadata_index of this AuStatus. # noqa: E501
736
+ :rtype: int
737
+ """
738
+ return self._last_metadata_index
739
+
740
+ @last_metadata_index.setter
741
+ def last_metadata_index(self, last_metadata_index):
742
+ """Sets the last_metadata_index of this AuStatus.
743
+
744
+
745
+ :param last_metadata_index: The last_metadata_index of this AuStatus. # noqa: E501
746
+ :type: int
747
+ """
748
+
749
+ self._last_metadata_index = last_metadata_index
750
+
751
+ @property
752
+ def last_completed_poll(self):
753
+ """Gets the last_completed_poll of this AuStatus. # noqa: E501
754
+
755
+
756
+ :return: The last_completed_poll of this AuStatus. # noqa: E501
757
+ :rtype: int
758
+ """
759
+ return self._last_completed_poll
760
+
761
+ @last_completed_poll.setter
762
+ def last_completed_poll(self, last_completed_poll):
763
+ """Sets the last_completed_poll of this AuStatus.
764
+
765
+
766
+ :param last_completed_poll: The last_completed_poll of this AuStatus. # noqa: E501
767
+ :type: int
768
+ """
769
+
770
+ self._last_completed_poll = last_completed_poll
771
+
772
+ @property
773
+ def last_poll(self):
774
+ """Gets the last_poll of this AuStatus. # noqa: E501
775
+
776
+
777
+ :return: The last_poll of this AuStatus. # noqa: E501
778
+ :rtype: int
779
+ """
780
+ return self._last_poll
781
+
782
+ @last_poll.setter
783
+ def last_poll(self, last_poll):
784
+ """Sets the last_poll of this AuStatus.
785
+
786
+
787
+ :param last_poll: The last_poll of this AuStatus. # noqa: E501
788
+ :type: int
789
+ """
790
+
791
+ self._last_poll = last_poll
792
+
793
+ @property
794
+ def last_poll_result(self):
795
+ """Gets the last_poll_result of this AuStatus. # noqa: E501
796
+
797
+
798
+ :return: The last_poll_result of this AuStatus. # noqa: E501
799
+ :rtype: str
800
+ """
801
+ return self._last_poll_result
802
+
803
+ @last_poll_result.setter
804
+ def last_poll_result(self, last_poll_result):
805
+ """Sets the last_poll_result of this AuStatus.
806
+
807
+
808
+ :param last_poll_result: The last_poll_result of this AuStatus. # noqa: E501
809
+ :type: str
810
+ """
811
+
812
+ self._last_poll_result = last_poll_result
813
+
814
+ @property
815
+ def currently_crawling(self):
816
+ """Gets the currently_crawling of this AuStatus. # noqa: E501
817
+
818
+
819
+ :return: The currently_crawling of this AuStatus. # noqa: E501
820
+ :rtype: bool
821
+ """
822
+ return self._currently_crawling
823
+
824
+ @currently_crawling.setter
825
+ def currently_crawling(self, currently_crawling):
826
+ """Sets the currently_crawling of this AuStatus.
827
+
828
+
829
+ :param currently_crawling: The currently_crawling of this AuStatus. # noqa: E501
830
+ :type: bool
831
+ """
832
+
833
+ self._currently_crawling = currently_crawling
834
+
835
+ @property
836
+ def currently_polling(self):
837
+ """Gets the currently_polling of this AuStatus. # noqa: E501
838
+
839
+
840
+ :return: The currently_polling of this AuStatus. # noqa: E501
841
+ :rtype: bool
842
+ """
843
+ return self._currently_polling
844
+
845
+ @currently_polling.setter
846
+ def currently_polling(self, currently_polling):
847
+ """Sets the currently_polling of this AuStatus.
848
+
849
+
850
+ :param currently_polling: The currently_polling of this AuStatus. # noqa: E501
851
+ :type: bool
852
+ """
853
+
854
+ self._currently_polling = currently_polling
855
+
856
+ @property
857
+ def subscription_status(self):
858
+ """Gets the subscription_status of this AuStatus. # noqa: E501
859
+
860
+
861
+ :return: The subscription_status of this AuStatus. # noqa: E501
862
+ :rtype: str
863
+ """
864
+ return self._subscription_status
865
+
866
+ @subscription_status.setter
867
+ def subscription_status(self, subscription_status):
868
+ """Sets the subscription_status of this AuStatus.
869
+
870
+
871
+ :param subscription_status: The subscription_status of this AuStatus. # noqa: E501
872
+ :type: str
873
+ """
874
+
875
+ self._subscription_status = subscription_status
876
+
877
+ @property
878
+ def provider(self):
879
+ """Gets the provider of this AuStatus. # noqa: E501
880
+
881
+
882
+ :return: The provider of this AuStatus. # noqa: E501
883
+ :rtype: str
884
+ """
885
+ return self._provider
886
+
887
+ @provider.setter
888
+ def provider(self, provider):
889
+ """Sets the provider of this AuStatus.
890
+
891
+
892
+ :param provider: The provider of this AuStatus. # noqa: E501
893
+ :type: str
894
+ """
895
+
896
+ self._provider = provider
897
+
69
898
  def to_dict(self):
70
899
  """Returns the model properties as a dict"""
71
900
  result = {}