katello 4.4.2.2 → 4.5.0.rc1

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

Potentially problematic release.


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

Files changed (444) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb +5 -1
  3. data/app/controllers/katello/api/v2/alternate_content_sources_controller.rb +98 -0
  4. data/app/controllers/katello/api/v2/content_export_incrementals_controller.rb +39 -3
  5. data/app/controllers/katello/api/v2/content_exports_controller.rb +19 -0
  6. data/app/controllers/katello/api/v2/content_imports_controller.rb +13 -16
  7. data/app/controllers/katello/api/v2/content_view_versions_controller.rb +0 -12
  8. data/app/controllers/katello/api/v2/content_views_controller.rb +13 -0
  9. data/app/controllers/katello/api/v2/environments_controller.rb +1 -1
  10. data/app/controllers/katello/api/v2/host_module_streams_controller.rb +8 -2
  11. data/app/controllers/katello/api/v2/host_subscriptions_controller.rb +25 -3
  12. data/app/controllers/katello/api/v2/organizations_controller.rb +4 -2
  13. data/app/controllers/katello/api/v2/repositories_bulk_actions_controller.rb +1 -1
  14. data/app/controllers/katello/api/v2/repositories_controller.rb +9 -3
  15. data/app/controllers/katello/api/v2/repository_sets_controller.rb +40 -7
  16. data/app/controllers/katello/api/v2/subscriptions_controller.rb +2 -2
  17. data/app/controllers/katello/concerns/api/v2/hosts_controller_extensions.rb +1 -1
  18. data/app/helpers/katello/concerns/smart_proxy_helper_extensions.rb +4 -0
  19. data/app/helpers/katello/hosts_and_hostgroups_helper.rb +21 -3
  20. data/app/lib/actions/katello/alternate_content_source/create.rb +24 -0
  21. data/app/lib/actions/katello/alternate_content_source/destroy.rb +27 -0
  22. data/app/lib/actions/katello/alternate_content_source/update.rb +41 -0
  23. data/app/lib/actions/katello/cdn_configuration/update.rb +2 -2
  24. data/app/lib/actions/katello/content_view/destroy.rb +2 -1
  25. data/app/lib/actions/katello/content_view/incremental_updates.rb +7 -3
  26. data/app/lib/actions/katello/content_view/publish.rb +7 -9
  27. data/app/lib/actions/katello/content_view_version/auto_create_products.rb +4 -4
  28. data/app/lib/actions/katello/content_view_version/auto_create_redhat_repositories.rb +6 -4
  29. data/app/lib/actions/katello/content_view_version/auto_create_repositories.rb +6 -4
  30. data/app/lib/actions/katello/content_view_version/import.rb +25 -22
  31. data/app/lib/actions/katello/content_view_version/import_library.rb +0 -1
  32. data/app/lib/actions/katello/content_view_version/import_repository.rb +21 -0
  33. data/app/lib/actions/katello/content_view_version/incremental_update.rb +85 -93
  34. data/app/lib/actions/katello/content_view_version/reset_content_view_repositories_from_metadata.rb +2 -2
  35. data/app/lib/actions/katello/product/content_create.rb +10 -8
  36. data/app/lib/actions/katello/repository/destroy.rb +36 -12
  37. data/app/lib/actions/katello/repository_set/disable_repository.rb +8 -3
  38. data/app/lib/actions/pulp3/alternate_content_source/create.rb +20 -0
  39. data/app/lib/actions/pulp3/alternate_content_source/create_remote.rb +20 -0
  40. data/app/lib/actions/pulp3/alternate_content_source/delete.rb +16 -0
  41. data/app/lib/actions/pulp3/alternate_content_source/delete_remote.rb +16 -0
  42. data/app/lib/actions/pulp3/alternate_content_source/update.rb +16 -0
  43. data/app/lib/actions/pulp3/alternate_content_source/update_remote.rb +17 -0
  44. data/app/lib/actions/pulp3/content_view_version/{import.rb → create_import.rb} +5 -5
  45. data/app/lib/actions/pulp3/content_view_version/create_importer.rb +4 -3
  46. data/app/lib/actions/pulp3/content_view_version/destroy_importer.rb +12 -1
  47. data/app/lib/actions/pulp3/orchestration/alternate_content_source/create.rb +18 -0
  48. data/app/lib/actions/pulp3/orchestration/alternate_content_source/delete.rb +23 -0
  49. data/app/lib/actions/pulp3/orchestration/alternate_content_source/update.rb +18 -0
  50. data/app/lib/actions/pulp3/orchestration/content_view_version/copy_version_units_to_library.rb +1 -1
  51. data/app/lib/actions/pulp3/orchestration/content_view_version/export_repository.rb +51 -0
  52. data/app/lib/actions/pulp3/orchestration/content_view_version/import.rb +5 -2
  53. data/app/lib/actions/pulp3/repository/refresh_distribution.rb +4 -1
  54. data/app/lib/actions/pulp3/repository/save_distribution_references.rb +2 -0
  55. data/app/lib/katello/api/v2/error_handling.rb +1 -0
  56. data/app/lib/katello/resources/cdn/katello_cdn.rb +3 -1
  57. data/app/lib/katello/util/errata.rb +2 -3
  58. data/app/lib/katello/validators/alternate_content_source_path_validator.rb +29 -0
  59. data/app/lib/katello/validators/content_default_http_proxy_setting_validator.rb +12 -0
  60. data/app/lib/katello/validators/content_view_environment_validator.rb +10 -5
  61. data/app/models/katello/alternate_content_source.rb +66 -0
  62. data/app/models/katello/authorization/alternate_content_source.rb +33 -0
  63. data/app/models/katello/authorization/repository.rb +3 -3
  64. data/app/models/katello/candlepin/repository_mapper.rb +13 -6
  65. data/app/models/katello/cdn_configuration.rb +15 -15
  66. data/app/models/katello/concerns/content_facet_host_extensions.rb +25 -0
  67. data/app/models/katello/concerns/host_managed_extensions.rb +7 -5
  68. data/app/models/katello/concerns/http_proxy_extensions.rb +14 -0
  69. data/app/models/katello/concerns/organization_extensions.rb +4 -2
  70. data/app/models/katello/concerns/setting_extensions.rb +14 -0
  71. data/app/models/katello/concerns/smart_proxy_extensions.rb +2 -1
  72. data/app/models/katello/content.rb +1 -0
  73. data/app/models/katello/content_credential.rb +6 -0
  74. data/app/models/katello/content_override.rb +7 -3
  75. data/app/models/katello/content_view.rb +33 -2
  76. data/app/models/katello/content_view_erratum_filter.rb +26 -12
  77. data/app/models/katello/content_view_filter.rb +4 -0
  78. data/app/models/katello/content_view_version.rb +12 -0
  79. data/app/models/katello/content_view_version_export_history.rb +3 -1
  80. data/app/models/katello/erratum.rb +9 -5
  81. data/app/models/katello/events/delete_latest_content_view_version.rb +40 -0
  82. data/app/models/katello/host/content_facet.rb +14 -0
  83. data/app/models/katello/host_available_module_stream.rb +12 -0
  84. data/app/models/katello/product_content.rb +1 -0
  85. data/app/models/katello/purpose_sla_status.rb +1 -1
  86. data/app/models/katello/purpose_status.rb +2 -2
  87. data/app/models/katello/repository.rb +7 -4
  88. data/app/models/katello/root_repository.rb +1 -1
  89. data/app/models/katello/smart_proxy_alternate_content_source.rb +8 -0
  90. data/app/models/katello/sync_plan.rb +1 -1
  91. data/app/presenters/katello/product_content_presenter.rb +15 -0
  92. data/app/services/katello/applicable_host_queue.rb +1 -1
  93. data/app/services/katello/content_unit_indexer.rb +2 -1
  94. data/app/services/katello/product_content_finder.rb +12 -2
  95. data/app/services/katello/pulp3/alternate_content_source.rb +117 -0
  96. data/app/services/katello/pulp3/api/file.rb +8 -0
  97. data/app/services/katello/pulp3/api/yum.rb +8 -0
  98. data/app/services/katello/pulp3/content_view_version/export.rb +27 -5
  99. data/app/services/katello/pulp3/content_view_version/import.rb +97 -71
  100. data/app/services/katello/pulp3/content_view_version/import_export_common.rb +4 -4
  101. data/app/services/katello/pulp3/content_view_version/import_gpg_keys.rb +13 -11
  102. data/app/services/katello/pulp3/content_view_version/import_validator.rb +67 -72
  103. data/app/services/katello/pulp3/content_view_version/importable_products.rb +40 -24
  104. data/app/services/katello/pulp3/content_view_version/importable_repositories.rb +88 -39
  105. data/app/services/katello/pulp3/content_view_version/metadata_generator.rb +2 -2
  106. data/app/services/katello/pulp3/content_view_version/metadata_map.rb +117 -0
  107. data/app/services/katello/pulp3/pulp_content_unit.rb +6 -1
  108. data/app/services/katello/pulp3/repository/yum.rb +70 -12
  109. data/app/services/katello/pulp3/repository.rb +7 -91
  110. data/app/services/katello/pulp3/service_common.rb +66 -0
  111. data/app/services/katello/pulp3/smart_proxy_mirror_repository.rb +4 -1
  112. data/app/services/katello/ui_notifications/content_view/delete_latest_version_failure.rb +22 -0
  113. data/app/views/foreman/job_templates/change_content_source.erb +1 -1
  114. data/app/views/foreman/job_templates/install_errata.erb +5 -5
  115. data/app/views/foreman/job_templates/install_errata_by_search_query.erb +7 -6
  116. data/app/views/foreman/job_templates/install_group.erb +4 -4
  117. data/app/views/foreman/job_templates/install_package.erb +4 -4
  118. data/app/views/foreman/job_templates/install_packages_by_search_query.erb +3 -3
  119. data/app/views/foreman/job_templates/remove_group.erb +4 -4
  120. data/app/views/foreman/job_templates/remove_package.erb +4 -4
  121. data/app/views/foreman/job_templates/remove_packages_by_search_query.erb +3 -3
  122. data/app/views/foreman/job_templates/resolve_traces.erb +2 -2
  123. data/app/views/foreman/job_templates/restart_services.erb +3 -3
  124. data/app/views/foreman/job_templates/update_group.erb +4 -4
  125. data/app/views/foreman/job_templates/update_package.erb +4 -4
  126. data/app/views/foreman/job_templates/update_packages_by_search_query.erb +3 -3
  127. data/app/views/katello/api/v2/alternate_content_sources/base.json.rabl +15 -0
  128. data/app/views/katello/api/v2/alternate_content_sources/index.json.rabl +7 -0
  129. data/app/views/katello/api/v2/alternate_content_sources/show.json.rabl +3 -0
  130. data/app/views/katello/api/v2/capsule_content/sync_status.json.rabl +1 -1
  131. data/app/views/katello/api/v2/content_view_version_export_histories/show.json.rabl +2 -3
  132. data/app/views/katello/api/v2/content_view_versions/base.json.rabl +1 -1
  133. data/app/views/katello/api/v2/content_views/base.json.rabl +1 -0
  134. data/app/views/katello/api/v2/environments/show.json.rabl +2 -0
  135. data/app/views/katello/api/v2/errata/_counts.json.rabl +2 -2
  136. data/app/views/katello/api/v2/host_module_streams/base.json.rabl +2 -2
  137. data/app/views/katello/api/v2/hosts/host_collections.json.rabl +1 -1
  138. data/app/views/katello/api/v2/organizations/show.json.rabl +7 -1
  139. data/app/views/katello/api/v2/repositories/show.json.rabl +2 -1
  140. data/app/views/katello/sync_management/_repo.html.erb +8 -29
  141. data/config/routes/api/v2.rb +7 -0
  142. data/db/migrate/20150930183738_migrate_content_hosts.rb +0 -399
  143. data/db/migrate/20171025163149_remove_use_pulp_oauth_setting.rb +1 -1
  144. data/db/migrate/20171114150937_cleanup_installed_packages.rb +1 -1
  145. data/db/migrate/20180402160223_clean_up_force_post_sync_action_setting.rb +1 -1
  146. data/db/migrate/20211129200124_remove_dependency_solving_algorithm_setting.rb +1 -1
  147. data/db/migrate/20211220185935_clean_duplicate_content_units.rb +10 -12
  148. data/db/migrate/20220110223754_update_disconnected_settings.rb +5 -5
  149. data/db/migrate/20220117151612_add_alternate_content_sources.rb +48 -0
  150. data/db/migrate/20220124191056_add_type_to_cdn_configuration.rb +9 -4
  151. data/db/migrate/20220209203251_add_generated_for_to_content_views.rb +13 -0
  152. data/db/migrate/20220209205137_expand_sync_timeout_settings.rb +7 -7
  153. data/db/migrate/20220228173251_remove_drpm_from_ignorable_content.rb +12 -0
  154. data/db/migrate/20220404190836_delete_old_setting_data.rb +9 -0
  155. data/db/migrate/20220405220616_update_cdn_configuration_type.rb +11 -0
  156. data/db/migrate/20220419193414_content_settings_to_dsl_category.rb +5 -0
  157. data/db/seeds.d/110-content-view-autopublish.rb +13 -0
  158. data/db/seeds.d/150-module_job_templates.rb +1 -1
  159. data/engines/bastion/README.md +1 -0
  160. data/engines/bastion/app/assets/javascripts/bastion/components/bst-modal.directive.js +1 -0
  161. data/engines/bastion/app/views/bastion/layouts/assets.html.erb +1 -0
  162. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/activation-key-details.controller.js +4 -2
  163. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/capsule-content/capsule-content.controller.js +10 -5
  164. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-module-streams.controller.js +1 -0
  165. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-packages-installed.controller.js +1 -0
  166. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-traces.controller.js +1 -0
  167. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-packages-actions.html +1 -1
  168. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-packages-applicable.html +1 -1
  169. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-hosts.controller.js +8 -0
  170. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/content-host-details.controller.js +4 -2
  171. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html +2 -2
  172. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/content.service.js +10 -0
  173. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment-deb-repositories.html +26 -0
  174. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment-debs.html +27 -0
  175. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/environments.controller.js +1 -0
  176. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/environments.routes.js +22 -0
  177. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/views/environments.html +13 -7
  178. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot +63 -17
  179. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-info.controller.js +7 -8
  180. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details.controller.js +10 -1
  181. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-details.html +21 -3
  182. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html +8 -9
  183. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/new-repository.controller.js +7 -5
  184. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html +2 -1
  185. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/discovery/discovery-create.controller.js +1 -1
  186. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/discovery/views/discovery-create.html +1 -1
  187. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/products.routes.js +1 -0
  188. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/views/content-access-mode-banner.html +6 -1
  189. data/lib/katello/engine.rb +1 -5
  190. data/lib/katello/permission_creator.rb +32 -4
  191. data/lib/katello/plugin.rb +378 -4
  192. data/lib/katello/tasks/reset.rake.bak +67 -0
  193. data/lib/katello/tasks/update_content_default_http_proxy.rake +2 -3
  194. data/lib/katello/version.rb +1 -1
  195. data/locale/action_names.rb +47 -41
  196. data/locale/bn/LC_MESSAGES/katello.mo +0 -0
  197. data/locale/bn/katello.po +820 -106
  198. data/locale/bn/katello.po.time_stamp +0 -0
  199. data/locale/cs/LC_MESSAGES/katello.mo +0 -0
  200. data/locale/cs/katello.po +818 -104
  201. data/locale/cs/katello.po.time_stamp +0 -0
  202. data/locale/de/LC_MESSAGES/katello.mo +0 -0
  203. data/locale/de/katello.po +893 -179
  204. data/locale/de/katello.po.time_stamp +0 -0
  205. data/locale/en/LC_MESSAGES/katello.mo +0 -0
  206. data/locale/en/katello.po +817 -103
  207. data/locale/en/katello.po.time_stamp +0 -0
  208. data/locale/es/LC_MESSAGES/katello.mo +0 -0
  209. data/locale/es/katello.po +882 -168
  210. data/locale/es/katello.po.time_stamp +0 -0
  211. data/locale/fr/LC_MESSAGES/katello.mo +0 -0
  212. data/locale/fr/katello.po +1219 -505
  213. data/locale/fr/katello.po.time_stamp +0 -0
  214. data/locale/gu/LC_MESSAGES/katello.mo +0 -0
  215. data/locale/gu/katello.po +826 -112
  216. data/locale/gu/katello.po.time_stamp +0 -0
  217. data/locale/hi/LC_MESSAGES/katello.mo +0 -0
  218. data/locale/hi/katello.po +826 -112
  219. data/locale/hi/katello.po.time_stamp +0 -0
  220. data/locale/it/LC_MESSAGES/katello.mo +0 -0
  221. data/locale/it/katello.po +863 -148
  222. data/locale/it/katello.po.time_stamp +0 -0
  223. data/locale/ja/LC_MESSAGES/katello.mo +0 -0
  224. data/locale/ja/katello.po +1216 -499
  225. data/locale/ja/katello.po.time_stamp +0 -0
  226. data/locale/katello.pot +3847 -2507
  227. data/locale/kn/LC_MESSAGES/katello.mo +0 -0
  228. data/locale/kn/katello.po +826 -112
  229. data/locale/kn/katello.po.time_stamp +0 -0
  230. data/locale/ko/LC_MESSAGES/katello.mo +0 -0
  231. data/locale/ko/katello.po +912 -198
  232. data/locale/ko/katello.po.time_stamp +0 -0
  233. data/locale/mr/LC_MESSAGES/katello.mo +0 -0
  234. data/locale/mr/katello.po +826 -112
  235. data/locale/mr/katello.po.time_stamp +0 -0
  236. data/locale/or/LC_MESSAGES/katello.mo +0 -0
  237. data/locale/or/katello.po +826 -112
  238. data/locale/or/katello.po.time_stamp +0 -0
  239. data/locale/pa/LC_MESSAGES/katello.mo +0 -0
  240. data/locale/pa/katello.po +826 -112
  241. data/locale/pa/katello.po.time_stamp +0 -0
  242. data/locale/pt/LC_MESSAGES/katello.mo +0 -0
  243. data/locale/pt/katello.po +817 -103
  244. data/locale/pt/katello.po.time_stamp +0 -0
  245. data/locale/pt_BR/LC_MESSAGES/katello.mo +0 -0
  246. data/locale/pt_BR/katello.po +879 -165
  247. data/locale/pt_BR/katello.po.time_stamp +0 -0
  248. data/locale/ru/LC_MESSAGES/katello.mo +0 -0
  249. data/locale/ru/katello.po +927 -213
  250. data/locale/ru/katello.po.time_stamp +0 -0
  251. data/locale/ta/LC_MESSAGES/katello.mo +0 -0
  252. data/locale/ta/katello.po +820 -106
  253. data/locale/ta/katello.po.time_stamp +0 -0
  254. data/locale/te/LC_MESSAGES/katello.mo +0 -0
  255. data/locale/te/katello.po +826 -112
  256. data/locale/te/katello.po.time_stamp +0 -0
  257. data/locale/zh_CN/LC_MESSAGES/katello.mo +0 -0
  258. data/locale/zh_CN/katello.po +1202 -486
  259. data/locale/zh_CN/katello.po.time_stamp +0 -0
  260. data/locale/zh_TW/LC_MESSAGES/katello.mo +0 -0
  261. data/locale/zh_TW/katello.po +856 -142
  262. data/locale/zh_TW/katello.po.time_stamp +0 -0
  263. data/webpack/components/EditableTextInput/EditableTextInput.js +20 -5
  264. data/webpack/components/Errata/index.js +38 -8
  265. data/webpack/components/Packages/index.js +1 -4
  266. data/webpack/components/Search/Search.js +18 -3
  267. data/webpack/components/SelectAllCheckbox/index.js +1 -0
  268. data/webpack/components/SelectableDropdown/SelectableDropdown.js +4 -2
  269. data/webpack/components/Table/EmptyStateMessage.js +21 -7
  270. data/webpack/components/Table/MainTable.js +29 -4
  271. data/webpack/components/Table/TableHooks.js +63 -19
  272. data/webpack/components/Table/TableWrapper.js +4 -2
  273. data/webpack/components/Table/components/SortableColumnHeaders.js +19 -0
  274. data/webpack/components/Table/components/TranslatedPlural.js +57 -0
  275. data/webpack/components/TypeAhead/TypeAhead.js +8 -0
  276. data/webpack/components/TypeAhead/pf4Search/TypeAheadInput.js +13 -11
  277. data/webpack/components/TypeAhead/pf4Search/TypeAheadSearch.js +5 -2
  278. data/webpack/components/extensions/HostDetails/ActionsBar/index.js +27 -0
  279. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/ChangeHostCVModal.js +256 -0
  280. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/ContentViewDetailsCard.js +202 -0
  281. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/HostContentViewActions.js +19 -0
  282. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/HostContentViewConstants.js +2 -0
  283. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/__tests__/changeHostCVModal.test.js +131 -0
  284. data/webpack/components/extensions/HostDetails/Cards/{__tests__ → ContentViewDetailsCard/__tests__}/contentViewDetailsCard.test.js +22 -0
  285. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/__tests__/contentViews.fixtures.json +443 -0
  286. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/__tests__/envPaths.fixtures.json +320 -0
  287. data/webpack/components/extensions/HostDetails/Cards/ErrataOverviewCard.js +57 -33
  288. data/webpack/components/extensions/HostDetails/Cards/ErrataOverviewCard.scss +3 -0
  289. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsActions.js +30 -0
  290. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsCard.js +187 -0
  291. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsConstants.js +7 -0
  292. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsModal.js +227 -0
  293. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsSelectors.js +18 -0
  294. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/__tests__/availableHostCollections.fixtures.json +106 -0
  295. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/__tests__/hostCollectionsCard.test.js +110 -0
  296. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/__tests__/hostCollectionsModal.test.js +235 -0
  297. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/__tests__/removableHostCollections.fixtures.json +45 -0
  298. data/webpack/components/extensions/HostDetails/Cards/__tests__/errataOverviewCard.test.js +33 -8
  299. data/webpack/components/extensions/HostDetails/DetailsTabCards/InstalledProductsCard.js +44 -0
  300. data/webpack/components/extensions/HostDetails/DetailsTabCards/RegistrationCard.js +107 -0
  301. data/webpack/components/extensions/HostDetails/DetailsTabCards/SystemPropertiesCardExtensions.js +38 -0
  302. data/webpack/components/extensions/HostDetails/Tabs/ErrataTab/ErrataTab.js +62 -39
  303. data/webpack/components/extensions/HostDetails/Tabs/ErrataTab/HostErrataActions.js +1 -7
  304. data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/ModuleStreamsActions.js +1 -3
  305. data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/ModuleStreamsConstants.js +28 -0
  306. data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/ModuleStreamsTab.js +486 -116
  307. data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/__tests__/moduleStreamsTab.test.js +147 -1
  308. data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/__tests__/modules.fixtures.json +6 -3
  309. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/HostPackagesActions.js +1 -7
  310. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/PackageInstallModal.js +2 -1
  311. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/PackagesTab.js +48 -19
  312. data/webpack/components/extensions/HostDetails/Tabs/RemoteExecutionActions.js +35 -47
  313. data/webpack/components/extensions/HostDetails/Tabs/RemoteExecutionConstants.js +1 -0
  314. data/webpack/components/extensions/HostDetails/Tabs/RepositorySetsTab/RepositorySetsActions.js +33 -54
  315. data/webpack/components/extensions/HostDetails/Tabs/RepositorySetsTab/RepositorySetsConstants.js +20 -0
  316. data/webpack/components/extensions/HostDetails/Tabs/RepositorySetsTab/RepositorySetsTab.js +269 -132
  317. data/webpack/components/extensions/HostDetails/Tabs/TracesTab/TracesTab.js +47 -11
  318. data/webpack/components/extensions/HostDetails/Tabs/__tests__/errataTab.test.js +30 -42
  319. data/webpack/components/extensions/HostDetails/Tabs/__tests__/packagesTab.test.js +36 -1
  320. data/webpack/components/extensions/HostDetails/Tabs/__tests__/repositorySetsTab.test.js +94 -46
  321. data/webpack/components/extensions/HostDetails/Tabs/__tests__/tracesTab.test.js +18 -2
  322. data/webpack/components/extensions/HostDetails/Tabs/customizedRexUrlHelpers.js +6 -0
  323. data/webpack/containers/Application/config.js +5 -0
  324. data/webpack/global_index.js +30 -7
  325. data/webpack/global_test_setup.js +13 -0
  326. data/webpack/redux/actions/RedHatRepositories/enabled.js +2 -1
  327. data/webpack/redux/actions/RedHatRepositories/helpers.js +9 -8
  328. data/webpack/scenes/AlternateContentSources/ACSActions.js +53 -0
  329. data/webpack/scenes/AlternateContentSources/ACSConstants.js +4 -0
  330. data/webpack/scenes/AlternateContentSources/ACSIndexPage.js +23 -0
  331. data/webpack/scenes/AlternateContentSources/ACSSelectors.js +15 -0
  332. data/webpack/scenes/AlternateContentSources/MainTable/ACSTable.js +152 -0
  333. data/webpack/scenes/AlternateContentSources/MainTable/__tests__/acsIndex.fixtures.json +91 -0
  334. data/webpack/scenes/AlternateContentSources/MainTable/__tests__/acsTable.test.js +67 -0
  335. data/webpack/scenes/AlternateContentSources/index.js +4 -0
  336. data/webpack/scenes/Content/Details/ContentRepositories.js +1 -0
  337. data/webpack/scenes/Content/Table/ContentTable.js +1 -0
  338. data/webpack/scenes/ContentViews/ContentViewsActions.js +6 -2
  339. data/webpack/scenes/ContentViews/ContentViewsConstants.js +11 -3
  340. data/webpack/scenes/ContentViews/Copy/CopyContentViewForm.js +2 -1
  341. data/webpack/scenes/ContentViews/Create/ContentViewFormComponents.js +10 -1
  342. data/webpack/scenes/ContentViews/Create/CreateContentViewForm.js +4 -3
  343. data/webpack/scenes/ContentViews/Create/__tests__/createContentView.test.js +1 -1
  344. data/webpack/scenes/ContentViews/Delete/ContentViewDeleteWizard.js +7 -5
  345. data/webpack/scenes/ContentViews/Delete/Steps/CVDeletionFinish.js +29 -21
  346. data/webpack/scenes/ContentViews/Delete/__tests__/contentViewDelete.test.js +15 -8
  347. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentContentViewAddModal.js +3 -3
  348. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentContentViewBulkAddModal.js +4 -4
  349. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js +3 -1
  350. data/webpack/scenes/ContentViews/Details/ComponentContentViews/__tests__/contentViewComponents.test.js +4 -4
  351. data/webpack/scenes/ContentViews/Details/ContentViewDetailActions.js +34 -8
  352. data/webpack/scenes/ContentViews/Details/ContentViewDetailSelectors.js +33 -29
  353. data/webpack/scenes/ContentViews/Details/ContentViewDetails.js +130 -79
  354. data/webpack/scenes/ContentViews/Details/ContentViewInfo.js +17 -3
  355. data/webpack/scenes/ContentViews/Details/Filters/Add/CVFilterAddModal.js +2 -1
  356. data/webpack/scenes/ContentViews/Details/Filters/AffectedRepositories/AffectedRepositoryTable.js +2 -1
  357. data/webpack/scenes/ContentViews/Details/Filters/CVContainerImageFilterContent.js +6 -1
  358. data/webpack/scenes/ContentViews/Details/Filters/CVErrataDateFilterContent.js +41 -21
  359. data/webpack/scenes/ContentViews/Details/Filters/CVErrataIDFilterContent.js +38 -20
  360. data/webpack/scenes/ContentViews/Details/Filters/CVModuleStreamFilterContent.js +2 -0
  361. data/webpack/scenes/ContentViews/Details/Filters/CVPackageGroupFilterContent.js +8 -1
  362. data/webpack/scenes/ContentViews/Details/Filters/CVRpmFilterContent.js +9 -1
  363. data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilters.js +2 -1
  364. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/CVRpmMatchContentModal.js +1 -0
  365. data/webpack/scenes/ContentViews/Details/Filters/Rules/ContainerTag/AddEditContainerTagRuleModal.js +27 -12
  366. data/webpack/scenes/ContentViews/Details/Filters/Rules/Package/AddEditPackageRuleModal.js +39 -17
  367. data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVContainerImageFilterContent.test.js +27 -10
  368. data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVRpmFilterContent.test.js +46 -23
  369. data/webpack/scenes/ContentViews/Details/Histories/ContentViewHistories.js +3 -2
  370. data/webpack/scenes/ContentViews/Details/Promote/ContentViewVersionPromote.js +5 -2
  371. data/webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js +161 -108
  372. data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewAddRemove.test.js +7 -7
  373. data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewRepoAdd.fixture.json +1 -0
  374. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/ActionSummary.js +58 -0
  375. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/BulkDeleteContextWrapper.js +45 -0
  376. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/BulkDeleteHelpers.js +30 -0
  377. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/BulkDeleteModal.js +56 -0
  378. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ConfirmBulkDelete.js +126 -0
  379. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/FinishBulkDelete.js +61 -0
  380. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ReassignActivationKeys.js +196 -0
  381. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ReassignHosts.js +220 -0
  382. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ReviewEnvironments.js +104 -0
  383. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/BulkDeleteModal.test.js +122 -0
  384. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/BulkDeleteVersions.fixtures.json +600 -0
  385. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/contentView.fixtures.json +1504 -0
  386. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/contentViewVersion.fixtures.json +936 -0
  387. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/environmentPaths.fixtures.json +261 -0
  388. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/hosts.fixtures.json +163 -0
  389. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/bulkDeleteSteps.js +79 -0
  390. data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersions.js +192 -167
  391. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveCVVersionWizard.js +2 -5
  392. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVVersionDeleteFinish.js +38 -53
  393. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVVersionRemoveReview.js +1 -1
  394. data/webpack/scenes/ContentViews/Details/Versions/Delete/__tests__/cvVersionRemove.test.js +6 -12
  395. data/webpack/scenes/ContentViews/Details/Versions/Delete/affectedActivationKeys.js +1 -0
  396. data/webpack/scenes/ContentViews/Details/Versions/Delete/affectedHosts.js +1 -0
  397. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailConfig.js +1 -0
  398. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetails.js +8 -20
  399. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailsHeader.js +23 -13
  400. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailsTable.js +3 -0
  401. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetails.fixtures.json +4 -4
  402. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetails.test.js +0 -3
  403. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetailsEmpty.test.js +4 -4
  404. data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewVersions.test.js +12 -14
  405. data/webpack/scenes/ContentViews/Details/__tests__/contentViewDetails.fixtures.json +1 -0
  406. data/webpack/scenes/ContentViews/Publish/CVPublishFinish.js +96 -117
  407. data/webpack/scenes/ContentViews/Publish/PublishContentViewWizard.js +13 -19
  408. data/webpack/scenes/ContentViews/Publish/__tests__/publishContentView.test.js +9 -20
  409. data/webpack/scenes/ContentViews/Table/ContentViewsTable.js +165 -148
  410. data/webpack/scenes/ContentViews/Table/tableDataGenerator.js +2 -0
  411. data/webpack/scenes/ContentViews/__tests__/contentViewPage.test.js +4 -4
  412. data/webpack/scenes/ContentViews/components/ContentViewIcon.js +14 -3
  413. data/webpack/scenes/ContentViews/components/ContentViewsCounter.js +1 -1
  414. data/webpack/scenes/ContentViews/components/EnvironmentLabels.js +4 -3
  415. data/webpack/scenes/ContentViews/components/EnvironmentPaths/EnvironmentPaths.js +9 -5
  416. data/webpack/scenes/ContentViews/components/EnvironmentPaths/EnvironmentPaths.scss +6 -1
  417. data/webpack/scenes/ContentViews/components/TaskPresenter/TaskPresenter.js +40 -35
  418. data/webpack/scenes/ContentViews/expansions/DetailsExpansion.js +2 -2
  419. data/webpack/scenes/ContentViews/expansions/RelatedCompositeContentViewsModal.js +1 -1
  420. data/webpack/scenes/ContentViews/expansions/RelatedContentViewComponentsModal.js +4 -4
  421. data/webpack/scenes/ContentViews/expansions/__tests__/contentViewComponentsModal.test.js +1 -1
  422. data/webpack/scenes/ContentViews/helpers.js +3 -0
  423. data/webpack/scenes/Hosts/ChangeContentSource/helpers.js +5 -0
  424. data/webpack/scenes/RedHatRepositories/RedHatRepositoriesPage.js +3 -3
  425. data/webpack/scenes/RedHatRepositories/components/EnabledRepository/EnabledRepository.js +2 -1
  426. data/webpack/scenes/RedHatRepositories/components/EnabledRepository/__tests__/EnabledRepository.test.js +2 -0
  427. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/CdnConfigurationConstants.js +3 -3
  428. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/CdnTypeForm.js +2 -0
  429. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/{AirGappedTypeForm.js → ExportSyncForm.js} +7 -6
  430. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/{UpstreamServerTypeForm.js → NetworkSyncForm.js} +15 -7
  431. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/__tests__/{AirGappedTypeForm.test.js → ExportSyncForm.test.js} +4 -4
  432. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/__tests__/{UpstreamServerTypeForm.test.js → NetworkSyncForm.test.js} +8 -8
  433. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/index.js +11 -11
  434. data/webpack/scenes/Subscriptions/SubscriptionConstants.js +1 -0
  435. data/webpack/scenes/Subscriptions/SubscriptionsPage.js +8 -7
  436. data/webpack/scenes/Tasks/TaskActions.js +6 -0
  437. data/webpack/scenes/Tasks/TaskSelectors.js +11 -0
  438. data/webpack/scenes/Tasks/helpers.js +33 -5
  439. data/webpack/utils/helpers.js +2 -0
  440. metadata +158 -40
  441. data/app/models/setting/content.rb +0 -201
  442. data/webpack/components/Table/__test__/useBulkSelect.test.js +0 -99
  443. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard.js +0 -96
  444. data/webpack/scenes/ContentViews/Details/DetailsContainer.js +0 -36
@@ -0,0 +1,1504 @@
1
+ {
2
+ "total": 8,
3
+ "subtotal": 8,
4
+ "selectable": 8,
5
+ "page": 1,
6
+ "per_page": 8,
7
+ "error": null,
8
+ "search": null,
9
+ "sort": {
10
+ "by": "name",
11
+ "order": "asc"
12
+ },
13
+ "can_create": true,
14
+ "results": [
15
+ {
16
+ "composite": false,
17
+ "component_ids": [],
18
+ "default": false,
19
+ "version_count": 1,
20
+ "latest_version": "1.0",
21
+ "latest_version_id": 23,
22
+ "auto_publish": false,
23
+ "solve_dependencies": false,
24
+ "import_only": false,
25
+ "related_cv_count": 0,
26
+ "related_composite_cvs": [],
27
+ "repository_ids": [],
28
+ "id": 8,
29
+ "name": "2",
30
+ "label": "2",
31
+ "description": "",
32
+ "organization_id": 1,
33
+ "organization": {
34
+ "name": "Default Organization",
35
+ "label": "Default_Organization",
36
+ "id": 1
37
+ },
38
+ "created_at": "2022-01-21 14:57:57 -0700",
39
+ "updated_at": "2022-01-21 15:00:00 -0700",
40
+ "last_task": {
41
+ "id": "3bb375e6-3eff-4a21-b33f-7c821d90b053",
42
+ "started_at": "2022-01-21 15:00:00 -0700",
43
+ "result": "success",
44
+ "last_sync_words": "25 days"
45
+ },
46
+ "latest_version_environments": [
47
+ {
48
+ "id": 1,
49
+ "name": "Library",
50
+ "label": "Library"
51
+ },
52
+ {
53
+ "id": 2,
54
+ "name": "Steve",
55
+ "label": "Steve"
56
+ }
57
+ ],
58
+ "environments": [
59
+ {
60
+ "id": 1,
61
+ "name": "Library",
62
+ "label": "Library",
63
+ "permissions": {
64
+ "readable": true
65
+ }
66
+ },
67
+ {
68
+ "id": 2,
69
+ "name": "Steve",
70
+ "label": "Steve",
71
+ "permissions": {
72
+ "readable": true
73
+ }
74
+ }
75
+ ],
76
+ "repositories": [],
77
+ "versions": [
78
+ {
79
+ "id": 23,
80
+ "version": "1.0",
81
+ "published": "2022-01-21 15:00:00 -0700",
82
+ "environment_ids": [
83
+ 1,
84
+ 2
85
+ ]
86
+ }
87
+ ],
88
+ "components": [],
89
+ "content_view_components": [],
90
+ "activation_keys": [],
91
+ "hosts": [],
92
+ "next_version": "2.0",
93
+ "last_published": "2022-01-21 15:00:00 -0700",
94
+ "permissions": {
95
+ "view_content_views": true,
96
+ "edit_content_views": true,
97
+ "destroy_content_views": true,
98
+ "publish_content_views": true,
99
+ "promote_or_remove_content_views": true
100
+ }
101
+ },
102
+ {
103
+ "composite": false,
104
+ "component_ids": [],
105
+ "default": false,
106
+ "version_count": 5,
107
+ "latest_version": "89.0",
108
+ "latest_version_id": 145,
109
+ "auto_publish": false,
110
+ "solve_dependencies": false,
111
+ "import_only": false,
112
+ "related_cv_count": 0,
113
+ "related_composite_cvs": [],
114
+ "repository_ids": [
115
+ 2,
116
+ 1,
117
+ 61
118
+ ],
119
+ "id": 10,
120
+ "name": "Billy",
121
+ "label": "Billy",
122
+ "description": "",
123
+ "organization_id": 1,
124
+ "organization": {
125
+ "name": "Default Organization",
126
+ "label": "Default_Organization",
127
+ "id": 1
128
+ },
129
+ "created_at": "2022-01-28 13:28:22 -0700",
130
+ "updated_at": "2022-02-15 14:21:21 -0700",
131
+ "last_task": {
132
+ "id": "e4436479-9f3c-41d2-b2f6-6baeee4341a3",
133
+ "started_at": "2022-02-15 14:21:21 -0700",
134
+ "result": "success",
135
+ "last_sync_words": "about 1 hour"
136
+ },
137
+ "latest_version_environments": [
138
+ {
139
+ "id": 1,
140
+ "name": "Library",
141
+ "label": "Library"
142
+ }
143
+ ],
144
+ "environments": [
145
+ {
146
+ "id": 3,
147
+ "name": "bob",
148
+ "label": "bob",
149
+ "permissions": {
150
+ "readable": true
151
+ }
152
+ },
153
+ {
154
+ "id": 1,
155
+ "name": "Library",
156
+ "label": "Library",
157
+ "permissions": {
158
+ "readable": true
159
+ }
160
+ }
161
+ ],
162
+ "repositories": [
163
+ {
164
+ "id": 2,
165
+ "name": "Zoo Repo Dos",
166
+ "label": "Zoo_Repo_Dos",
167
+ "content_type": "yum"
168
+ },
169
+ {
170
+ "id": 1,
171
+ "name": "Zoo Repo Uno",
172
+ "label": "Zoo_Repo_Uno",
173
+ "content_type": "yum"
174
+ },
175
+ {
176
+ "id": 61,
177
+ "name": "Needed Errata",
178
+ "label": "Needed_Errata",
179
+ "content_type": "yum"
180
+ }
181
+ ],
182
+ "versions": [
183
+ {
184
+ "id": 139,
185
+ "version": "84.0",
186
+ "published": "2022-02-08 13:41:23 -0700",
187
+ "environment_ids": []
188
+ },
189
+ {
190
+ "id": 140,
191
+ "version": "85.0",
192
+ "published": "2022-02-10 15:56:48 -0700",
193
+ "environment_ids": []
194
+ },
195
+ {
196
+ "id": 138,
197
+ "version": "83.0",
198
+ "published": "2022-02-07 12:26:00 -0700",
199
+ "environment_ids": []
200
+ },
201
+ {
202
+ "id": 144,
203
+ "version": "88.0",
204
+ "published": "2022-02-11 11:17:05 -0700",
205
+ "environment_ids": [
206
+ 3
207
+ ]
208
+ },
209
+ {
210
+ "id": 145,
211
+ "version": "89.0",
212
+ "published": "2022-02-15 14:21:21 -0700",
213
+ "environment_ids": [
214
+ 1
215
+ ]
216
+ }
217
+ ],
218
+ "components": [],
219
+ "content_view_components": [],
220
+ "activation_keys": [
221
+ {
222
+ "id": 3,
223
+ "name": "steve-O's"
224
+ }
225
+ ],
226
+ "hosts": [
227
+ {
228
+ "id": 1,
229
+ "name": "steve8.satellite.lab.eng.rdu2.redhat.com"
230
+ }
231
+ ],
232
+ "next_version": "90.0",
233
+ "last_published": "2022-02-15 14:21:21 -0700",
234
+ "permissions": {
235
+ "view_content_views": true,
236
+ "edit_content_views": true,
237
+ "destroy_content_views": true,
238
+ "publish_content_views": true,
239
+ "promote_or_remove_content_views": true
240
+ }
241
+ },
242
+ {
243
+ "composite": false,
244
+ "component_ids": [],
245
+ "default": true,
246
+ "version_count": 1,
247
+ "latest_version": "1.0",
248
+ "latest_version_id": 1,
249
+ "auto_publish": false,
250
+ "solve_dependencies": false,
251
+ "import_only": false,
252
+ "related_cv_count": 0,
253
+ "related_composite_cvs": [],
254
+ "repository_ids": [],
255
+ "id": 1,
256
+ "name": "Default Organization View",
257
+ "label": "Default_Organization_View",
258
+ "description": null,
259
+ "organization_id": 1,
260
+ "organization": {
261
+ "name": "Default Organization",
262
+ "label": "Default_Organization",
263
+ "id": 1
264
+ },
265
+ "created_at": "2021-12-14 17:06:28 -0700",
266
+ "updated_at": "2021-12-14 17:06:28 -0700",
267
+ "last_task": null,
268
+ "latest_version_environments": [
269
+ {
270
+ "id": 1,
271
+ "name": "Library",
272
+ "label": "Library"
273
+ }
274
+ ],
275
+ "environments": [
276
+ {
277
+ "id": 1,
278
+ "name": "Library",
279
+ "label": "Library",
280
+ "permissions": {
281
+ "readable": true
282
+ }
283
+ }
284
+ ],
285
+ "repositories": [],
286
+ "versions": [
287
+ {
288
+ "id": 1,
289
+ "version": "1.0",
290
+ "published": "2021-12-14 17:06:28 -0700",
291
+ "environment_ids": [
292
+ 1
293
+ ]
294
+ }
295
+ ],
296
+ "components": [],
297
+ "content_view_components": [],
298
+ "activation_keys": [],
299
+ "hosts": [],
300
+ "next_version": "1.0",
301
+ "last_published": "2021-12-14 17:06:28 -0700",
302
+ "permissions": {
303
+ "view_content_views": true,
304
+ "edit_content_views": true,
305
+ "destroy_content_views": true,
306
+ "publish_content_views": true,
307
+ "promote_or_remove_content_views": true
308
+ }
309
+ },
310
+ {
311
+ "composite": false,
312
+ "component_ids": [],
313
+ "default": false,
314
+ "version_count": 1,
315
+ "latest_version": "1.0",
316
+ "latest_version_id": 143,
317
+ "auto_publish": false,
318
+ "solve_dependencies": false,
319
+ "import_only": false,
320
+ "related_cv_count": 0,
321
+ "related_composite_cvs": [],
322
+ "repository_ids": [
323
+ 909
324
+ ],
325
+ "id": 11,
326
+ "name": "Dummysilly1",
327
+ "label": "Dummysilly1",
328
+ "description": "",
329
+ "organization_id": 1,
330
+ "organization": {
331
+ "name": "Default Organization",
332
+ "label": "Default_Organization",
333
+ "id": 1
334
+ },
335
+ "created_at": "2022-02-11 11:05:43 -0700",
336
+ "updated_at": "2022-02-11 11:06:14 -0700",
337
+ "last_task": {
338
+ "id": "598124ba-9499-423b-8165-09fde43db6ad",
339
+ "started_at": "2022-02-11 11:06:14 -0700",
340
+ "result": "success",
341
+ "last_sync_words": "4 days"
342
+ },
343
+ "latest_version_environments": [
344
+ {
345
+ "id": 1,
346
+ "name": "Library",
347
+ "label": "Library"
348
+ }
349
+ ],
350
+ "environments": [
351
+ {
352
+ "id": 1,
353
+ "name": "Library",
354
+ "label": "Library",
355
+ "permissions": {
356
+ "readable": true
357
+ }
358
+ }
359
+ ],
360
+ "repositories": [
361
+ {
362
+ "id": 909,
363
+ "name": "Bop2",
364
+ "label": "Bop2",
365
+ "content_type": "yum"
366
+ }
367
+ ],
368
+ "versions": [
369
+ {
370
+ "id": 143,
371
+ "version": "1.0",
372
+ "published": "2022-02-11 11:06:14 -0700",
373
+ "environment_ids": [
374
+ 1
375
+ ]
376
+ }
377
+ ],
378
+ "components": [],
379
+ "content_view_components": [],
380
+ "activation_keys": [],
381
+ "hosts": [],
382
+ "next_version": "2.0",
383
+ "last_published": "2022-02-11 11:06:14 -0700",
384
+ "permissions": {
385
+ "view_content_views": true,
386
+ "edit_content_views": true,
387
+ "destroy_content_views": true,
388
+ "publish_content_views": true,
389
+ "promote_or_remove_content_views": true
390
+ }
391
+ },
392
+ {
393
+ "composite": true,
394
+ "component_ids": [
395
+ 19,
396
+ 83
397
+ ],
398
+ "default": false,
399
+ "version_count": 3,
400
+ "latest_version": "6.0",
401
+ "latest_version_id": 76,
402
+ "auto_publish": false,
403
+ "solve_dependencies": false,
404
+ "import_only": false,
405
+ "related_cv_count": 2,
406
+ "related_composite_cvs": [],
407
+ "repository_ids": [
408
+ 77,
409
+ 76,
410
+ 585,
411
+ 584,
412
+ 586,
413
+ 582,
414
+ 583
415
+ ],
416
+ "id": 2,
417
+ "name": "Duna",
418
+ "label": "Duna",
419
+ "description": "asdfas",
420
+ "organization_id": 1,
421
+ "organization": {
422
+ "name": "Default Organization",
423
+ "label": "Default_Organization",
424
+ "id": 1
425
+ },
426
+ "created_at": "2021-12-16 09:36:28 -0700",
427
+ "updated_at": "2022-02-02 14:39:32 -0700",
428
+ "last_task": {
429
+ "id": "182d6367-684d-401f-8363-3dcbd217c528",
430
+ "started_at": "2022-02-02 14:39:32 -0700",
431
+ "result": "success",
432
+ "last_sync_words": "13 days"
433
+ },
434
+ "latest_version_environments": [
435
+ {
436
+ "id": 1,
437
+ "name": "Library",
438
+ "label": "Library"
439
+ }
440
+ ],
441
+ "environments": [
442
+ {
443
+ "id": 2,
444
+ "name": "Steve",
445
+ "label": "Steve",
446
+ "permissions": {
447
+ "readable": true
448
+ }
449
+ },
450
+ {
451
+ "id": 3,
452
+ "name": "bob",
453
+ "label": "bob",
454
+ "permissions": {
455
+ "readable": true
456
+ }
457
+ },
458
+ {
459
+ "id": 1,
460
+ "name": "Library",
461
+ "label": "Library",
462
+ "permissions": {
463
+ "readable": true
464
+ }
465
+ }
466
+ ],
467
+ "repositories": [
468
+ {
469
+ "id": 77,
470
+ "name": "Zoo Repo Uno",
471
+ "label": "Zoo_Repo_Uno",
472
+ "content_type": "yum"
473
+ },
474
+ {
475
+ "id": 76,
476
+ "name": "Zoo Repo Dos",
477
+ "label": "Zoo_Repo_Dos",
478
+ "content_type": "yum"
479
+ },
480
+ {
481
+ "id": 585,
482
+ "name": "OZtree",
483
+ "label": "OZtree",
484
+ "content_type": "ostree"
485
+ },
486
+ {
487
+ "id": 584,
488
+ "name": "Python",
489
+ "label": "Python",
490
+ "content_type": "python"
491
+ },
492
+ {
493
+ "id": 586,
494
+ "name": "Needed Errata",
495
+ "label": "Needed_Errata",
496
+ "content_type": "yum"
497
+ },
498
+ {
499
+ "id": 582,
500
+ "name": "Zoo Repo Dos",
501
+ "label": "Zoo_Repo_Dos",
502
+ "content_type": "yum"
503
+ },
504
+ {
505
+ "id": 583,
506
+ "name": "Zoo Repo Uno",
507
+ "label": "Zoo_Repo_Uno",
508
+ "content_type": "yum"
509
+ }
510
+ ],
511
+ "versions": [
512
+ {
513
+ "id": 75,
514
+ "version": "5.0",
515
+ "published": "2022-02-02 11:04:06 -0700",
516
+ "environment_ids": [
517
+ 2,
518
+ 3
519
+ ]
520
+ },
521
+ {
522
+ "id": 76,
523
+ "version": "6.0",
524
+ "published": "2022-02-02 14:39:32 -0700",
525
+ "environment_ids": [
526
+ 1
527
+ ]
528
+ },
529
+ {
530
+ "id": 25,
531
+ "version": "4.0",
532
+ "published": "2022-01-26 11:07:27 -0700",
533
+ "environment_ids": []
534
+ }
535
+ ],
536
+ "components": [
537
+ {
538
+ "id": 19,
539
+ "name": "Io 8.0",
540
+ "content_view_id": 3,
541
+ "version": "8.0",
542
+ "environments": [
543
+ {
544
+ "id": 1,
545
+ "name": "Library",
546
+ "label": "Library"
547
+ }
548
+ ],
549
+ "content_view": {
550
+ "id": 3,
551
+ "name": "Io",
552
+ "label": "Io",
553
+ "description": "",
554
+ "next_version": 9,
555
+ "latest_version": "8.0"
556
+ },
557
+ "repositories": [
558
+ {
559
+ "id": 77,
560
+ "name": "Zoo Repo Uno",
561
+ "label": "Zoo_Repo_Uno",
562
+ "description": null
563
+ },
564
+ {
565
+ "id": 76,
566
+ "name": "Zoo Repo Dos",
567
+ "label": "Zoo_Repo_Dos",
568
+ "description": null
569
+ }
570
+ ]
571
+ },
572
+ {
573
+ "id": 83,
574
+ "name": "Mun 5.0",
575
+ "content_view_id": 5,
576
+ "version": "5.0",
577
+ "environments": [
578
+ {
579
+ "id": 1,
580
+ "name": "Library",
581
+ "label": "Library"
582
+ },
583
+ {
584
+ "id": 3,
585
+ "name": "bob",
586
+ "label": "bob"
587
+ }
588
+ ],
589
+ "content_view": {
590
+ "id": 5,
591
+ "name": "Mun",
592
+ "label": "Mun",
593
+ "description": "",
594
+ "next_version": 6,
595
+ "latest_version": "5.0"
596
+ },
597
+ "repositories": [
598
+ {
599
+ "id": 585,
600
+ "name": "OZtree",
601
+ "label": "OZtree",
602
+ "description": null
603
+ },
604
+ {
605
+ "id": 584,
606
+ "name": "Python",
607
+ "label": "Python",
608
+ "description": null
609
+ },
610
+ {
611
+ "id": 586,
612
+ "name": "Needed Errata",
613
+ "label": "Needed_Errata",
614
+ "description": null
615
+ },
616
+ {
617
+ "id": 582,
618
+ "name": "Zoo Repo Dos",
619
+ "label": "Zoo_Repo_Dos",
620
+ "description": null
621
+ },
622
+ {
623
+ "id": 583,
624
+ "name": "Zoo Repo Uno",
625
+ "label": "Zoo_Repo_Uno",
626
+ "description": null
627
+ }
628
+ ]
629
+ }
630
+ ],
631
+ "content_view_components": [
632
+ {
633
+ "latest": true,
634
+ "id": 1,
635
+ "created_at": "2021-12-16 09:37:07 -0700",
636
+ "updated_at": "2021-12-16 09:37:07 -0700",
637
+ "composite_content_view": {
638
+ "id": 2,
639
+ "name": "Duna",
640
+ "label": "Duna",
641
+ "description": "asdfas",
642
+ "next_version": 7,
643
+ "latest_version": "6.0",
644
+ "version_count": 3
645
+ },
646
+ "content_view": {
647
+ "id": 3,
648
+ "name": "Io",
649
+ "label": "Io",
650
+ "description": "",
651
+ "next_version": 9,
652
+ "latest_version": "8.0",
653
+ "version_count": 4
654
+ },
655
+ "content_view_version": {
656
+ "id": 19,
657
+ "name": "Io 8.0",
658
+ "content_view_id": 3,
659
+ "version": "8.0",
660
+ "content_view": {
661
+ "id": 3,
662
+ "name": "Io",
663
+ "label": "Io",
664
+ "description": ""
665
+ },
666
+ "environments": [
667
+ {
668
+ "id": 1,
669
+ "name": "Library",
670
+ "label": "Library"
671
+ }
672
+ ],
673
+ "repositories": [
674
+ {
675
+ "id": 77,
676
+ "name": "Zoo Repo Uno",
677
+ "label": "Zoo_Repo_Uno",
678
+ "description": null
679
+ },
680
+ {
681
+ "id": 76,
682
+ "name": "Zoo Repo Dos",
683
+ "label": "Zoo_Repo_Dos",
684
+ "description": null
685
+ }
686
+ ]
687
+ },
688
+ "component_content_view_versions": [
689
+ {
690
+ "id": 8,
691
+ "version": "5.0"
692
+ },
693
+ {
694
+ "id": 13,
695
+ "version": "6.0"
696
+ },
697
+ {
698
+ "id": 17,
699
+ "version": "7.0"
700
+ },
701
+ {
702
+ "id": 19,
703
+ "version": "8.0"
704
+ }
705
+ ]
706
+ },
707
+ {
708
+ "latest": true,
709
+ "id": 2,
710
+ "created_at": "2022-01-05 11:21:52 -0700",
711
+ "updated_at": "2022-01-05 11:21:52 -0700",
712
+ "composite_content_view": {
713
+ "id": 2,
714
+ "name": "Duna",
715
+ "label": "Duna",
716
+ "description": "asdfas",
717
+ "next_version": 7,
718
+ "latest_version": "6.0",
719
+ "version_count": 3
720
+ },
721
+ "content_view": {
722
+ "id": 5,
723
+ "name": "Mun",
724
+ "label": "Mun",
725
+ "description": "",
726
+ "next_version": 6,
727
+ "latest_version": "5.0",
728
+ "version_count": 4
729
+ },
730
+ "content_view_version": {
731
+ "id": 83,
732
+ "name": "Mun 5.0",
733
+ "content_view_id": 5,
734
+ "version": "5.0",
735
+ "content_view": {
736
+ "id": 5,
737
+ "name": "Mun",
738
+ "label": "Mun",
739
+ "description": ""
740
+ },
741
+ "environments": [
742
+ {
743
+ "id": 1,
744
+ "name": "Library",
745
+ "label": "Library"
746
+ },
747
+ {
748
+ "id": 3,
749
+ "name": "bob",
750
+ "label": "bob"
751
+ }
752
+ ],
753
+ "repositories": [
754
+ {
755
+ "id": 585,
756
+ "name": "OZtree",
757
+ "label": "OZtree",
758
+ "description": null
759
+ },
760
+ {
761
+ "id": 584,
762
+ "name": "Python",
763
+ "label": "Python",
764
+ "description": null
765
+ },
766
+ {
767
+ "id": 586,
768
+ "name": "Needed Errata",
769
+ "label": "Needed_Errata",
770
+ "description": null
771
+ },
772
+ {
773
+ "id": 582,
774
+ "name": "Zoo Repo Dos",
775
+ "label": "Zoo_Repo_Dos",
776
+ "description": null
777
+ },
778
+ {
779
+ "id": 583,
780
+ "name": "Zoo Repo Uno",
781
+ "label": "Zoo_Repo_Uno",
782
+ "description": null
783
+ }
784
+ ]
785
+ },
786
+ "component_content_view_versions": [
787
+ {
788
+ "id": 29,
789
+ "version": "4.0"
790
+ },
791
+ {
792
+ "id": 9,
793
+ "version": "2.0"
794
+ },
795
+ {
796
+ "id": 15,
797
+ "version": "3.0"
798
+ },
799
+ {
800
+ "id": 83,
801
+ "version": "5.0"
802
+ }
803
+ ]
804
+ }
805
+ ],
806
+ "activation_keys": [],
807
+ "hosts": [],
808
+ "next_version": "7.0",
809
+ "last_published": "2022-02-02 14:39:32 -0700",
810
+ "permissions": {
811
+ "view_content_views": true,
812
+ "edit_content_views": true,
813
+ "destroy_content_views": true,
814
+ "publish_content_views": true,
815
+ "promote_or_remove_content_views": true
816
+ }
817
+ },
818
+ {
819
+ "composite": true,
820
+ "component_ids": [
821
+ 19,
822
+ 83
823
+ ],
824
+ "default": false,
825
+ "version_count": 1,
826
+ "latest_version": "29.0",
827
+ "latest_version_id": 134,
828
+ "auto_publish": true,
829
+ "solve_dependencies": false,
830
+ "import_only": false,
831
+ "related_cv_count": 2,
832
+ "related_composite_cvs": [],
833
+ "repository_ids": [
834
+ 77,
835
+ 76,
836
+ 585,
837
+ 584,
838
+ 586,
839
+ 582,
840
+ 583
841
+ ],
842
+ "id": 6,
843
+ "name": "Eeloo",
844
+ "label": "Eeloo",
845
+ "description": "",
846
+ "organization_id": 1,
847
+ "organization": {
848
+ "name": "Default Organization",
849
+ "label": "Default_Organization",
850
+ "id": 1
851
+ },
852
+ "created_at": "2022-01-05 12:08:40 -0700",
853
+ "updated_at": "2022-02-04 14:58:10 -0700",
854
+ "last_task": {
855
+ "id": "c8e73c57-b96b-4a94-8948-193638c3ea9d",
856
+ "started_at": "2022-02-04 14:58:09 -0700",
857
+ "result": "success",
858
+ "last_sync_words": "11 days"
859
+ },
860
+ "latest_version_environments": [
861
+ {
862
+ "id": 1,
863
+ "name": "Library",
864
+ "label": "Library"
865
+ }
866
+ ],
867
+ "environments": [
868
+ {
869
+ "id": 1,
870
+ "name": "Library",
871
+ "label": "Library",
872
+ "permissions": {
873
+ "readable": true
874
+ }
875
+ }
876
+ ],
877
+ "repositories": [
878
+ {
879
+ "id": 77,
880
+ "name": "Zoo Repo Uno",
881
+ "label": "Zoo_Repo_Uno",
882
+ "content_type": "yum"
883
+ },
884
+ {
885
+ "id": 76,
886
+ "name": "Zoo Repo Dos",
887
+ "label": "Zoo_Repo_Dos",
888
+ "content_type": "yum"
889
+ },
890
+ {
891
+ "id": 585,
892
+ "name": "OZtree",
893
+ "label": "OZtree",
894
+ "content_type": "ostree"
895
+ },
896
+ {
897
+ "id": 584,
898
+ "name": "Python",
899
+ "label": "Python",
900
+ "content_type": "python"
901
+ },
902
+ {
903
+ "id": 586,
904
+ "name": "Needed Errata",
905
+ "label": "Needed_Errata",
906
+ "content_type": "yum"
907
+ },
908
+ {
909
+ "id": 582,
910
+ "name": "Zoo Repo Dos",
911
+ "label": "Zoo_Repo_Dos",
912
+ "content_type": "yum"
913
+ },
914
+ {
915
+ "id": 583,
916
+ "name": "Zoo Repo Uno",
917
+ "label": "Zoo_Repo_Uno",
918
+ "content_type": "yum"
919
+ }
920
+ ],
921
+ "versions": [
922
+ {
923
+ "id": 134,
924
+ "version": "29.0",
925
+ "published": "2022-02-04 14:58:10 -0700",
926
+ "environment_ids": [
927
+ 1
928
+ ]
929
+ }
930
+ ],
931
+ "components": [
932
+ {
933
+ "id": 19,
934
+ "name": "Io 8.0",
935
+ "content_view_id": 3,
936
+ "version": "8.0",
937
+ "environments": [
938
+ {
939
+ "id": 1,
940
+ "name": "Library",
941
+ "label": "Library"
942
+ }
943
+ ],
944
+ "content_view": {
945
+ "id": 3,
946
+ "name": "Io",
947
+ "label": "Io",
948
+ "description": "",
949
+ "next_version": 9,
950
+ "latest_version": "8.0"
951
+ },
952
+ "repositories": [
953
+ {
954
+ "id": 77,
955
+ "name": "Zoo Repo Uno",
956
+ "label": "Zoo_Repo_Uno",
957
+ "description": null
958
+ },
959
+ {
960
+ "id": 76,
961
+ "name": "Zoo Repo Dos",
962
+ "label": "Zoo_Repo_Dos",
963
+ "description": null
964
+ }
965
+ ]
966
+ },
967
+ {
968
+ "id": 83,
969
+ "name": "Mun 5.0",
970
+ "content_view_id": 5,
971
+ "version": "5.0",
972
+ "environments": [
973
+ {
974
+ "id": 1,
975
+ "name": "Library",
976
+ "label": "Library"
977
+ },
978
+ {
979
+ "id": 3,
980
+ "name": "bob",
981
+ "label": "bob"
982
+ }
983
+ ],
984
+ "content_view": {
985
+ "id": 5,
986
+ "name": "Mun",
987
+ "label": "Mun",
988
+ "description": "",
989
+ "next_version": 6,
990
+ "latest_version": "5.0"
991
+ },
992
+ "repositories": [
993
+ {
994
+ "id": 585,
995
+ "name": "OZtree",
996
+ "label": "OZtree",
997
+ "description": null
998
+ },
999
+ {
1000
+ "id": 584,
1001
+ "name": "Python",
1002
+ "label": "Python",
1003
+ "description": null
1004
+ },
1005
+ {
1006
+ "id": 586,
1007
+ "name": "Needed Errata",
1008
+ "label": "Needed_Errata",
1009
+ "description": null
1010
+ },
1011
+ {
1012
+ "id": 582,
1013
+ "name": "Zoo Repo Dos",
1014
+ "label": "Zoo_Repo_Dos",
1015
+ "description": null
1016
+ },
1017
+ {
1018
+ "id": 583,
1019
+ "name": "Zoo Repo Uno",
1020
+ "label": "Zoo_Repo_Uno",
1021
+ "description": null
1022
+ }
1023
+ ]
1024
+ }
1025
+ ],
1026
+ "content_view_components": [
1027
+ {
1028
+ "latest": true,
1029
+ "id": 3,
1030
+ "created_at": "2022-01-05 12:08:49 -0700",
1031
+ "updated_at": "2022-01-05 12:08:49 -0700",
1032
+ "composite_content_view": {
1033
+ "id": 6,
1034
+ "name": "Eeloo",
1035
+ "label": "Eeloo",
1036
+ "description": "",
1037
+ "next_version": 30,
1038
+ "latest_version": "29.0",
1039
+ "version_count": 1
1040
+ },
1041
+ "content_view": {
1042
+ "id": 3,
1043
+ "name": "Io",
1044
+ "label": "Io",
1045
+ "description": "",
1046
+ "next_version": 9,
1047
+ "latest_version": "8.0",
1048
+ "version_count": 4
1049
+ },
1050
+ "content_view_version": {
1051
+ "id": 19,
1052
+ "name": "Io 8.0",
1053
+ "content_view_id": 3,
1054
+ "version": "8.0",
1055
+ "content_view": {
1056
+ "id": 3,
1057
+ "name": "Io",
1058
+ "label": "Io",
1059
+ "description": ""
1060
+ },
1061
+ "environments": [
1062
+ {
1063
+ "id": 1,
1064
+ "name": "Library",
1065
+ "label": "Library"
1066
+ }
1067
+ ],
1068
+ "repositories": [
1069
+ {
1070
+ "id": 77,
1071
+ "name": "Zoo Repo Uno",
1072
+ "label": "Zoo_Repo_Uno",
1073
+ "description": null
1074
+ },
1075
+ {
1076
+ "id": 76,
1077
+ "name": "Zoo Repo Dos",
1078
+ "label": "Zoo_Repo_Dos",
1079
+ "description": null
1080
+ }
1081
+ ]
1082
+ },
1083
+ "component_content_view_versions": [
1084
+ {
1085
+ "id": 8,
1086
+ "version": "5.0"
1087
+ },
1088
+ {
1089
+ "id": 13,
1090
+ "version": "6.0"
1091
+ },
1092
+ {
1093
+ "id": 17,
1094
+ "version": "7.0"
1095
+ },
1096
+ {
1097
+ "id": 19,
1098
+ "version": "8.0"
1099
+ }
1100
+ ]
1101
+ },
1102
+ {
1103
+ "latest": true,
1104
+ "id": 4,
1105
+ "created_at": "2022-01-05 12:08:49 -0700",
1106
+ "updated_at": "2022-01-05 12:08:49 -0700",
1107
+ "composite_content_view": {
1108
+ "id": 6,
1109
+ "name": "Eeloo",
1110
+ "label": "Eeloo",
1111
+ "description": "",
1112
+ "next_version": 30,
1113
+ "latest_version": "29.0",
1114
+ "version_count": 1
1115
+ },
1116
+ "content_view": {
1117
+ "id": 5,
1118
+ "name": "Mun",
1119
+ "label": "Mun",
1120
+ "description": "",
1121
+ "next_version": 6,
1122
+ "latest_version": "5.0",
1123
+ "version_count": 4
1124
+ },
1125
+ "content_view_version": {
1126
+ "id": 83,
1127
+ "name": "Mun 5.0",
1128
+ "content_view_id": 5,
1129
+ "version": "5.0",
1130
+ "content_view": {
1131
+ "id": 5,
1132
+ "name": "Mun",
1133
+ "label": "Mun",
1134
+ "description": ""
1135
+ },
1136
+ "environments": [
1137
+ {
1138
+ "id": 1,
1139
+ "name": "Library",
1140
+ "label": "Library"
1141
+ },
1142
+ {
1143
+ "id": 3,
1144
+ "name": "bob",
1145
+ "label": "bob"
1146
+ }
1147
+ ],
1148
+ "repositories": [
1149
+ {
1150
+ "id": 585,
1151
+ "name": "OZtree",
1152
+ "label": "OZtree",
1153
+ "description": null
1154
+ },
1155
+ {
1156
+ "id": 584,
1157
+ "name": "Python",
1158
+ "label": "Python",
1159
+ "description": null
1160
+ },
1161
+ {
1162
+ "id": 586,
1163
+ "name": "Needed Errata",
1164
+ "label": "Needed_Errata",
1165
+ "description": null
1166
+ },
1167
+ {
1168
+ "id": 582,
1169
+ "name": "Zoo Repo Dos",
1170
+ "label": "Zoo_Repo_Dos",
1171
+ "description": null
1172
+ },
1173
+ {
1174
+ "id": 583,
1175
+ "name": "Zoo Repo Uno",
1176
+ "label": "Zoo_Repo_Uno",
1177
+ "description": null
1178
+ }
1179
+ ]
1180
+ },
1181
+ "component_content_view_versions": [
1182
+ {
1183
+ "id": 29,
1184
+ "version": "4.0"
1185
+ },
1186
+ {
1187
+ "id": 9,
1188
+ "version": "2.0"
1189
+ },
1190
+ {
1191
+ "id": 15,
1192
+ "version": "3.0"
1193
+ },
1194
+ {
1195
+ "id": 83,
1196
+ "version": "5.0"
1197
+ }
1198
+ ]
1199
+ }
1200
+ ],
1201
+ "activation_keys": [],
1202
+ "hosts": [],
1203
+ "next_version": "30.0",
1204
+ "last_published": "2022-02-04 14:58:10 -0700",
1205
+ "permissions": {
1206
+ "view_content_views": true,
1207
+ "edit_content_views": true,
1208
+ "destroy_content_views": true,
1209
+ "publish_content_views": true,
1210
+ "promote_or_remove_content_views": true
1211
+ }
1212
+ },
1213
+ {
1214
+ "composite": false,
1215
+ "component_ids": [],
1216
+ "default": false,
1217
+ "version_count": 4,
1218
+ "latest_version": "8.0",
1219
+ "latest_version_id": 19,
1220
+ "auto_publish": false,
1221
+ "solve_dependencies": false,
1222
+ "import_only": false,
1223
+ "related_cv_count": 2,
1224
+ "related_composite_cvs": [
1225
+ {
1226
+ "id": 2,
1227
+ "name": "Duna"
1228
+ },
1229
+ {
1230
+ "id": 6,
1231
+ "name": "Eeloo"
1232
+ }
1233
+ ],
1234
+ "repository_ids": [
1235
+ 2,
1236
+ 1
1237
+ ],
1238
+ "id": 3,
1239
+ "name": "Io",
1240
+ "label": "Io",
1241
+ "description": "",
1242
+ "organization_id": 1,
1243
+ "organization": {
1244
+ "name": "Default Organization",
1245
+ "label": "Default_Organization",
1246
+ "id": 1
1247
+ },
1248
+ "created_at": "2021-12-16 09:36:41 -0700",
1249
+ "updated_at": "2022-01-13 15:06:46 -0700",
1250
+ "last_task": {
1251
+ "id": "3c3c74e1-3584-4045-841f-ca7e62a2a128",
1252
+ "started_at": "2022-01-13 15:06:46 -0700",
1253
+ "result": "success",
1254
+ "last_sync_words": "about 1 month"
1255
+ },
1256
+ "latest_version_environments": [
1257
+ {
1258
+ "id": 1,
1259
+ "name": "Library",
1260
+ "label": "Library"
1261
+ }
1262
+ ],
1263
+ "environments": [
1264
+ {
1265
+ "id": 1,
1266
+ "name": "Library",
1267
+ "label": "Library",
1268
+ "permissions": {
1269
+ "readable": true
1270
+ }
1271
+ }
1272
+ ],
1273
+ "repositories": [
1274
+ {
1275
+ "id": 2,
1276
+ "name": "Zoo Repo Dos",
1277
+ "label": "Zoo_Repo_Dos",
1278
+ "content_type": "yum"
1279
+ },
1280
+ {
1281
+ "id": 1,
1282
+ "name": "Zoo Repo Uno",
1283
+ "label": "Zoo_Repo_Uno",
1284
+ "content_type": "yum"
1285
+ }
1286
+ ],
1287
+ "versions": [
1288
+ {
1289
+ "id": 8,
1290
+ "version": "5.0",
1291
+ "published": "2021-12-20 13:16:28 -0700",
1292
+ "environment_ids": []
1293
+ },
1294
+ {
1295
+ "id": 13,
1296
+ "version": "6.0",
1297
+ "published": "2022-01-05 12:11:01 -0700",
1298
+ "environment_ids": []
1299
+ },
1300
+ {
1301
+ "id": 17,
1302
+ "version": "7.0",
1303
+ "published": "2022-01-13 14:41:11 -0700",
1304
+ "environment_ids": []
1305
+ },
1306
+ {
1307
+ "id": 19,
1308
+ "version": "8.0",
1309
+ "published": "2022-01-13 15:06:46 -0700",
1310
+ "environment_ids": [
1311
+ 1
1312
+ ]
1313
+ }
1314
+ ],
1315
+ "components": [],
1316
+ "content_view_components": [],
1317
+ "activation_keys": [],
1318
+ "hosts": [],
1319
+ "next_version": "9.0",
1320
+ "last_published": "2022-01-13 15:06:46 -0700",
1321
+ "permissions": {
1322
+ "view_content_views": true,
1323
+ "edit_content_views": true,
1324
+ "destroy_content_views": true,
1325
+ "publish_content_views": true,
1326
+ "promote_or_remove_content_views": true
1327
+ }
1328
+ },
1329
+ {
1330
+ "composite": false,
1331
+ "component_ids": [],
1332
+ "default": false,
1333
+ "version_count": 4,
1334
+ "latest_version": "5.0",
1335
+ "latest_version_id": 83,
1336
+ "auto_publish": false,
1337
+ "solve_dependencies": false,
1338
+ "import_only": false,
1339
+ "related_cv_count": 2,
1340
+ "related_composite_cvs": [
1341
+ {
1342
+ "id": 2,
1343
+ "name": "Duna"
1344
+ },
1345
+ {
1346
+ "id": 6,
1347
+ "name": "Eeloo"
1348
+ }
1349
+ ],
1350
+ "repository_ids": [
1351
+ 11,
1352
+ 2,
1353
+ 1,
1354
+ 32,
1355
+ 61
1356
+ ],
1357
+ "id": 5,
1358
+ "name": "Mun",
1359
+ "label": "Mun",
1360
+ "description": "",
1361
+ "organization_id": 1,
1362
+ "organization": {
1363
+ "name": "Default Organization",
1364
+ "label": "Default_Organization",
1365
+ "id": 1
1366
+ },
1367
+ "created_at": "2021-12-20 13:11:42 -0700",
1368
+ "updated_at": "2022-02-03 18:02:51 -0700",
1369
+ "last_task": {
1370
+ "id": "3cb091f6-1dcc-47d5-9cf1-6c1ebfc6a56a",
1371
+ "started_at": "2022-02-03 18:02:51 -0700",
1372
+ "result": "success",
1373
+ "last_sync_words": "12 days"
1374
+ },
1375
+ "latest_version_environments": [
1376
+ {
1377
+ "id": 1,
1378
+ "name": "Library",
1379
+ "label": "Library"
1380
+ },
1381
+ {
1382
+ "id": 3,
1383
+ "name": "bob",
1384
+ "label": "bob"
1385
+ }
1386
+ ],
1387
+ "environments": [
1388
+ {
1389
+ "id": 1,
1390
+ "name": "Library",
1391
+ "label": "Library",
1392
+ "permissions": {
1393
+ "readable": true
1394
+ }
1395
+ },
1396
+ {
1397
+ "id": 3,
1398
+ "name": "bob",
1399
+ "label": "bob",
1400
+ "permissions": {
1401
+ "readable": true
1402
+ }
1403
+ },
1404
+ {
1405
+ "id": 2,
1406
+ "name": "Steve",
1407
+ "label": "Steve",
1408
+ "permissions": {
1409
+ "readable": true
1410
+ }
1411
+ }
1412
+ ],
1413
+ "repositories": [
1414
+ {
1415
+ "id": 11,
1416
+ "name": "Python",
1417
+ "label": "Python",
1418
+ "content_type": "python"
1419
+ },
1420
+ {
1421
+ "id": 2,
1422
+ "name": "Zoo Repo Dos",
1423
+ "label": "Zoo_Repo_Dos",
1424
+ "content_type": "yum"
1425
+ },
1426
+ {
1427
+ "id": 1,
1428
+ "name": "Zoo Repo Uno",
1429
+ "label": "Zoo_Repo_Uno",
1430
+ "content_type": "yum"
1431
+ },
1432
+ {
1433
+ "id": 32,
1434
+ "name": "OZtree",
1435
+ "label": "OZtree",
1436
+ "content_type": "ostree"
1437
+ },
1438
+ {
1439
+ "id": 61,
1440
+ "name": "Needed Errata",
1441
+ "label": "Needed_Errata",
1442
+ "content_type": "yum"
1443
+ }
1444
+ ],
1445
+ "versions": [
1446
+ {
1447
+ "id": 29,
1448
+ "version": "4.0",
1449
+ "published": "2022-01-27 16:01:59 -0700",
1450
+ "environment_ids": [
1451
+ 2
1452
+ ]
1453
+ },
1454
+ {
1455
+ "id": 9,
1456
+ "version": "2.0",
1457
+ "published": "2021-12-20 14:05:08 -0700",
1458
+ "environment_ids": []
1459
+ },
1460
+ {
1461
+ "id": 15,
1462
+ "version": "3.0",
1463
+ "published": "2022-01-12 13:22:06 -0700",
1464
+ "environment_ids": []
1465
+ },
1466
+ {
1467
+ "id": 83,
1468
+ "version": "5.0",
1469
+ "published": "2022-02-03 18:02:51 -0700",
1470
+ "environment_ids": [
1471
+ 1,
1472
+ 3
1473
+ ]
1474
+ }
1475
+ ],
1476
+ "components": [],
1477
+ "content_view_components": [],
1478
+ "activation_keys": [
1479
+ {
1480
+ "id": 4,
1481
+ "name": "Burp"
1482
+ },
1483
+ {
1484
+ "id": 1,
1485
+ "name": "host"
1486
+ },
1487
+ {
1488
+ "id": 2,
1489
+ "name": "mun3"
1490
+ }
1491
+ ],
1492
+ "hosts": [],
1493
+ "next_version": "6.0",
1494
+ "last_published": "2022-02-03 18:02:51 -0700",
1495
+ "permissions": {
1496
+ "view_content_views": true,
1497
+ "edit_content_views": true,
1498
+ "destroy_content_views": true,
1499
+ "publish_content_views": true,
1500
+ "promote_or_remove_content_views": true
1501
+ }
1502
+ }
1503
+ ]
1504
+ }