cloudsmith-api 2.0.31__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 (697) hide show
  1. cloudsmith_api/__init__.py +366 -0
  2. cloudsmith_api/api/__init__.py +28 -0
  3. cloudsmith_api/api/audit_log_api.py +264 -0
  4. cloudsmith_api/api/badges_api.py +217 -0
  5. cloudsmith_api/api/broadcasts_api.py +137 -0
  6. cloudsmith_api/api/bulk_action_api.py +137 -0
  7. cloudsmith_api/api/distros_api.py +224 -0
  8. cloudsmith_api/api/entitlements_api.py +1351 -0
  9. cloudsmith_api/api/files_api.py +621 -0
  10. cloudsmith_api/api/formats_api.py +224 -0
  11. cloudsmith_api/api/metrics_api.py +407 -0
  12. cloudsmith_api/api/namespaces_api.py +232 -0
  13. cloudsmith_api/api/openid_api.py +137 -0
  14. cloudsmith_api/api/orgs_api.py +8230 -0
  15. cloudsmith_api/api/packages_api.py +8253 -0
  16. cloudsmith_api/api/quota_api.py +430 -0
  17. cloudsmith_api/api/rates_api.py +125 -0
  18. cloudsmith_api/api/recycle_bin_api.py +248 -0
  19. cloudsmith_api/api/repos_api.py +18893 -0
  20. cloudsmith_api/api/status_api.py +125 -0
  21. cloudsmith_api/api/storage_regions_api.py +224 -0
  22. cloudsmith_api/api/user_api.py +509 -0
  23. cloudsmith_api/api/users_api.py +133 -0
  24. cloudsmith_api/api/vulnerabilities_api.py +502 -0
  25. cloudsmith_api/api/webhooks_api.py +609 -0
  26. cloudsmith_api/api_client.py +639 -0
  27. cloudsmith_api/configuration.py +253 -0
  28. cloudsmith_api/models/__init__.py +337 -0
  29. cloudsmith_api/models/allocated_limit.py +226 -0
  30. cloudsmith_api/models/allocated_limit_raw.py +202 -0
  31. cloudsmith_api/models/alpine_package_upload.py +2560 -0
  32. cloudsmith_api/models/alpine_package_upload_request.py +278 -0
  33. cloudsmith_api/models/alpine_upstream.py +1001 -0
  34. cloudsmith_api/models/alpine_upstream_request.py +595 -0
  35. cloudsmith_api/models/alpine_upstream_request_patch.py +593 -0
  36. cloudsmith_api/models/architecture.py +160 -0
  37. cloudsmith_api/models/broadcast_token.py +153 -0
  38. cloudsmith_api/models/broadcast_token_input.py +161 -0
  39. cloudsmith_api/models/cargo_package_upload.py +2560 -0
  40. cloudsmith_api/models/cargo_package_upload_request.py +246 -0
  41. cloudsmith_api/models/cargo_upstream.py +872 -0
  42. cloudsmith_api/models/cargo_upstream_request.py +529 -0
  43. cloudsmith_api/models/cargo_upstream_request_patch.py +527 -0
  44. cloudsmith_api/models/cocoapods_package_upload.py +2560 -0
  45. cloudsmith_api/models/cocoapods_package_upload_request.py +246 -0
  46. cloudsmith_api/models/common_bandwidth_metrics.py +206 -0
  47. cloudsmith_api/models/common_bandwidth_metrics_value.py +193 -0
  48. cloudsmith_api/models/common_downloads_metrics.py +206 -0
  49. cloudsmith_api/models/common_downloads_metrics_value.py +125 -0
  50. cloudsmith_api/models/common_metrics.py +236 -0
  51. cloudsmith_api/models/composer_package_upload.py +2563 -0
  52. cloudsmith_api/models/composer_package_upload_request.py +277 -0
  53. cloudsmith_api/models/composer_upstream.py +872 -0
  54. cloudsmith_api/models/composer_upstream_request.py +529 -0
  55. cloudsmith_api/models/composer_upstream_request_patch.py +527 -0
  56. cloudsmith_api/models/conan_package_upload.py +2634 -0
  57. cloudsmith_api/models/conan_package_upload_request.py +472 -0
  58. cloudsmith_api/models/conda_package_upload.py +2560 -0
  59. cloudsmith_api/models/conda_package_upload_request.py +246 -0
  60. cloudsmith_api/models/conda_upstream.py +872 -0
  61. cloudsmith_api/models/conda_upstream_request.py +529 -0
  62. cloudsmith_api/models/conda_upstream_request_patch.py +527 -0
  63. cloudsmith_api/models/connected_repository.py +311 -0
  64. cloudsmith_api/models/connected_repository_request.py +190 -0
  65. cloudsmith_api/models/connected_repository_request_patch.py +189 -0
  66. cloudsmith_api/models/cran_package_upload.py +2594 -0
  67. cloudsmith_api/models/cran_package_upload_request.py +311 -0
  68. cloudsmith_api/models/cran_upstream.py +872 -0
  69. cloudsmith_api/models/cran_upstream_request.py +529 -0
  70. cloudsmith_api/models/cran_upstream_request_patch.py +527 -0
  71. cloudsmith_api/models/dart_package_upload.py +2560 -0
  72. cloudsmith_api/models/dart_package_upload_request.py +246 -0
  73. cloudsmith_api/models/dart_upstream.py +872 -0
  74. cloudsmith_api/models/dart_upstream_request.py +529 -0
  75. cloudsmith_api/models/dart_upstream_request_patch.py +527 -0
  76. cloudsmith_api/models/deb_package_upload.py +2560 -0
  77. cloudsmith_api/models/deb_package_upload_request.py +377 -0
  78. cloudsmith_api/models/deb_upstream.py +1152 -0
  79. cloudsmith_api/models/deb_upstream_request.py +748 -0
  80. cloudsmith_api/models/deb_upstream_request_patch.py +745 -0
  81. cloudsmith_api/models/distribution.py +217 -0
  82. cloudsmith_api/models/distribution_full.py +300 -0
  83. cloudsmith_api/models/distribution_version.py +160 -0
  84. cloudsmith_api/models/docker_package_upload.py +2560 -0
  85. cloudsmith_api/models/docker_package_upload_request.py +246 -0
  86. cloudsmith_api/models/docker_upstream.py +760 -0
  87. cloudsmith_api/models/docker_upstream_request.py +591 -0
  88. cloudsmith_api/models/docker_upstream_request_patch.py +589 -0
  89. cloudsmith_api/models/dynamic_mapping.py +162 -0
  90. cloudsmith_api/models/entitlement_usage_metrics.py +125 -0
  91. cloudsmith_api/models/error_detail.py +158 -0
  92. cloudsmith_api/models/eula.py +166 -0
  93. cloudsmith_api/models/format.py +369 -0
  94. cloudsmith_api/models/format_support.py +299 -0
  95. cloudsmith_api/models/format_support_upstream.py +350 -0
  96. cloudsmith_api/models/generic_package_upload.py +2566 -0
  97. cloudsmith_api/models/generic_package_upload_request.py +343 -0
  98. cloudsmith_api/models/generic_upstream.py +906 -0
  99. cloudsmith_api/models/generic_upstream_request.py +563 -0
  100. cloudsmith_api/models/generic_upstream_request_patch.py +561 -0
  101. cloudsmith_api/models/geo_ip_location.py +296 -0
  102. cloudsmith_api/models/go_package_upload.py +2560 -0
  103. cloudsmith_api/models/go_package_upload_request.py +246 -0
  104. cloudsmith_api/models/go_upstream.py +872 -0
  105. cloudsmith_api/models/go_upstream_request.py +529 -0
  106. cloudsmith_api/models/go_upstream_request_patch.py +527 -0
  107. cloudsmith_api/models/helm_package_upload.py +2560 -0
  108. cloudsmith_api/models/helm_package_upload_request.py +277 -0
  109. cloudsmith_api/models/helm_upstream.py +872 -0
  110. cloudsmith_api/models/helm_upstream_request.py +529 -0
  111. cloudsmith_api/models/helm_upstream_request_patch.py +527 -0
  112. cloudsmith_api/models/hex_package_upload.py +2560 -0
  113. cloudsmith_api/models/hex_package_upload_request.py +246 -0
  114. cloudsmith_api/models/hex_upstream.py +872 -0
  115. cloudsmith_api/models/hex_upstream_request.py +529 -0
  116. cloudsmith_api/models/hex_upstream_request_patch.py +527 -0
  117. cloudsmith_api/models/history.py +265 -0
  118. cloudsmith_api/models/history_fieldset.py +179 -0
  119. cloudsmith_api/models/history_fieldset_raw.py +179 -0
  120. cloudsmith_api/models/huggingface_package_upload.py +2560 -0
  121. cloudsmith_api/models/huggingface_package_upload_request.py +246 -0
  122. cloudsmith_api/models/huggingface_upstream.py +872 -0
  123. cloudsmith_api/models/huggingface_upstream_request.py +529 -0
  124. cloudsmith_api/models/huggingface_upstream_request_patch.py +527 -0
  125. cloudsmith_api/models/inline_response200.py +238 -0
  126. cloudsmith_api/models/inline_response2001.py +182 -0
  127. cloudsmith_api/models/inline_response2002.py +125 -0
  128. cloudsmith_api/models/inline_response2003.py +125 -0
  129. cloudsmith_api/models/inline_response2004.py +125 -0
  130. cloudsmith_api/models/luarocks_package_upload.py +2560 -0
  131. cloudsmith_api/models/luarocks_package_upload_request.py +246 -0
  132. cloudsmith_api/models/maven_package_upload.py +2714 -0
  133. cloudsmith_api/models/maven_package_upload_request.py +611 -0
  134. cloudsmith_api/models/maven_upstream.py +1062 -0
  135. cloudsmith_api/models/maven_upstream_request.py +658 -0
  136. cloudsmith_api/models/maven_upstream_request_patch.py +656 -0
  137. cloudsmith_api/models/mcp_package_upload.py +2563 -0
  138. cloudsmith_api/models/mcp_package_upload_request.py +277 -0
  139. cloudsmith_api/models/member_teams.py +192 -0
  140. cloudsmith_api/models/namespace.py +211 -0
  141. cloudsmith_api/models/namespace_audit_log.py +562 -0
  142. cloudsmith_api/models/nested_license_policy.py +374 -0
  143. cloudsmith_api/models/nested_vulnerability_policy.py +382 -0
  144. cloudsmith_api/models/nested_vulnerability_scan_results.py +298 -0
  145. cloudsmith_api/models/nix_package_upload.py +2563 -0
  146. cloudsmith_api/models/nix_package_upload_request.py +308 -0
  147. cloudsmith_api/models/nix_upstream.py +872 -0
  148. cloudsmith_api/models/nix_upstream_request.py +529 -0
  149. cloudsmith_api/models/nix_upstream_request_patch.py +527 -0
  150. cloudsmith_api/models/npm_package_upload.py +2560 -0
  151. cloudsmith_api/models/npm_package_upload_request.py +277 -0
  152. cloudsmith_api/models/npm_upstream.py +907 -0
  153. cloudsmith_api/models/npm_upstream_request.py +564 -0
  154. cloudsmith_api/models/npm_upstream_request_patch.py +562 -0
  155. cloudsmith_api/models/nuget_package_upload.py +2560 -0
  156. cloudsmith_api/models/nuget_package_upload_request.py +277 -0
  157. cloudsmith_api/models/nuget_upstream.py +872 -0
  158. cloudsmith_api/models/nuget_upstream_request.py +529 -0
  159. cloudsmith_api/models/nuget_upstream_request_patch.py +527 -0
  160. cloudsmith_api/models/oidc.py +96 -0
  161. cloudsmith_api/models/oidc1.py +126 -0
  162. cloudsmith_api/models/oidc_request.py +162 -0
  163. cloudsmith_api/models/organization.py +294 -0
  164. cloudsmith_api/models/organization_custom_domain_nested_repo.py +160 -0
  165. cloudsmith_api/models/organization_custom_domains.py +598 -0
  166. cloudsmith_api/models/organization_group_sync.py +259 -0
  167. cloudsmith_api/models/organization_group_sync_request.py +254 -0
  168. cloudsmith_api/models/organization_group_sync_status.py +124 -0
  169. cloudsmith_api/models/organization_invite.py +386 -0
  170. cloudsmith_api/models/organization_invite_extend.py +388 -0
  171. cloudsmith_api/models/organization_invite_request.py +221 -0
  172. cloudsmith_api/models/organization_invite_update.py +133 -0
  173. cloudsmith_api/models/organization_invite_update_request_patch.py +133 -0
  174. cloudsmith_api/models/organization_membership.py +469 -0
  175. cloudsmith_api/models/organization_membership_request_patch.py +96 -0
  176. cloudsmith_api/models/organization_membership_role_update.py +417 -0
  177. cloudsmith_api/models/organization_membership_role_update_request_patch.py +131 -0
  178. cloudsmith_api/models/organization_membership_visibility_update.py +417 -0
  179. cloudsmith_api/models/organization_membership_visibility_update_request_patch.py +131 -0
  180. cloudsmith_api/models/organization_package_license_policy.py +355 -0
  181. cloudsmith_api/models/organization_package_license_policy_request.py +271 -0
  182. cloudsmith_api/models/organization_package_license_policy_request_patch.py +269 -0
  183. cloudsmith_api/models/organization_package_vulnerability_policy.py +363 -0
  184. cloudsmith_api/models/organization_package_vulnerability_policy_request.py +279 -0
  185. cloudsmith_api/models/organization_package_vulnerability_policy_request_patch.py +278 -0
  186. cloudsmith_api/models/organization_saml_auth.py +276 -0
  187. cloudsmith_api/models/organization_saml_auth_request_patch.py +274 -0
  188. cloudsmith_api/models/organization_team.py +264 -0
  189. cloudsmith_api/models/organization_team_invite.py +168 -0
  190. cloudsmith_api/models/organization_team_members.py +127 -0
  191. cloudsmith_api/models/organization_team_request.py +232 -0
  192. cloudsmith_api/models/organization_team_request_patch.py +231 -0
  193. cloudsmith_api/models/organization_team_service_member.py +195 -0
  194. cloudsmith_api/models/organization_usage.py +210 -0
  195. cloudsmith_api/models/organization_usage_update.py +182 -0
  196. cloudsmith_api/models/organization_usage_update_request_patch.py +182 -0
  197. cloudsmith_api/models/p2_package_upload.py +2560 -0
  198. cloudsmith_api/models/p2_package_upload_request.py +246 -0
  199. cloudsmith_api/models/package.py +2617 -0
  200. cloudsmith_api/models/package_bulk_action.py +228 -0
  201. cloudsmith_api/models/package_bulk_action_response.py +185 -0
  202. cloudsmith_api/models/package_copy.py +2619 -0
  203. cloudsmith_api/models/package_copy_request.py +212 -0
  204. cloudsmith_api/models/package_deny_policy.py +366 -0
  205. cloudsmith_api/models/package_deny_policy_request.py +216 -0
  206. cloudsmith_api/models/package_deny_policy_request_patch.py +215 -0
  207. cloudsmith_api/models/package_dependencies.py +125 -0
  208. cloudsmith_api/models/package_dependency.py +228 -0
  209. cloudsmith_api/models/package_detail.py +2645 -0
  210. cloudsmith_api/models/package_file.py +475 -0
  211. cloudsmith_api/models/package_file_parts_upload.py +191 -0
  212. cloudsmith_api/models/package_file_upload.py +247 -0
  213. cloudsmith_api/models/package_file_upload_request.py +236 -0
  214. cloudsmith_api/models/package_group.py +261 -0
  215. cloudsmith_api/models/package_license.py +276 -0
  216. cloudsmith_api/models/package_license_policy_evaluation_request.py +293 -0
  217. cloudsmith_api/models/package_license_policy_evaluation_request_request.py +96 -0
  218. cloudsmith_api/models/package_license_policy_violation_log.py +205 -0
  219. cloudsmith_api/models/package_license_policy_violation_log_cursor_page.py +177 -0
  220. cloudsmith_api/models/package_license_request_patch.py +309 -0
  221. cloudsmith_api/models/package_move.py +2619 -0
  222. cloudsmith_api/models/package_move_request.py +184 -0
  223. cloudsmith_api/models/package_quarantine.py +2589 -0
  224. cloudsmith_api/models/package_quarantine_request.py +208 -0
  225. cloudsmith_api/models/package_recycle_bin.py +197 -0
  226. cloudsmith_api/models/package_resync.py +2617 -0
  227. cloudsmith_api/models/package_status.py +762 -0
  228. cloudsmith_api/models/package_tag.py +2619 -0
  229. cloudsmith_api/models/package_tag_request.py +241 -0
  230. cloudsmith_api/models/package_usage_metrics.py +125 -0
  231. cloudsmith_api/models/package_version_badge.py +96 -0
  232. cloudsmith_api/models/package_vulnerability.py +264 -0
  233. cloudsmith_api/models/package_vulnerability_policy_evaluation_request.py +293 -0
  234. cloudsmith_api/models/package_vulnerability_policy_evaluation_request_request.py +96 -0
  235. cloudsmith_api/models/package_vulnerability_policy_violation_log.py +232 -0
  236. cloudsmith_api/models/package_vulnerability_policy_violation_log_cursor_page.py +177 -0
  237. cloudsmith_api/models/provider_settings.py +347 -0
  238. cloudsmith_api/models/provider_settings_write.py +375 -0
  239. cloudsmith_api/models/provider_settings_write_request.py +307 -0
  240. cloudsmith_api/models/provider_settings_write_request_patch.py +303 -0
  241. cloudsmith_api/models/python_package_upload.py +2560 -0
  242. cloudsmith_api/models/python_package_upload_request.py +246 -0
  243. cloudsmith_api/models/python_upstream.py +907 -0
  244. cloudsmith_api/models/python_upstream_request.py +564 -0
  245. cloudsmith_api/models/python_upstream_request_patch.py +562 -0
  246. cloudsmith_api/models/quota.py +125 -0
  247. cloudsmith_api/models/quota_history.py +125 -0
  248. cloudsmith_api/models/rate_check.py +269 -0
  249. cloudsmith_api/models/raw_package_upload.py +2572 -0
  250. cloudsmith_api/models/raw_package_upload_request.py +404 -0
  251. cloudsmith_api/models/recycle_bin_package.py +829 -0
  252. cloudsmith_api/models/repository.py +2221 -0
  253. cloudsmith_api/models/repository_audit_log.py +470 -0
  254. cloudsmith_api/models/repository_create.py +2221 -0
  255. cloudsmith_api/models/repository_create_request.py +1546 -0
  256. cloudsmith_api/models/repository_ecdsa_key.py +296 -0
  257. cloudsmith_api/models/repository_ecdsa_key_create.py +161 -0
  258. cloudsmith_api/models/repository_ed25519_key.py +299 -0
  259. cloudsmith_api/models/repository_ed25519_key_create.py +161 -0
  260. cloudsmith_api/models/repository_geo_ip_cidr.py +156 -0
  261. cloudsmith_api/models/repository_geo_ip_country_code.py +156 -0
  262. cloudsmith_api/models/repository_geo_ip_rules.py +152 -0
  263. cloudsmith_api/models/repository_geo_ip_rules_request.py +152 -0
  264. cloudsmith_api/models/repository_geo_ip_rules_request_patch.py +150 -0
  265. cloudsmith_api/models/repository_geo_ip_status.py +126 -0
  266. cloudsmith_api/models/repository_geo_ip_test_address.py +127 -0
  267. cloudsmith_api/models/repository_geo_ip_test_address_response.py +127 -0
  268. cloudsmith_api/models/repository_geo_ip_test_address_response_dict.py +223 -0
  269. cloudsmith_api/models/repository_gpg_key.py +298 -0
  270. cloudsmith_api/models/repository_gpg_key_create.py +161 -0
  271. cloudsmith_api/models/repository_privilege_dict.py +236 -0
  272. cloudsmith_api/models/repository_privilege_input.py +127 -0
  273. cloudsmith_api/models/repository_privilege_input_request.py +127 -0
  274. cloudsmith_api/models/repository_privilege_input_request_patch.py +126 -0
  275. cloudsmith_api/models/repository_request_patch.py +1517 -0
  276. cloudsmith_api/models/repository_retention_rules.py +340 -0
  277. cloudsmith_api/models/repository_retention_rules_request_patch.py +340 -0
  278. cloudsmith_api/models/repository_rsa_key.py +296 -0
  279. cloudsmith_api/models/repository_rsa_key_create.py +161 -0
  280. cloudsmith_api/models/repository_token.py +1236 -0
  281. cloudsmith_api/models/repository_token_action.py +96 -0
  282. cloudsmith_api/models/repository_token_private_broadcasts.py +127 -0
  283. cloudsmith_api/models/repository_token_private_broadcasts_request.py +127 -0
  284. cloudsmith_api/models/repository_token_refresh.py +1235 -0
  285. cloudsmith_api/models/repository_token_refresh_request.py +523 -0
  286. cloudsmith_api/models/repository_token_request.py +553 -0
  287. cloudsmith_api/models/repository_token_request_patch.py +552 -0
  288. cloudsmith_api/models/repository_token_sync.py +126 -0
  289. cloudsmith_api/models/repository_token_sync_request.py +130 -0
  290. cloudsmith_api/models/repository_transfer_region.py +126 -0
  291. cloudsmith_api/models/repository_transfer_region_request.py +126 -0
  292. cloudsmith_api/models/repository_webhook.py +871 -0
  293. cloudsmith_api/models/repository_webhook_request.py +471 -0
  294. cloudsmith_api/models/repository_webhook_request_patch.py +468 -0
  295. cloudsmith_api/models/repository_x509_ecdsa_certificate.py +375 -0
  296. cloudsmith_api/models/repository_x509_rsa_certificate.py +375 -0
  297. cloudsmith_api/models/resources_rate_check.py +126 -0
  298. cloudsmith_api/models/respository_geo_ip_enable_disable.py +96 -0
  299. cloudsmith_api/models/respository_geo_ip_enable_disable_request.py +96 -0
  300. cloudsmith_api/models/rpm_package_upload.py +2560 -0
  301. cloudsmith_api/models/rpm_package_upload_request.py +278 -0
  302. cloudsmith_api/models/rpm_upstream.py +1084 -0
  303. cloudsmith_api/models/rpm_upstream_request.py +680 -0
  304. cloudsmith_api/models/rpm_upstream_request_patch.py +677 -0
  305. cloudsmith_api/models/ruby_package_upload.py +2560 -0
  306. cloudsmith_api/models/ruby_package_upload_request.py +246 -0
  307. cloudsmith_api/models/ruby_upstream.py +872 -0
  308. cloudsmith_api/models/ruby_upstream_request.py +529 -0
  309. cloudsmith_api/models/ruby_upstream_request_patch.py +527 -0
  310. cloudsmith_api/models/service.py +399 -0
  311. cloudsmith_api/models/service_request.py +228 -0
  312. cloudsmith_api/models/service_request_patch.py +227 -0
  313. cloudsmith_api/models/service_teams.py +199 -0
  314. cloudsmith_api/models/status_basic.py +160 -0
  315. cloudsmith_api/models/storage_allocated_limit.py +290 -0
  316. cloudsmith_api/models/storage_allocated_limit_raw.py +254 -0
  317. cloudsmith_api/models/storage_region.py +162 -0
  318. cloudsmith_api/models/storage_usage.py +226 -0
  319. cloudsmith_api/models/storage_usage_raw.py +202 -0
  320. cloudsmith_api/models/swift_package_upload.py +2732 -0
  321. cloudsmith_api/models/swift_package_upload_request.py +500 -0
  322. cloudsmith_api/models/swift_upstream.py +872 -0
  323. cloudsmith_api/models/swift_upstream_request.py +529 -0
  324. cloudsmith_api/models/swift_upstream_request_patch.py +527 -0
  325. cloudsmith_api/models/tags.py +96 -0
  326. cloudsmith_api/models/terraform_package_upload.py +2560 -0
  327. cloudsmith_api/models/terraform_package_upload_request.py +246 -0
  328. cloudsmith_api/models/usage.py +194 -0
  329. cloudsmith_api/models/usage_fieldset.py +152 -0
  330. cloudsmith_api/models/usage_limits.py +152 -0
  331. cloudsmith_api/models/usage_limits_raw.py +152 -0
  332. cloudsmith_api/models/usage_raw.py +176 -0
  333. cloudsmith_api/models/user_auth_token.py +188 -0
  334. cloudsmith_api/models/user_auth_token_request.py +191 -0
  335. cloudsmith_api/models/user_authentication_token.py +182 -0
  336. cloudsmith_api/models/user_brief.py +297 -0
  337. cloudsmith_api/models/user_profile.py +386 -0
  338. cloudsmith_api/models/vagrant_package_upload.py +2600 -0
  339. cloudsmith_api/models/vagrant_package_upload_request.py +342 -0
  340. cloudsmith_api/models/vsx_package_upload.py +2560 -0
  341. cloudsmith_api/models/vsx_package_upload_request.py +246 -0
  342. cloudsmith_api/models/vulnerability.py +405 -0
  343. cloudsmith_api/models/vulnerability_scan.py +185 -0
  344. cloudsmith_api/models/vulnerability_scan_results.py +326 -0
  345. cloudsmith_api/models/vulnerability_scan_results_list.py +299 -0
  346. cloudsmith_api/models/vulnerability_scan_version.py +266 -0
  347. cloudsmith_api/models/web_osv_severity_counts.py +280 -0
  348. cloudsmith_api/models/webhook_template.py +160 -0
  349. cloudsmith_api/rest.py +323 -0
  350. cloudsmith_api-2.0.31.dist-info/METADATA +14 -0
  351. cloudsmith_api-2.0.31.dist-info/RECORD +697 -0
  352. cloudsmith_api-2.0.31.dist-info/WHEEL +6 -0
  353. cloudsmith_api-2.0.31.dist-info/top_level.txt +2 -0
  354. test/__init__.py +1 -0
  355. test/test_allocated_limit.py +40 -0
  356. test/test_allocated_limit_raw.py +40 -0
  357. test/test_alpine_package_upload.py +40 -0
  358. test/test_alpine_package_upload_request.py +40 -0
  359. test/test_alpine_upstream.py +40 -0
  360. test/test_alpine_upstream_request.py +40 -0
  361. test/test_alpine_upstream_request_patch.py +40 -0
  362. test/test_architecture.py +40 -0
  363. test/test_audit_log_api.py +48 -0
  364. test/test_badges_api.py +41 -0
  365. test/test_broadcast_token.py +40 -0
  366. test/test_broadcast_token_input.py +40 -0
  367. test/test_broadcasts_api.py +41 -0
  368. test/test_bulk_action_api.py +40 -0
  369. test/test_cargo_package_upload.py +40 -0
  370. test/test_cargo_package_upload_request.py +40 -0
  371. test/test_cargo_upstream.py +40 -0
  372. test/test_cargo_upstream_request.py +40 -0
  373. test/test_cargo_upstream_request_patch.py +40 -0
  374. test/test_cocoapods_package_upload.py +40 -0
  375. test/test_cocoapods_package_upload_request.py +40 -0
  376. test/test_common_bandwidth_metrics.py +40 -0
  377. test/test_common_bandwidth_metrics_value.py +40 -0
  378. test/test_common_downloads_metrics.py +40 -0
  379. test/test_common_downloads_metrics_value.py +40 -0
  380. test/test_common_metrics.py +40 -0
  381. test/test_composer_package_upload.py +40 -0
  382. test/test_composer_package_upload_request.py +40 -0
  383. test/test_composer_upstream.py +40 -0
  384. test/test_composer_upstream_request.py +40 -0
  385. test/test_composer_upstream_request_patch.py +40 -0
  386. test/test_conan_package_upload.py +40 -0
  387. test/test_conan_package_upload_request.py +40 -0
  388. test/test_conda_package_upload.py +40 -0
  389. test/test_conda_package_upload_request.py +40 -0
  390. test/test_conda_upstream.py +40 -0
  391. test/test_conda_upstream_request.py +40 -0
  392. test/test_conda_upstream_request_patch.py +40 -0
  393. test/test_connected_repository.py +40 -0
  394. test/test_connected_repository_request.py +40 -0
  395. test/test_connected_repository_request_patch.py +40 -0
  396. test/test_cran_package_upload.py +40 -0
  397. test/test_cran_package_upload_request.py +40 -0
  398. test/test_cran_upstream.py +40 -0
  399. test/test_cran_upstream_request.py +40 -0
  400. test/test_cran_upstream_request_patch.py +40 -0
  401. test/test_dart_package_upload.py +40 -0
  402. test/test_dart_package_upload_request.py +40 -0
  403. test/test_dart_upstream.py +40 -0
  404. test/test_dart_upstream_request.py +40 -0
  405. test/test_dart_upstream_request_patch.py +40 -0
  406. test/test_deb_package_upload.py +40 -0
  407. test/test_deb_package_upload_request.py +40 -0
  408. test/test_deb_upstream.py +40 -0
  409. test/test_deb_upstream_request.py +40 -0
  410. test/test_deb_upstream_request_patch.py +40 -0
  411. test/test_distribution.py +40 -0
  412. test/test_distribution_full.py +40 -0
  413. test/test_distribution_version.py +40 -0
  414. test/test_distros_api.py +48 -0
  415. test/test_docker_package_upload.py +40 -0
  416. test/test_docker_package_upload_request.py +40 -0
  417. test/test_docker_upstream.py +40 -0
  418. test/test_docker_upstream_request.py +40 -0
  419. test/test_docker_upstream_request_patch.py +40 -0
  420. test/test_dynamic_mapping.py +40 -0
  421. test/test_entitlement_usage_metrics.py +40 -0
  422. test/test_entitlements_api.py +111 -0
  423. test/test_error_detail.py +40 -0
  424. test/test_eula.py +40 -0
  425. test/test_files_api.py +69 -0
  426. test/test_format.py +40 -0
  427. test/test_format_support.py +40 -0
  428. test/test_format_support_upstream.py +40 -0
  429. test/test_formats_api.py +48 -0
  430. test/test_generic_package_upload.py +40 -0
  431. test/test_generic_package_upload_request.py +40 -0
  432. test/test_generic_upstream.py +40 -0
  433. test/test_generic_upstream_request.py +40 -0
  434. test/test_generic_upstream_request_patch.py +40 -0
  435. test/test_geo_ip_location.py +40 -0
  436. test/test_go_package_upload.py +40 -0
  437. test/test_go_package_upload_request.py +40 -0
  438. test/test_go_upstream.py +40 -0
  439. test/test_go_upstream_request.py +40 -0
  440. test/test_go_upstream_request_patch.py +40 -0
  441. test/test_helm_package_upload.py +40 -0
  442. test/test_helm_package_upload_request.py +40 -0
  443. test/test_helm_upstream.py +40 -0
  444. test/test_helm_upstream_request.py +40 -0
  445. test/test_helm_upstream_request_patch.py +40 -0
  446. test/test_hex_package_upload.py +40 -0
  447. test/test_hex_package_upload_request.py +40 -0
  448. test/test_hex_upstream.py +40 -0
  449. test/test_hex_upstream_request.py +40 -0
  450. test/test_hex_upstream_request_patch.py +40 -0
  451. test/test_history.py +40 -0
  452. test/test_history_fieldset.py +40 -0
  453. test/test_history_fieldset_raw.py +40 -0
  454. test/test_huggingface_package_upload.py +40 -0
  455. test/test_huggingface_package_upload_request.py +40 -0
  456. test/test_huggingface_upstream.py +40 -0
  457. test/test_huggingface_upstream_request.py +40 -0
  458. test/test_huggingface_upstream_request_patch.py +40 -0
  459. test/test_inline_response200.py +40 -0
  460. test/test_inline_response2001.py +40 -0
  461. test/test_inline_response2002.py +40 -0
  462. test/test_inline_response2003.py +40 -0
  463. test/test_inline_response2004.py +40 -0
  464. test/test_luarocks_package_upload.py +40 -0
  465. test/test_luarocks_package_upload_request.py +40 -0
  466. test/test_maven_package_upload.py +40 -0
  467. test/test_maven_package_upload_request.py +40 -0
  468. test/test_maven_upstream.py +40 -0
  469. test/test_maven_upstream_request.py +40 -0
  470. test/test_maven_upstream_request_patch.py +40 -0
  471. test/test_mcp_package_upload.py +40 -0
  472. test/test_mcp_package_upload_request.py +40 -0
  473. test/test_member_teams.py +40 -0
  474. test/test_metrics_api.py +55 -0
  475. test/test_namespace.py +40 -0
  476. test/test_namespace_audit_log.py +40 -0
  477. test/test_namespaces_api.py +48 -0
  478. test/test_nested_license_policy.py +40 -0
  479. test/test_nested_vulnerability_policy.py +40 -0
  480. test/test_nested_vulnerability_scan_results.py +40 -0
  481. test/test_nix_package_upload.py +40 -0
  482. test/test_nix_package_upload_request.py +40 -0
  483. test/test_nix_upstream.py +40 -0
  484. test/test_nix_upstream_request.py +40 -0
  485. test/test_nix_upstream_request_patch.py +40 -0
  486. test/test_npm_package_upload.py +40 -0
  487. test/test_npm_package_upload_request.py +40 -0
  488. test/test_npm_upstream.py +40 -0
  489. test/test_npm_upstream_request.py +40 -0
  490. test/test_npm_upstream_request_patch.py +40 -0
  491. test/test_nuget_package_upload.py +40 -0
  492. test/test_nuget_package_upload_request.py +40 -0
  493. test/test_nuget_upstream.py +40 -0
  494. test/test_nuget_upstream_request.py +40 -0
  495. test/test_nuget_upstream_request_patch.py +40 -0
  496. test/test_oidc.py +40 -0
  497. test/test_oidc1.py +40 -0
  498. test/test_oidc_request.py +40 -0
  499. test/test_openid_api.py +41 -0
  500. test/test_organization.py +40 -0
  501. test/test_organization_custom_domain_nested_repo.py +40 -0
  502. test/test_organization_custom_domains.py +40 -0
  503. test/test_organization_group_sync.py +40 -0
  504. test/test_organization_group_sync_request.py +40 -0
  505. test/test_organization_group_sync_status.py +40 -0
  506. test/test_organization_invite.py +40 -0
  507. test/test_organization_invite_extend.py +40 -0
  508. test/test_organization_invite_request.py +40 -0
  509. test/test_organization_invite_update.py +40 -0
  510. test/test_organization_invite_update_request_patch.py +40 -0
  511. test/test_organization_membership.py +40 -0
  512. test/test_organization_membership_request_patch.py +40 -0
  513. test/test_organization_membership_role_update.py +40 -0
  514. test/test_organization_membership_role_update_request_patch.py +40 -0
  515. test/test_organization_membership_visibility_update.py +40 -0
  516. test/test_organization_membership_visibility_update_request_patch.py +40 -0
  517. test/test_organization_package_license_policy.py +40 -0
  518. test/test_organization_package_license_policy_request.py +40 -0
  519. test/test_organization_package_license_policy_request_patch.py +40 -0
  520. test/test_organization_package_vulnerability_policy.py +40 -0
  521. test/test_organization_package_vulnerability_policy_request.py +40 -0
  522. test/test_organization_package_vulnerability_policy_request_patch.py +40 -0
  523. test/test_organization_saml_auth.py +40 -0
  524. test/test_organization_saml_auth_request_patch.py +40 -0
  525. test/test_organization_team.py +40 -0
  526. test/test_organization_team_invite.py +40 -0
  527. test/test_organization_team_members.py +40 -0
  528. test/test_organization_team_request.py +40 -0
  529. test/test_organization_team_request_patch.py +40 -0
  530. test/test_organization_team_service_member.py +40 -0
  531. test/test_organization_usage.py +40 -0
  532. test/test_organization_usage_update.py +40 -0
  533. test/test_organization_usage_update_request_patch.py +40 -0
  534. test/test_orgs_api.py +564 -0
  535. test/test_p2_package_upload.py +40 -0
  536. test/test_p2_package_upload_request.py +40 -0
  537. test/test_package.py +40 -0
  538. test/test_package_bulk_action.py +40 -0
  539. test/test_package_bulk_action_response.py +40 -0
  540. test/test_package_copy.py +40 -0
  541. test/test_package_copy_request.py +40 -0
  542. test/test_package_deny_policy.py +40 -0
  543. test/test_package_deny_policy_request.py +40 -0
  544. test/test_package_deny_policy_request_patch.py +40 -0
  545. test/test_package_dependencies.py +40 -0
  546. test/test_package_dependency.py +40 -0
  547. test/test_package_detail.py +40 -0
  548. test/test_package_file.py +40 -0
  549. test/test_package_file_parts_upload.py +40 -0
  550. test/test_package_file_upload.py +40 -0
  551. test/test_package_file_upload_request.py +40 -0
  552. test/test_package_group.py +40 -0
  553. test/test_package_license.py +40 -0
  554. test/test_package_license_policy_evaluation_request.py +40 -0
  555. test/test_package_license_policy_evaluation_request_request.py +40 -0
  556. test/test_package_license_policy_violation_log.py +40 -0
  557. test/test_package_license_policy_violation_log_cursor_page.py +40 -0
  558. test/test_package_license_request_patch.py +40 -0
  559. test/test_package_move.py +40 -0
  560. test/test_package_move_request.py +40 -0
  561. test/test_package_quarantine.py +40 -0
  562. test/test_package_quarantine_request.py +40 -0
  563. test/test_package_recycle_bin.py +40 -0
  564. test/test_package_resync.py +40 -0
  565. test/test_package_status.py +40 -0
  566. test/test_package_tag.py +40 -0
  567. test/test_package_tag_request.py +40 -0
  568. test/test_package_usage_metrics.py +40 -0
  569. test/test_package_version_badge.py +40 -0
  570. test/test_package_vulnerability.py +40 -0
  571. test/test_package_vulnerability_policy_evaluation_request.py +40 -0
  572. test/test_package_vulnerability_policy_evaluation_request_request.py +40 -0
  573. test/test_package_vulnerability_policy_violation_log.py +40 -0
  574. test/test_package_vulnerability_policy_violation_log_cursor_page.py +40 -0
  575. test/test_packages_api.py +545 -0
  576. test/test_provider_settings.py +40 -0
  577. test/test_provider_settings_write.py +40 -0
  578. test/test_provider_settings_write_request.py +40 -0
  579. test/test_provider_settings_write_request_patch.py +40 -0
  580. test/test_python_package_upload.py +40 -0
  581. test/test_python_package_upload_request.py +40 -0
  582. test/test_python_upstream.py +40 -0
  583. test/test_python_upstream_request.py +40 -0
  584. test/test_python_upstream_request_patch.py +40 -0
  585. test/test_quota.py +40 -0
  586. test/test_quota_api.py +62 -0
  587. test/test_quota_history.py +40 -0
  588. test/test_rate_check.py +40 -0
  589. test/test_rates_api.py +41 -0
  590. test/test_raw_package_upload.py +40 -0
  591. test/test_raw_package_upload_request.py +40 -0
  592. test/test_recycle_bin_api.py +47 -0
  593. test/test_recycle_bin_package.py +40 -0
  594. test/test_repos_api.py +1188 -0
  595. test/test_repository.py +40 -0
  596. test/test_repository_audit_log.py +40 -0
  597. test/test_repository_create.py +40 -0
  598. test/test_repository_create_request.py +40 -0
  599. test/test_repository_ecdsa_key.py +40 -0
  600. test/test_repository_ecdsa_key_create.py +40 -0
  601. test/test_repository_ed25519_key.py +40 -0
  602. test/test_repository_ed25519_key_create.py +40 -0
  603. test/test_repository_geo_ip_cidr.py +40 -0
  604. test/test_repository_geo_ip_country_code.py +40 -0
  605. test/test_repository_geo_ip_rules.py +40 -0
  606. test/test_repository_geo_ip_rules_request.py +40 -0
  607. test/test_repository_geo_ip_rules_request_patch.py +40 -0
  608. test/test_repository_geo_ip_status.py +40 -0
  609. test/test_repository_geo_ip_test_address.py +40 -0
  610. test/test_repository_geo_ip_test_address_response.py +40 -0
  611. test/test_repository_geo_ip_test_address_response_dict.py +40 -0
  612. test/test_repository_gpg_key.py +40 -0
  613. test/test_repository_gpg_key_create.py +40 -0
  614. test/test_repository_privilege_dict.py +40 -0
  615. test/test_repository_privilege_input.py +40 -0
  616. test/test_repository_privilege_input_request.py +40 -0
  617. test/test_repository_privilege_input_request_patch.py +40 -0
  618. test/test_repository_request_patch.py +40 -0
  619. test/test_repository_retention_rules.py +40 -0
  620. test/test_repository_retention_rules_request_patch.py +40 -0
  621. test/test_repository_rsa_key.py +40 -0
  622. test/test_repository_rsa_key_create.py +40 -0
  623. test/test_repository_token.py +40 -0
  624. test/test_repository_token_action.py +40 -0
  625. test/test_repository_token_private_broadcasts.py +40 -0
  626. test/test_repository_token_private_broadcasts_request.py +40 -0
  627. test/test_repository_token_refresh.py +40 -0
  628. test/test_repository_token_refresh_request.py +40 -0
  629. test/test_repository_token_request.py +40 -0
  630. test/test_repository_token_request_patch.py +40 -0
  631. test/test_repository_token_sync.py +40 -0
  632. test/test_repository_token_sync_request.py +40 -0
  633. test/test_repository_transfer_region.py +40 -0
  634. test/test_repository_transfer_region_request.py +40 -0
  635. test/test_repository_webhook.py +40 -0
  636. test/test_repository_webhook_request.py +40 -0
  637. test/test_repository_webhook_request_patch.py +40 -0
  638. test/test_repository_x509_ecdsa_certificate.py +40 -0
  639. test/test_repository_x509_rsa_certificate.py +40 -0
  640. test/test_resources_rate_check.py +40 -0
  641. test/test_respository_geo_ip_enable_disable.py +40 -0
  642. test/test_respository_geo_ip_enable_disable_request.py +40 -0
  643. test/test_rpm_package_upload.py +40 -0
  644. test/test_rpm_package_upload_request.py +40 -0
  645. test/test_rpm_upstream.py +40 -0
  646. test/test_rpm_upstream_request.py +40 -0
  647. test/test_rpm_upstream_request_patch.py +40 -0
  648. test/test_ruby_package_upload.py +40 -0
  649. test/test_ruby_package_upload_request.py +40 -0
  650. test/test_ruby_upstream.py +40 -0
  651. test/test_ruby_upstream_request.py +40 -0
  652. test/test_ruby_upstream_request_patch.py +40 -0
  653. test/test_service.py +40 -0
  654. test/test_service_request.py +40 -0
  655. test/test_service_request_patch.py +40 -0
  656. test/test_service_teams.py +40 -0
  657. test/test_status_api.py +41 -0
  658. test/test_status_basic.py +40 -0
  659. test/test_storage_allocated_limit.py +40 -0
  660. test/test_storage_allocated_limit_raw.py +40 -0
  661. test/test_storage_region.py +40 -0
  662. test/test_storage_regions_api.py +48 -0
  663. test/test_storage_usage.py +40 -0
  664. test/test_storage_usage_raw.py +40 -0
  665. test/test_swift_package_upload.py +40 -0
  666. test/test_swift_package_upload_request.py +40 -0
  667. test/test_swift_upstream.py +40 -0
  668. test/test_swift_upstream_request.py +40 -0
  669. test/test_swift_upstream_request_patch.py +40 -0
  670. test/test_tags.py +40 -0
  671. test/test_terraform_package_upload.py +40 -0
  672. test/test_terraform_package_upload_request.py +40 -0
  673. test/test_usage.py +40 -0
  674. test/test_usage_fieldset.py +40 -0
  675. test/test_usage_limits.py +40 -0
  676. test/test_usage_limits_raw.py +40 -0
  677. test/test_usage_raw.py +40 -0
  678. test/test_user_api.py +69 -0
  679. test/test_user_auth_token.py +40 -0
  680. test/test_user_auth_token_request.py +40 -0
  681. test/test_user_authentication_token.py +40 -0
  682. test/test_user_brief.py +40 -0
  683. test/test_user_profile.py +40 -0
  684. test/test_users_api.py +41 -0
  685. test/test_vagrant_package_upload.py +40 -0
  686. test/test_vagrant_package_upload_request.py +40 -0
  687. test/test_vsx_package_upload.py +40 -0
  688. test/test_vsx_package_upload_request.py +40 -0
  689. test/test_vulnerabilities_api.py +62 -0
  690. test/test_vulnerability.py +40 -0
  691. test/test_vulnerability_scan.py +40 -0
  692. test/test_vulnerability_scan_results.py +40 -0
  693. test/test_vulnerability_scan_results_list.py +40 -0
  694. test/test_vulnerability_scan_version.py +40 -0
  695. test/test_web_osv_severity_counts.py +40 -0
  696. test/test_webhook_template.py +40 -0
  697. test/test_webhooks_api.py +69 -0
@@ -0,0 +1,2221 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ Cloudsmith API (v1)
5
+
6
+ The API to the Cloudsmith Service # noqa: E501
7
+
8
+ OpenAPI spec version: v1
9
+ Contact: support@cloudsmith.io
10
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
11
+ """
12
+
13
+
14
+ import pprint
15
+ import re # noqa: F401
16
+
17
+ import six
18
+
19
+ from cloudsmith_api.configuration import Configuration
20
+
21
+
22
+ class Repository(object):
23
+ """NOTE: This class is auto generated by the swagger code generator program.
24
+
25
+ Do not edit the class manually.
26
+ """
27
+
28
+ """
29
+ Attributes:
30
+ swagger_types (dict): The key is attribute name
31
+ and the value is attribute type.
32
+ attribute_map (dict): The key is attribute name
33
+ and the value is json key in definition.
34
+ """
35
+ swagger_types = {
36
+ 'active_connection_count': 'int',
37
+ 'broadcast_state': 'str',
38
+ 'cdn_url': 'str',
39
+ 'content_kind': 'str',
40
+ 'contextual_auth_realm': 'bool',
41
+ 'copy_own': 'bool',
42
+ 'copy_packages': 'str',
43
+ 'cosign_signing_enabled': 'bool',
44
+ 'created_at': 'datetime',
45
+ 'default_privilege': 'str',
46
+ 'delete_own': 'bool',
47
+ 'delete_packages': 'str',
48
+ 'deleted_at': 'datetime',
49
+ 'description': 'str',
50
+ 'distributes': 'list[str]',
51
+ 'docker_refresh_tokens_enabled': 'bool',
52
+ 'ecdsa_keys': 'list[RepositoryEcdsaKey]',
53
+ 'enforce_eula': 'bool',
54
+ 'generic_package_index_enabled': 'bool',
55
+ 'gpg_keys': 'list[RepositoryGpgKey]',
56
+ 'index_files': 'bool',
57
+ 'is_open_source': 'bool',
58
+ 'is_private': 'bool',
59
+ 'is_public': 'bool',
60
+ 'is_public_hidden': 'bool',
61
+ 'manage_entitlements_privilege': 'str',
62
+ 'move_own': 'bool',
63
+ 'move_packages': 'str',
64
+ 'name': 'str',
65
+ 'namespace': 'str',
66
+ 'namespace_url': 'str',
67
+ 'npm_upstream_tags_take_precedence': 'bool',
68
+ 'nuget_native_signing_enabled': 'bool',
69
+ 'num_downloads': 'int',
70
+ 'num_policy_violated_packages': 'int',
71
+ 'num_quarantined_packages': 'int',
72
+ 'open_source_license': 'str',
73
+ 'open_source_project_url': 'str',
74
+ 'package_count': 'int',
75
+ 'package_count_excl_subcomponents': 'int',
76
+ 'package_group_count': 'int',
77
+ 'proxy_npmjs': 'bool',
78
+ 'proxy_pypi': 'bool',
79
+ 'raw_package_index_enabled': 'bool',
80
+ 'raw_package_index_signatures_enabled': 'bool',
81
+ 'replace_packages': 'str',
82
+ 'replace_packages_by_default': 'bool',
83
+ 'repository_type': 'int',
84
+ 'repository_type_str': 'str',
85
+ 'resync_own': 'bool',
86
+ 'resync_packages': 'str',
87
+ 'scan_own': 'bool',
88
+ 'scan_packages': 'str',
89
+ 'self_html_url': 'str',
90
+ 'self_url': 'str',
91
+ 'self_webapp_url': 'str',
92
+ 'show_setup_all': 'bool',
93
+ 'size': 'int',
94
+ 'size_str': 'str',
95
+ 'slug': 'str',
96
+ 'slug_perm': 'str',
97
+ 'storage_region': 'str',
98
+ 'strict_npm_validation': 'bool',
99
+ 'tag_pre_releases_as_latest': 'bool',
100
+ 'use_debian_labels': 'bool',
101
+ 'use_default_cargo_upstream': 'bool',
102
+ 'use_entitlements_privilege': 'str',
103
+ 'use_noarch_packages': 'bool',
104
+ 'use_source_packages': 'bool',
105
+ 'use_vulnerability_scanning': 'bool',
106
+ 'user_entitlements_enabled': 'bool',
107
+ 'view_statistics': 'str'
108
+ }
109
+
110
+ attribute_map = {
111
+ 'active_connection_count': 'active_connection_count',
112
+ 'broadcast_state': 'broadcast_state',
113
+ 'cdn_url': 'cdn_url',
114
+ 'content_kind': 'content_kind',
115
+ 'contextual_auth_realm': 'contextual_auth_realm',
116
+ 'copy_own': 'copy_own',
117
+ 'copy_packages': 'copy_packages',
118
+ 'cosign_signing_enabled': 'cosign_signing_enabled',
119
+ 'created_at': 'created_at',
120
+ 'default_privilege': 'default_privilege',
121
+ 'delete_own': 'delete_own',
122
+ 'delete_packages': 'delete_packages',
123
+ 'deleted_at': 'deleted_at',
124
+ 'description': 'description',
125
+ 'distributes': 'distributes',
126
+ 'docker_refresh_tokens_enabled': 'docker_refresh_tokens_enabled',
127
+ 'ecdsa_keys': 'ecdsa_keys',
128
+ 'enforce_eula': 'enforce_eula',
129
+ 'generic_package_index_enabled': 'generic_package_index_enabled',
130
+ 'gpg_keys': 'gpg_keys',
131
+ 'index_files': 'index_files',
132
+ 'is_open_source': 'is_open_source',
133
+ 'is_private': 'is_private',
134
+ 'is_public': 'is_public',
135
+ 'is_public_hidden': 'is_public_hidden',
136
+ 'manage_entitlements_privilege': 'manage_entitlements_privilege',
137
+ 'move_own': 'move_own',
138
+ 'move_packages': 'move_packages',
139
+ 'name': 'name',
140
+ 'namespace': 'namespace',
141
+ 'namespace_url': 'namespace_url',
142
+ 'npm_upstream_tags_take_precedence': 'npm_upstream_tags_take_precedence',
143
+ 'nuget_native_signing_enabled': 'nuget_native_signing_enabled',
144
+ 'num_downloads': 'num_downloads',
145
+ 'num_policy_violated_packages': 'num_policy_violated_packages',
146
+ 'num_quarantined_packages': 'num_quarantined_packages',
147
+ 'open_source_license': 'open_source_license',
148
+ 'open_source_project_url': 'open_source_project_url',
149
+ 'package_count': 'package_count',
150
+ 'package_count_excl_subcomponents': 'package_count_excl_subcomponents',
151
+ 'package_group_count': 'package_group_count',
152
+ 'proxy_npmjs': 'proxy_npmjs',
153
+ 'proxy_pypi': 'proxy_pypi',
154
+ 'raw_package_index_enabled': 'raw_package_index_enabled',
155
+ 'raw_package_index_signatures_enabled': 'raw_package_index_signatures_enabled',
156
+ 'replace_packages': 'replace_packages',
157
+ 'replace_packages_by_default': 'replace_packages_by_default',
158
+ 'repository_type': 'repository_type',
159
+ 'repository_type_str': 'repository_type_str',
160
+ 'resync_own': 'resync_own',
161
+ 'resync_packages': 'resync_packages',
162
+ 'scan_own': 'scan_own',
163
+ 'scan_packages': 'scan_packages',
164
+ 'self_html_url': 'self_html_url',
165
+ 'self_url': 'self_url',
166
+ 'self_webapp_url': 'self_webapp_url',
167
+ 'show_setup_all': 'show_setup_all',
168
+ 'size': 'size',
169
+ 'size_str': 'size_str',
170
+ 'slug': 'slug',
171
+ 'slug_perm': 'slug_perm',
172
+ 'storage_region': 'storage_region',
173
+ 'strict_npm_validation': 'strict_npm_validation',
174
+ 'tag_pre_releases_as_latest': 'tag_pre_releases_as_latest',
175
+ 'use_debian_labels': 'use_debian_labels',
176
+ 'use_default_cargo_upstream': 'use_default_cargo_upstream',
177
+ 'use_entitlements_privilege': 'use_entitlements_privilege',
178
+ 'use_noarch_packages': 'use_noarch_packages',
179
+ 'use_source_packages': 'use_source_packages',
180
+ 'use_vulnerability_scanning': 'use_vulnerability_scanning',
181
+ 'user_entitlements_enabled': 'user_entitlements_enabled',
182
+ 'view_statistics': 'view_statistics'
183
+ }
184
+
185
+ def __init__(self, active_connection_count=None, broadcast_state='Off', cdn_url=None, content_kind='Standard', contextual_auth_realm=None, copy_own=None, copy_packages='Read', cosign_signing_enabled=None, created_at=None, default_privilege='None', delete_own=None, delete_packages='Admin', deleted_at=None, description=None, distributes=None, docker_refresh_tokens_enabled=None, ecdsa_keys=None, enforce_eula=None, generic_package_index_enabled=None, gpg_keys=None, index_files=None, is_open_source=None, is_private=None, is_public=None, is_public_hidden=None, manage_entitlements_privilege='Admin', move_own=None, move_packages='Admin', name=None, namespace=None, namespace_url=None, npm_upstream_tags_take_precedence=None, nuget_native_signing_enabled=None, num_downloads=None, num_policy_violated_packages=None, num_quarantined_packages=None, open_source_license=None, open_source_project_url=None, package_count=None, package_count_excl_subcomponents=None, package_group_count=None, proxy_npmjs=None, proxy_pypi=None, raw_package_index_enabled=None, raw_package_index_signatures_enabled=None, replace_packages='Write', replace_packages_by_default=None, repository_type=None, repository_type_str='Public', resync_own=None, resync_packages='Admin', scan_own=None, scan_packages='Read', self_html_url=None, self_url=None, self_webapp_url=None, show_setup_all=None, size=None, size_str=None, slug=None, slug_perm=None, storage_region='default', strict_npm_validation=None, tag_pre_releases_as_latest=None, use_debian_labels=None, use_default_cargo_upstream=None, use_entitlements_privilege='Read', use_noarch_packages=None, use_source_packages=None, use_vulnerability_scanning=None, user_entitlements_enabled=None, view_statistics='Read', _configuration=None): # noqa: E501
186
+ """Repository - a model defined in Swagger""" # noqa: E501
187
+ if _configuration is None:
188
+ _configuration = Configuration()
189
+ self._configuration = _configuration
190
+
191
+ self._active_connection_count = None
192
+ self._broadcast_state = None
193
+ self._cdn_url = None
194
+ self._content_kind = None
195
+ self._contextual_auth_realm = None
196
+ self._copy_own = None
197
+ self._copy_packages = None
198
+ self._cosign_signing_enabled = None
199
+ self._created_at = None
200
+ self._default_privilege = None
201
+ self._delete_own = None
202
+ self._delete_packages = None
203
+ self._deleted_at = None
204
+ self._description = None
205
+ self._distributes = None
206
+ self._docker_refresh_tokens_enabled = None
207
+ self._ecdsa_keys = None
208
+ self._enforce_eula = None
209
+ self._generic_package_index_enabled = None
210
+ self._gpg_keys = None
211
+ self._index_files = None
212
+ self._is_open_source = None
213
+ self._is_private = None
214
+ self._is_public = None
215
+ self._is_public_hidden = None
216
+ self._manage_entitlements_privilege = None
217
+ self._move_own = None
218
+ self._move_packages = None
219
+ self._name = None
220
+ self._namespace = None
221
+ self._namespace_url = None
222
+ self._npm_upstream_tags_take_precedence = None
223
+ self._nuget_native_signing_enabled = None
224
+ self._num_downloads = None
225
+ self._num_policy_violated_packages = None
226
+ self._num_quarantined_packages = None
227
+ self._open_source_license = None
228
+ self._open_source_project_url = None
229
+ self._package_count = None
230
+ self._package_count_excl_subcomponents = None
231
+ self._package_group_count = None
232
+ self._proxy_npmjs = None
233
+ self._proxy_pypi = None
234
+ self._raw_package_index_enabled = None
235
+ self._raw_package_index_signatures_enabled = None
236
+ self._replace_packages = None
237
+ self._replace_packages_by_default = None
238
+ self._repository_type = None
239
+ self._repository_type_str = None
240
+ self._resync_own = None
241
+ self._resync_packages = None
242
+ self._scan_own = None
243
+ self._scan_packages = None
244
+ self._self_html_url = None
245
+ self._self_url = None
246
+ self._self_webapp_url = None
247
+ self._show_setup_all = None
248
+ self._size = None
249
+ self._size_str = None
250
+ self._slug = None
251
+ self._slug_perm = None
252
+ self._storage_region = None
253
+ self._strict_npm_validation = None
254
+ self._tag_pre_releases_as_latest = None
255
+ self._use_debian_labels = None
256
+ self._use_default_cargo_upstream = None
257
+ self._use_entitlements_privilege = None
258
+ self._use_noarch_packages = None
259
+ self._use_source_packages = None
260
+ self._use_vulnerability_scanning = None
261
+ self._user_entitlements_enabled = None
262
+ self._view_statistics = None
263
+ self.discriminator = None
264
+
265
+ if active_connection_count is not None:
266
+ self.active_connection_count = active_connection_count
267
+ if broadcast_state is not None:
268
+ self.broadcast_state = broadcast_state
269
+ if cdn_url is not None:
270
+ self.cdn_url = cdn_url
271
+ if content_kind is not None:
272
+ self.content_kind = content_kind
273
+ if contextual_auth_realm is not None:
274
+ self.contextual_auth_realm = contextual_auth_realm
275
+ if copy_own is not None:
276
+ self.copy_own = copy_own
277
+ if copy_packages is not None:
278
+ self.copy_packages = copy_packages
279
+ if cosign_signing_enabled is not None:
280
+ self.cosign_signing_enabled = cosign_signing_enabled
281
+ if created_at is not None:
282
+ self.created_at = created_at
283
+ if default_privilege is not None:
284
+ self.default_privilege = default_privilege
285
+ if delete_own is not None:
286
+ self.delete_own = delete_own
287
+ if delete_packages is not None:
288
+ self.delete_packages = delete_packages
289
+ if deleted_at is not None:
290
+ self.deleted_at = deleted_at
291
+ if description is not None:
292
+ self.description = description
293
+ if distributes is not None:
294
+ self.distributes = distributes
295
+ if docker_refresh_tokens_enabled is not None:
296
+ self.docker_refresh_tokens_enabled = docker_refresh_tokens_enabled
297
+ if ecdsa_keys is not None:
298
+ self.ecdsa_keys = ecdsa_keys
299
+ if enforce_eula is not None:
300
+ self.enforce_eula = enforce_eula
301
+ if generic_package_index_enabled is not None:
302
+ self.generic_package_index_enabled = generic_package_index_enabled
303
+ if gpg_keys is not None:
304
+ self.gpg_keys = gpg_keys
305
+ if index_files is not None:
306
+ self.index_files = index_files
307
+ if is_open_source is not None:
308
+ self.is_open_source = is_open_source
309
+ if is_private is not None:
310
+ self.is_private = is_private
311
+ if is_public is not None:
312
+ self.is_public = is_public
313
+ if is_public_hidden is not None:
314
+ self.is_public_hidden = is_public_hidden
315
+ if manage_entitlements_privilege is not None:
316
+ self.manage_entitlements_privilege = manage_entitlements_privilege
317
+ if move_own is not None:
318
+ self.move_own = move_own
319
+ if move_packages is not None:
320
+ self.move_packages = move_packages
321
+ self.name = name
322
+ if namespace is not None:
323
+ self.namespace = namespace
324
+ if namespace_url is not None:
325
+ self.namespace_url = namespace_url
326
+ if npm_upstream_tags_take_precedence is not None:
327
+ self.npm_upstream_tags_take_precedence = npm_upstream_tags_take_precedence
328
+ if nuget_native_signing_enabled is not None:
329
+ self.nuget_native_signing_enabled = nuget_native_signing_enabled
330
+ if num_downloads is not None:
331
+ self.num_downloads = num_downloads
332
+ if num_policy_violated_packages is not None:
333
+ self.num_policy_violated_packages = num_policy_violated_packages
334
+ if num_quarantined_packages is not None:
335
+ self.num_quarantined_packages = num_quarantined_packages
336
+ if open_source_license is not None:
337
+ self.open_source_license = open_source_license
338
+ if open_source_project_url is not None:
339
+ self.open_source_project_url = open_source_project_url
340
+ if package_count is not None:
341
+ self.package_count = package_count
342
+ if package_count_excl_subcomponents is not None:
343
+ self.package_count_excl_subcomponents = package_count_excl_subcomponents
344
+ if package_group_count is not None:
345
+ self.package_group_count = package_group_count
346
+ if proxy_npmjs is not None:
347
+ self.proxy_npmjs = proxy_npmjs
348
+ if proxy_pypi is not None:
349
+ self.proxy_pypi = proxy_pypi
350
+ if raw_package_index_enabled is not None:
351
+ self.raw_package_index_enabled = raw_package_index_enabled
352
+ if raw_package_index_signatures_enabled is not None:
353
+ self.raw_package_index_signatures_enabled = raw_package_index_signatures_enabled
354
+ if replace_packages is not None:
355
+ self.replace_packages = replace_packages
356
+ if replace_packages_by_default is not None:
357
+ self.replace_packages_by_default = replace_packages_by_default
358
+ if repository_type is not None:
359
+ self.repository_type = repository_type
360
+ if repository_type_str is not None:
361
+ self.repository_type_str = repository_type_str
362
+ if resync_own is not None:
363
+ self.resync_own = resync_own
364
+ if resync_packages is not None:
365
+ self.resync_packages = resync_packages
366
+ if scan_own is not None:
367
+ self.scan_own = scan_own
368
+ if scan_packages is not None:
369
+ self.scan_packages = scan_packages
370
+ if self_html_url is not None:
371
+ self.self_html_url = self_html_url
372
+ if self_url is not None:
373
+ self.self_url = self_url
374
+ if self_webapp_url is not None:
375
+ self.self_webapp_url = self_webapp_url
376
+ if show_setup_all is not None:
377
+ self.show_setup_all = show_setup_all
378
+ if size is not None:
379
+ self.size = size
380
+ if size_str is not None:
381
+ self.size_str = size_str
382
+ if slug is not None:
383
+ self.slug = slug
384
+ if slug_perm is not None:
385
+ self.slug_perm = slug_perm
386
+ if storage_region is not None:
387
+ self.storage_region = storage_region
388
+ if strict_npm_validation is not None:
389
+ self.strict_npm_validation = strict_npm_validation
390
+ if tag_pre_releases_as_latest is not None:
391
+ self.tag_pre_releases_as_latest = tag_pre_releases_as_latest
392
+ if use_debian_labels is not None:
393
+ self.use_debian_labels = use_debian_labels
394
+ if use_default_cargo_upstream is not None:
395
+ self.use_default_cargo_upstream = use_default_cargo_upstream
396
+ if use_entitlements_privilege is not None:
397
+ self.use_entitlements_privilege = use_entitlements_privilege
398
+ if use_noarch_packages is not None:
399
+ self.use_noarch_packages = use_noarch_packages
400
+ if use_source_packages is not None:
401
+ self.use_source_packages = use_source_packages
402
+ if use_vulnerability_scanning is not None:
403
+ self.use_vulnerability_scanning = use_vulnerability_scanning
404
+ if user_entitlements_enabled is not None:
405
+ self.user_entitlements_enabled = user_entitlements_enabled
406
+ if view_statistics is not None:
407
+ self.view_statistics = view_statistics
408
+
409
+ @property
410
+ def active_connection_count(self):
411
+ """Gets the active_connection_count of this Repository.
412
+
413
+ Number of active connections for the repository
414
+
415
+ :return: The active_connection_count of this Repository.
416
+ :rtype: int
417
+ """
418
+ return self._active_connection_count
419
+
420
+ @active_connection_count.setter
421
+ def active_connection_count(self, active_connection_count):
422
+ """Sets the active_connection_count of this Repository.
423
+
424
+ Number of active connections for the repository
425
+
426
+ :param active_connection_count: The active_connection_count of this Repository.
427
+ :type: int
428
+ """
429
+
430
+ self._active_connection_count = active_connection_count
431
+
432
+ @property
433
+ def broadcast_state(self):
434
+ """Gets the broadcast_state of this Repository.
435
+
436
+ Broadcasting status of a repository.
437
+
438
+ :return: The broadcast_state of this Repository.
439
+ :rtype: str
440
+ """
441
+ return self._broadcast_state
442
+
443
+ @broadcast_state.setter
444
+ def broadcast_state(self, broadcast_state):
445
+ """Sets the broadcast_state of this Repository.
446
+
447
+ Broadcasting status of a repository.
448
+
449
+ :param broadcast_state: The broadcast_state of this Repository.
450
+ :type: str
451
+ """
452
+ allowed_values = ["Off", "Private", "Internal", "Public", "Open-Source"] # noqa: E501
453
+ if (self._configuration.client_side_validation and
454
+ broadcast_state not in allowed_values):
455
+ raise ValueError(
456
+ "Invalid value for `broadcast_state` ({0}), must be one of {1}" # noqa: E501
457
+ .format(broadcast_state, allowed_values)
458
+ )
459
+
460
+ self._broadcast_state = broadcast_state
461
+
462
+ @property
463
+ def cdn_url(self):
464
+ """Gets the cdn_url of this Repository.
465
+
466
+ Base URL from which packages and other artifacts are downloaded.
467
+
468
+ :return: The cdn_url of this Repository.
469
+ :rtype: str
470
+ """
471
+ return self._cdn_url
472
+
473
+ @cdn_url.setter
474
+ def cdn_url(self, cdn_url):
475
+ """Sets the cdn_url of this Repository.
476
+
477
+ Base URL from which packages and other artifacts are downloaded.
478
+
479
+ :param cdn_url: The cdn_url of this Repository.
480
+ :type: str
481
+ """
482
+
483
+ self._cdn_url = cdn_url
484
+
485
+ @property
486
+ def content_kind(self):
487
+ """Gets the content_kind of this Repository.
488
+
489
+ The repository content kind determines whether this repository contains packages, or provides a distribution of packages from other repositories. You can only select the content kind at repository creation time.
490
+
491
+ :return: The content_kind of this Repository.
492
+ :rtype: str
493
+ """
494
+ return self._content_kind
495
+
496
+ @content_kind.setter
497
+ def content_kind(self, content_kind):
498
+ """Sets the content_kind of this Repository.
499
+
500
+ The repository content kind determines whether this repository contains packages, or provides a distribution of packages from other repositories. You can only select the content kind at repository creation time.
501
+
502
+ :param content_kind: The content_kind of this Repository.
503
+ :type: str
504
+ """
505
+ allowed_values = ["Standard", "Distribution", "Upstream"] # noqa: E501
506
+ if (self._configuration.client_side_validation and
507
+ content_kind not in allowed_values):
508
+ raise ValueError(
509
+ "Invalid value for `content_kind` ({0}), must be one of {1}" # noqa: E501
510
+ .format(content_kind, allowed_values)
511
+ )
512
+
513
+ self._content_kind = content_kind
514
+
515
+ @property
516
+ def contextual_auth_realm(self):
517
+ """Gets the contextual_auth_realm of this Repository.
518
+
519
+ If checked, missing credentials for this repository where basic authentication is required shall present an enriched value in the 'WWW-Authenticate' header containing the namespace and repository. This can be useful for tooling such as SBT where the authentication realm is used to distinguish and disambiguate credentials.
520
+
521
+ :return: The contextual_auth_realm of this Repository.
522
+ :rtype: bool
523
+ """
524
+ return self._contextual_auth_realm
525
+
526
+ @contextual_auth_realm.setter
527
+ def contextual_auth_realm(self, contextual_auth_realm):
528
+ """Sets the contextual_auth_realm of this Repository.
529
+
530
+ If checked, missing credentials for this repository where basic authentication is required shall present an enriched value in the 'WWW-Authenticate' header containing the namespace and repository. This can be useful for tooling such as SBT where the authentication realm is used to distinguish and disambiguate credentials.
531
+
532
+ :param contextual_auth_realm: The contextual_auth_realm of this Repository.
533
+ :type: bool
534
+ """
535
+
536
+ self._contextual_auth_realm = contextual_auth_realm
537
+
538
+ @property
539
+ def copy_own(self):
540
+ """Gets the copy_own of this Repository.
541
+
542
+ If checked, users can copy any of their own packages that they have uploaded, assuming that they still have write privilege for the repository. This takes precedence over privileges configured in the 'Access Controls' section of the repository, and any inherited from the org.
543
+
544
+ :return: The copy_own of this Repository.
545
+ :rtype: bool
546
+ """
547
+ return self._copy_own
548
+
549
+ @copy_own.setter
550
+ def copy_own(self, copy_own):
551
+ """Sets the copy_own of this Repository.
552
+
553
+ If checked, users can copy any of their own packages that they have uploaded, assuming that they still have write privilege for the repository. This takes precedence over privileges configured in the 'Access Controls' section of the repository, and any inherited from the org.
554
+
555
+ :param copy_own: The copy_own of this Repository.
556
+ :type: bool
557
+ """
558
+
559
+ self._copy_own = copy_own
560
+
561
+ @property
562
+ def copy_packages(self):
563
+ """Gets the copy_packages of this Repository.
564
+
565
+ This defines the minimum level of privilege required for a user to copy packages. Unless the package was uploaded by that user, in which the permission may be overridden by the user-specific copy setting.
566
+
567
+ :return: The copy_packages of this Repository.
568
+ :rtype: str
569
+ """
570
+ return self._copy_packages
571
+
572
+ @copy_packages.setter
573
+ def copy_packages(self, copy_packages):
574
+ """Sets the copy_packages of this Repository.
575
+
576
+ This defines the minimum level of privilege required for a user to copy packages. Unless the package was uploaded by that user, in which the permission may be overridden by the user-specific copy setting.
577
+
578
+ :param copy_packages: The copy_packages of this Repository.
579
+ :type: str
580
+ """
581
+ allowed_values = ["Admin", "Write", "Read"] # noqa: E501
582
+ if (self._configuration.client_side_validation and
583
+ copy_packages not in allowed_values):
584
+ raise ValueError(
585
+ "Invalid value for `copy_packages` ({0}), must be one of {1}" # noqa: E501
586
+ .format(copy_packages, allowed_values)
587
+ )
588
+
589
+ self._copy_packages = copy_packages
590
+
591
+ @property
592
+ def cosign_signing_enabled(self):
593
+ """Gets the cosign_signing_enabled of this Repository.
594
+
595
+ When enabled, all pushed (or pulled from upstream) OCI packages and artifacts will be signed using cosign with the repository's ECDSA key. This generates a distinct cosign signature artifact per artifact.
596
+
597
+ :return: The cosign_signing_enabled of this Repository.
598
+ :rtype: bool
599
+ """
600
+ return self._cosign_signing_enabled
601
+
602
+ @cosign_signing_enabled.setter
603
+ def cosign_signing_enabled(self, cosign_signing_enabled):
604
+ """Sets the cosign_signing_enabled of this Repository.
605
+
606
+ When enabled, all pushed (or pulled from upstream) OCI packages and artifacts will be signed using cosign with the repository's ECDSA key. This generates a distinct cosign signature artifact per artifact.
607
+
608
+ :param cosign_signing_enabled: The cosign_signing_enabled of this Repository.
609
+ :type: bool
610
+ """
611
+
612
+ self._cosign_signing_enabled = cosign_signing_enabled
613
+
614
+ @property
615
+ def created_at(self):
616
+ """Gets the created_at of this Repository.
617
+
618
+
619
+ :return: The created_at of this Repository.
620
+ :rtype: datetime
621
+ """
622
+ return self._created_at
623
+
624
+ @created_at.setter
625
+ def created_at(self, created_at):
626
+ """Sets the created_at of this Repository.
627
+
628
+
629
+ :param created_at: The created_at of this Repository.
630
+ :type: datetime
631
+ """
632
+
633
+ self._created_at = created_at
634
+
635
+ @property
636
+ def default_privilege(self):
637
+ """Gets the default_privilege of this Repository.
638
+
639
+ This defines the default level of privilege that all of your organization members have for this repository. This does not include collaborators, but applies to any member of the org regardless of their own membership role (i.e. it applies to owners, managers and members). Be careful if setting this to admin, because any member will be able to change settings.
640
+
641
+ :return: The default_privilege of this Repository.
642
+ :rtype: str
643
+ """
644
+ return self._default_privilege
645
+
646
+ @default_privilege.setter
647
+ def default_privilege(self, default_privilege):
648
+ """Sets the default_privilege of this Repository.
649
+
650
+ This defines the default level of privilege that all of your organization members have for this repository. This does not include collaborators, but applies to any member of the org regardless of their own membership role (i.e. it applies to owners, managers and members). Be careful if setting this to admin, because any member will be able to change settings.
651
+
652
+ :param default_privilege: The default_privilege of this Repository.
653
+ :type: str
654
+ """
655
+ allowed_values = ["Admin", "Write", "Read", "None"] # noqa: E501
656
+ if (self._configuration.client_side_validation and
657
+ default_privilege not in allowed_values):
658
+ raise ValueError(
659
+ "Invalid value for `default_privilege` ({0}), must be one of {1}" # noqa: E501
660
+ .format(default_privilege, allowed_values)
661
+ )
662
+
663
+ self._default_privilege = default_privilege
664
+
665
+ @property
666
+ def delete_own(self):
667
+ """Gets the delete_own of this Repository.
668
+
669
+ If checked, users can delete any of their own packages that they have uploaded, assuming that they still have write privilege for the repository. This takes precedence over privileges configured in the 'Access Controls' section of the repository, and any inherited from the org.
670
+
671
+ :return: The delete_own of this Repository.
672
+ :rtype: bool
673
+ """
674
+ return self._delete_own
675
+
676
+ @delete_own.setter
677
+ def delete_own(self, delete_own):
678
+ """Sets the delete_own of this Repository.
679
+
680
+ If checked, users can delete any of their own packages that they have uploaded, assuming that they still have write privilege for the repository. This takes precedence over privileges configured in the 'Access Controls' section of the repository, and any inherited from the org.
681
+
682
+ :param delete_own: The delete_own of this Repository.
683
+ :type: bool
684
+ """
685
+
686
+ self._delete_own = delete_own
687
+
688
+ @property
689
+ def delete_packages(self):
690
+ """Gets the delete_packages of this Repository.
691
+
692
+ This defines the minimum level of privilege required for a user to delete packages. Unless the package was uploaded by that user, in which the permission may be overridden by the user-specific delete setting.
693
+
694
+ :return: The delete_packages of this Repository.
695
+ :rtype: str
696
+ """
697
+ return self._delete_packages
698
+
699
+ @delete_packages.setter
700
+ def delete_packages(self, delete_packages):
701
+ """Sets the delete_packages of this Repository.
702
+
703
+ This defines the minimum level of privilege required for a user to delete packages. Unless the package was uploaded by that user, in which the permission may be overridden by the user-specific delete setting.
704
+
705
+ :param delete_packages: The delete_packages of this Repository.
706
+ :type: str
707
+ """
708
+ allowed_values = ["Admin", "Write"] # noqa: E501
709
+ if (self._configuration.client_side_validation and
710
+ delete_packages not in allowed_values):
711
+ raise ValueError(
712
+ "Invalid value for `delete_packages` ({0}), must be one of {1}" # noqa: E501
713
+ .format(delete_packages, allowed_values)
714
+ )
715
+
716
+ self._delete_packages = delete_packages
717
+
718
+ @property
719
+ def deleted_at(self):
720
+ """Gets the deleted_at of this Repository.
721
+
722
+ The datetime the repository was manually deleted at.
723
+
724
+ :return: The deleted_at of this Repository.
725
+ :rtype: datetime
726
+ """
727
+ return self._deleted_at
728
+
729
+ @deleted_at.setter
730
+ def deleted_at(self, deleted_at):
731
+ """Sets the deleted_at of this Repository.
732
+
733
+ The datetime the repository was manually deleted at.
734
+
735
+ :param deleted_at: The deleted_at of this Repository.
736
+ :type: datetime
737
+ """
738
+
739
+ self._deleted_at = deleted_at
740
+
741
+ @property
742
+ def description(self):
743
+ """Gets the description of this Repository.
744
+
745
+ A description of the repository's purpose/contents.
746
+
747
+ :return: The description of this Repository.
748
+ :rtype: str
749
+ """
750
+ return self._description
751
+
752
+ @description.setter
753
+ def description(self, description):
754
+ """Sets the description of this Repository.
755
+
756
+ A description of the repository's purpose/contents.
757
+
758
+ :param description: The description of this Repository.
759
+ :type: str
760
+ """
761
+
762
+ self._description = description
763
+
764
+ @property
765
+ def distributes(self):
766
+ """Gets the distributes of this Repository.
767
+
768
+ The repositories distributed through this repo. Adding repos here is only valid if the content_kind is DISTRIBUTION.
769
+
770
+ :return: The distributes of this Repository.
771
+ :rtype: list[str]
772
+ """
773
+ return self._distributes
774
+
775
+ @distributes.setter
776
+ def distributes(self, distributes):
777
+ """Sets the distributes of this Repository.
778
+
779
+ The repositories distributed through this repo. Adding repos here is only valid if the content_kind is DISTRIBUTION.
780
+
781
+ :param distributes: The distributes of this Repository.
782
+ :type: list[str]
783
+ """
784
+
785
+ self._distributes = distributes
786
+
787
+ @property
788
+ def docker_refresh_tokens_enabled(self):
789
+ """Gets the docker_refresh_tokens_enabled of this Repository.
790
+
791
+ If checked, refresh tokens will be issued in addition to access tokens for Docker authentication. This allows unlimited extension of the lifetime of access tokens.
792
+
793
+ :return: The docker_refresh_tokens_enabled of this Repository.
794
+ :rtype: bool
795
+ """
796
+ return self._docker_refresh_tokens_enabled
797
+
798
+ @docker_refresh_tokens_enabled.setter
799
+ def docker_refresh_tokens_enabled(self, docker_refresh_tokens_enabled):
800
+ """Sets the docker_refresh_tokens_enabled of this Repository.
801
+
802
+ If checked, refresh tokens will be issued in addition to access tokens for Docker authentication. This allows unlimited extension of the lifetime of access tokens.
803
+
804
+ :param docker_refresh_tokens_enabled: The docker_refresh_tokens_enabled of this Repository.
805
+ :type: bool
806
+ """
807
+
808
+ self._docker_refresh_tokens_enabled = docker_refresh_tokens_enabled
809
+
810
+ @property
811
+ def ecdsa_keys(self):
812
+ """Gets the ecdsa_keys of this Repository.
813
+
814
+
815
+ :return: The ecdsa_keys of this Repository.
816
+ :rtype: list[RepositoryEcdsaKey]
817
+ """
818
+ return self._ecdsa_keys
819
+
820
+ @ecdsa_keys.setter
821
+ def ecdsa_keys(self, ecdsa_keys):
822
+ """Sets the ecdsa_keys of this Repository.
823
+
824
+
825
+ :param ecdsa_keys: The ecdsa_keys of this Repository.
826
+ :type: list[RepositoryEcdsaKey]
827
+ """
828
+
829
+ self._ecdsa_keys = ecdsa_keys
830
+
831
+ @property
832
+ def enforce_eula(self):
833
+ """Gets the enforce_eula of this Repository.
834
+
835
+ If checked, downloads will explicitly require acceptance of an EULA.
836
+
837
+ :return: The enforce_eula of this Repository.
838
+ :rtype: bool
839
+ """
840
+ return self._enforce_eula
841
+
842
+ @enforce_eula.setter
843
+ def enforce_eula(self, enforce_eula):
844
+ """Sets the enforce_eula of this Repository.
845
+
846
+ If checked, downloads will explicitly require acceptance of an EULA.
847
+
848
+ :param enforce_eula: The enforce_eula of this Repository.
849
+ :type: bool
850
+ """
851
+
852
+ self._enforce_eula = enforce_eula
853
+
854
+ @property
855
+ def generic_package_index_enabled(self):
856
+ """Gets the generic_package_index_enabled of this Repository.
857
+
858
+ If checked, HTML indexes will be generated that list all available generic packages in the repository.
859
+
860
+ :return: The generic_package_index_enabled of this Repository.
861
+ :rtype: bool
862
+ """
863
+ return self._generic_package_index_enabled
864
+
865
+ @generic_package_index_enabled.setter
866
+ def generic_package_index_enabled(self, generic_package_index_enabled):
867
+ """Sets the generic_package_index_enabled of this Repository.
868
+
869
+ If checked, HTML indexes will be generated that list all available generic packages in the repository.
870
+
871
+ :param generic_package_index_enabled: The generic_package_index_enabled of this Repository.
872
+ :type: bool
873
+ """
874
+
875
+ self._generic_package_index_enabled = generic_package_index_enabled
876
+
877
+ @property
878
+ def gpg_keys(self):
879
+ """Gets the gpg_keys of this Repository.
880
+
881
+
882
+ :return: The gpg_keys of this Repository.
883
+ :rtype: list[RepositoryGpgKey]
884
+ """
885
+ return self._gpg_keys
886
+
887
+ @gpg_keys.setter
888
+ def gpg_keys(self, gpg_keys):
889
+ """Sets the gpg_keys of this Repository.
890
+
891
+
892
+ :param gpg_keys: The gpg_keys of this Repository.
893
+ :type: list[RepositoryGpgKey]
894
+ """
895
+
896
+ self._gpg_keys = gpg_keys
897
+
898
+ @property
899
+ def index_files(self):
900
+ """Gets the index_files of this Repository.
901
+
902
+ If checked, files contained in packages will be indexed, which increase the synchronisation time required for packages. Note that it is recommended you keep this enabled unless the synchronisation time is significantly impacted.
903
+
904
+ :return: The index_files of this Repository.
905
+ :rtype: bool
906
+ """
907
+ return self._index_files
908
+
909
+ @index_files.setter
910
+ def index_files(self, index_files):
911
+ """Sets the index_files of this Repository.
912
+
913
+ If checked, files contained in packages will be indexed, which increase the synchronisation time required for packages. Note that it is recommended you keep this enabled unless the synchronisation time is significantly impacted.
914
+
915
+ :param index_files: The index_files of this Repository.
916
+ :type: bool
917
+ """
918
+
919
+ self._index_files = index_files
920
+
921
+ @property
922
+ def is_open_source(self):
923
+ """Gets the is_open_source of this Repository.
924
+
925
+
926
+ :return: The is_open_source of this Repository.
927
+ :rtype: bool
928
+ """
929
+ return self._is_open_source
930
+
931
+ @is_open_source.setter
932
+ def is_open_source(self, is_open_source):
933
+ """Sets the is_open_source of this Repository.
934
+
935
+
936
+ :param is_open_source: The is_open_source of this Repository.
937
+ :type: bool
938
+ """
939
+
940
+ self._is_open_source = is_open_source
941
+
942
+ @property
943
+ def is_private(self):
944
+ """Gets the is_private of this Repository.
945
+
946
+
947
+ :return: The is_private of this Repository.
948
+ :rtype: bool
949
+ """
950
+ return self._is_private
951
+
952
+ @is_private.setter
953
+ def is_private(self, is_private):
954
+ """Sets the is_private of this Repository.
955
+
956
+
957
+ :param is_private: The is_private of this Repository.
958
+ :type: bool
959
+ """
960
+
961
+ self._is_private = is_private
962
+
963
+ @property
964
+ def is_public(self):
965
+ """Gets the is_public of this Repository.
966
+
967
+
968
+ :return: The is_public of this Repository.
969
+ :rtype: bool
970
+ """
971
+ return self._is_public
972
+
973
+ @is_public.setter
974
+ def is_public(self, is_public):
975
+ """Sets the is_public of this Repository.
976
+
977
+
978
+ :param is_public: The is_public of this Repository.
979
+ :type: bool
980
+ """
981
+
982
+ self._is_public = is_public
983
+
984
+ @property
985
+ def is_public_hidden(self):
986
+ """Gets the is_public_hidden of this Repository.
987
+
988
+ If checked, this repository will be hidden from the list of public broadcasts for the workspace.
989
+
990
+ :return: The is_public_hidden of this Repository.
991
+ :rtype: bool
992
+ """
993
+ return self._is_public_hidden
994
+
995
+ @is_public_hidden.setter
996
+ def is_public_hidden(self, is_public_hidden):
997
+ """Sets the is_public_hidden of this Repository.
998
+
999
+ If checked, this repository will be hidden from the list of public broadcasts for the workspace.
1000
+
1001
+ :param is_public_hidden: The is_public_hidden of this Repository.
1002
+ :type: bool
1003
+ """
1004
+
1005
+ self._is_public_hidden = is_public_hidden
1006
+
1007
+ @property
1008
+ def manage_entitlements_privilege(self):
1009
+ """Gets the manage_entitlements_privilege of this Repository.
1010
+
1011
+ This defines the minimum level of privilege required for a user to manage entitlement tokens with private repositories. Management is the ability to create, alter, enable, disable or delete all tokens without a repository.
1012
+
1013
+ :return: The manage_entitlements_privilege of this Repository.
1014
+ :rtype: str
1015
+ """
1016
+ return self._manage_entitlements_privilege
1017
+
1018
+ @manage_entitlements_privilege.setter
1019
+ def manage_entitlements_privilege(self, manage_entitlements_privilege):
1020
+ """Sets the manage_entitlements_privilege of this Repository.
1021
+
1022
+ This defines the minimum level of privilege required for a user to manage entitlement tokens with private repositories. Management is the ability to create, alter, enable, disable or delete all tokens without a repository.
1023
+
1024
+ :param manage_entitlements_privilege: The manage_entitlements_privilege of this Repository.
1025
+ :type: str
1026
+ """
1027
+ allowed_values = ["Admin", "Write", "Read"] # noqa: E501
1028
+ if (self._configuration.client_side_validation and
1029
+ manage_entitlements_privilege not in allowed_values):
1030
+ raise ValueError(
1031
+ "Invalid value for `manage_entitlements_privilege` ({0}), must be one of {1}" # noqa: E501
1032
+ .format(manage_entitlements_privilege, allowed_values)
1033
+ )
1034
+
1035
+ self._manage_entitlements_privilege = manage_entitlements_privilege
1036
+
1037
+ @property
1038
+ def move_own(self):
1039
+ """Gets the move_own of this Repository.
1040
+
1041
+ If checked, users can move any of their own packages that they have uploaded, assuming that they still have write privilege for the repository. This takes precedence over privileges configured in the 'Access Controls' section of the repository, and any inherited from the org.
1042
+
1043
+ :return: The move_own of this Repository.
1044
+ :rtype: bool
1045
+ """
1046
+ return self._move_own
1047
+
1048
+ @move_own.setter
1049
+ def move_own(self, move_own):
1050
+ """Sets the move_own of this Repository.
1051
+
1052
+ If checked, users can move any of their own packages that they have uploaded, assuming that they still have write privilege for the repository. This takes precedence over privileges configured in the 'Access Controls' section of the repository, and any inherited from the org.
1053
+
1054
+ :param move_own: The move_own of this Repository.
1055
+ :type: bool
1056
+ """
1057
+
1058
+ self._move_own = move_own
1059
+
1060
+ @property
1061
+ def move_packages(self):
1062
+ """Gets the move_packages of this Repository.
1063
+
1064
+ This defines the minimum level of privilege required for a user to move packages. Unless the package was uploaded by that user, in which the permission may be overridden by the user-specific move setting.
1065
+
1066
+ :return: The move_packages of this Repository.
1067
+ :rtype: str
1068
+ """
1069
+ return self._move_packages
1070
+
1071
+ @move_packages.setter
1072
+ def move_packages(self, move_packages):
1073
+ """Sets the move_packages of this Repository.
1074
+
1075
+ This defines the minimum level of privilege required for a user to move packages. Unless the package was uploaded by that user, in which the permission may be overridden by the user-specific move setting.
1076
+
1077
+ :param move_packages: The move_packages of this Repository.
1078
+ :type: str
1079
+ """
1080
+ allowed_values = ["Admin", "Write", "Read"] # noqa: E501
1081
+ if (self._configuration.client_side_validation and
1082
+ move_packages not in allowed_values):
1083
+ raise ValueError(
1084
+ "Invalid value for `move_packages` ({0}), must be one of {1}" # noqa: E501
1085
+ .format(move_packages, allowed_values)
1086
+ )
1087
+
1088
+ self._move_packages = move_packages
1089
+
1090
+ @property
1091
+ def name(self):
1092
+ """Gets the name of this Repository.
1093
+
1094
+ A descriptive name for the repository.
1095
+
1096
+ :return: The name of this Repository.
1097
+ :rtype: str
1098
+ """
1099
+ return self._name
1100
+
1101
+ @name.setter
1102
+ def name(self, name):
1103
+ """Sets the name of this Repository.
1104
+
1105
+ A descriptive name for the repository.
1106
+
1107
+ :param name: The name of this Repository.
1108
+ :type: str
1109
+ """
1110
+ if self._configuration.client_side_validation and name is None:
1111
+ raise ValueError("Invalid value for `name`, must not be `None`") # noqa: E501
1112
+ if (self._configuration.client_side_validation and
1113
+ name is not None and len(name) > 50):
1114
+ raise ValueError("Invalid value for `name`, length must be less than or equal to `50`") # noqa: E501
1115
+ if (self._configuration.client_side_validation and
1116
+ name is not None and len(name) < 1):
1117
+ raise ValueError("Invalid value for `name`, length must be greater than or equal to `1`") # noqa: E501
1118
+ if (self._configuration.client_side_validation and
1119
+ name is not None and not re.search('^\\w[\\w \\-\'\\.\\/()]+$', name)): # noqa: E501
1120
+ raise ValueError(r"Invalid value for `name`, must be a follow pattern or equal to `/^\\w[\\w \\-'\\.\/()]+$/`") # noqa: E501
1121
+
1122
+ self._name = name
1123
+
1124
+ @property
1125
+ def namespace(self):
1126
+ """Gets the namespace of this Repository.
1127
+
1128
+ Namespace to which this repository belongs.
1129
+
1130
+ :return: The namespace of this Repository.
1131
+ :rtype: str
1132
+ """
1133
+ return self._namespace
1134
+
1135
+ @namespace.setter
1136
+ def namespace(self, namespace):
1137
+ """Sets the namespace of this Repository.
1138
+
1139
+ Namespace to which this repository belongs.
1140
+
1141
+ :param namespace: The namespace of this Repository.
1142
+ :type: str
1143
+ """
1144
+ if (self._configuration.client_side_validation and
1145
+ namespace is not None and not re.search('^[-a-zA-Z0-9_]+$', namespace)): # noqa: E501
1146
+ raise ValueError(r"Invalid value for `namespace`, must be a follow pattern or equal to `/^[-a-zA-Z0-9_]+$/`") # noqa: E501
1147
+
1148
+ self._namespace = namespace
1149
+
1150
+ @property
1151
+ def namespace_url(self):
1152
+ """Gets the namespace_url of this Repository.
1153
+
1154
+ API endpoint where data about this namespace can be retrieved.
1155
+
1156
+ :return: The namespace_url of this Repository.
1157
+ :rtype: str
1158
+ """
1159
+ return self._namespace_url
1160
+
1161
+ @namespace_url.setter
1162
+ def namespace_url(self, namespace_url):
1163
+ """Sets the namespace_url of this Repository.
1164
+
1165
+ API endpoint where data about this namespace can be retrieved.
1166
+
1167
+ :param namespace_url: The namespace_url of this Repository.
1168
+ :type: str
1169
+ """
1170
+
1171
+ self._namespace_url = namespace_url
1172
+
1173
+ @property
1174
+ def npm_upstream_tags_take_precedence(self):
1175
+ """Gets the npm_upstream_tags_take_precedence of this Repository.
1176
+
1177
+ If checked, npm distribution tags from configured upstreams will take precedence over matching local tags. When both upstream and local repositories have the same tag name (e.g., 'latest'), the upstream tag will be used instead of the local one, even if the local repository has a semantically higher version.
1178
+
1179
+ :return: The npm_upstream_tags_take_precedence of this Repository.
1180
+ :rtype: bool
1181
+ """
1182
+ return self._npm_upstream_tags_take_precedence
1183
+
1184
+ @npm_upstream_tags_take_precedence.setter
1185
+ def npm_upstream_tags_take_precedence(self, npm_upstream_tags_take_precedence):
1186
+ """Sets the npm_upstream_tags_take_precedence of this Repository.
1187
+
1188
+ If checked, npm distribution tags from configured upstreams will take precedence over matching local tags. When both upstream and local repositories have the same tag name (e.g., 'latest'), the upstream tag will be used instead of the local one, even if the local repository has a semantically higher version.
1189
+
1190
+ :param npm_upstream_tags_take_precedence: The npm_upstream_tags_take_precedence of this Repository.
1191
+ :type: bool
1192
+ """
1193
+
1194
+ self._npm_upstream_tags_take_precedence = npm_upstream_tags_take_precedence
1195
+
1196
+ @property
1197
+ def nuget_native_signing_enabled(self):
1198
+ """Gets the nuget_native_signing_enabled of this Repository.
1199
+
1200
+ When enabled, all pushed (or pulled from upstream) nuget packages and artifacts will be signed using the repository's X.509 RSA certificate. Additionally, the nuget RepositorySignature index will list all of the repository's signing certificates including the ones from configured upstreams.
1201
+
1202
+ :return: The nuget_native_signing_enabled of this Repository.
1203
+ :rtype: bool
1204
+ """
1205
+ return self._nuget_native_signing_enabled
1206
+
1207
+ @nuget_native_signing_enabled.setter
1208
+ def nuget_native_signing_enabled(self, nuget_native_signing_enabled):
1209
+ """Sets the nuget_native_signing_enabled of this Repository.
1210
+
1211
+ When enabled, all pushed (or pulled from upstream) nuget packages and artifacts will be signed using the repository's X.509 RSA certificate. Additionally, the nuget RepositorySignature index will list all of the repository's signing certificates including the ones from configured upstreams.
1212
+
1213
+ :param nuget_native_signing_enabled: The nuget_native_signing_enabled of this Repository.
1214
+ :type: bool
1215
+ """
1216
+
1217
+ self._nuget_native_signing_enabled = nuget_native_signing_enabled
1218
+
1219
+ @property
1220
+ def num_downloads(self):
1221
+ """Gets the num_downloads of this Repository.
1222
+
1223
+ The number of downloads for packages in the repository.
1224
+
1225
+ :return: The num_downloads of this Repository.
1226
+ :rtype: int
1227
+ """
1228
+ return self._num_downloads
1229
+
1230
+ @num_downloads.setter
1231
+ def num_downloads(self, num_downloads):
1232
+ """Sets the num_downloads of this Repository.
1233
+
1234
+ The number of downloads for packages in the repository.
1235
+
1236
+ :param num_downloads: The num_downloads of this Repository.
1237
+ :type: int
1238
+ """
1239
+
1240
+ self._num_downloads = num_downloads
1241
+
1242
+ @property
1243
+ def num_policy_violated_packages(self):
1244
+ """Gets the num_policy_violated_packages of this Repository.
1245
+
1246
+ Number of packages with policy violations in a repository.
1247
+
1248
+ :return: The num_policy_violated_packages of this Repository.
1249
+ :rtype: int
1250
+ """
1251
+ return self._num_policy_violated_packages
1252
+
1253
+ @num_policy_violated_packages.setter
1254
+ def num_policy_violated_packages(self, num_policy_violated_packages):
1255
+ """Sets the num_policy_violated_packages of this Repository.
1256
+
1257
+ Number of packages with policy violations in a repository.
1258
+
1259
+ :param num_policy_violated_packages: The num_policy_violated_packages of this Repository.
1260
+ :type: int
1261
+ """
1262
+
1263
+ self._num_policy_violated_packages = num_policy_violated_packages
1264
+
1265
+ @property
1266
+ def num_quarantined_packages(self):
1267
+ """Gets the num_quarantined_packages of this Repository.
1268
+
1269
+ Number of quarantined packages in a repository.
1270
+
1271
+ :return: The num_quarantined_packages of this Repository.
1272
+ :rtype: int
1273
+ """
1274
+ return self._num_quarantined_packages
1275
+
1276
+ @num_quarantined_packages.setter
1277
+ def num_quarantined_packages(self, num_quarantined_packages):
1278
+ """Sets the num_quarantined_packages of this Repository.
1279
+
1280
+ Number of quarantined packages in a repository.
1281
+
1282
+ :param num_quarantined_packages: The num_quarantined_packages of this Repository.
1283
+ :type: int
1284
+ """
1285
+
1286
+ self._num_quarantined_packages = num_quarantined_packages
1287
+
1288
+ @property
1289
+ def open_source_license(self):
1290
+ """Gets the open_source_license of this Repository.
1291
+
1292
+ The SPDX identifier of the open source license.
1293
+
1294
+ :return: The open_source_license of this Repository.
1295
+ :rtype: str
1296
+ """
1297
+ return self._open_source_license
1298
+
1299
+ @open_source_license.setter
1300
+ def open_source_license(self, open_source_license):
1301
+ """Sets the open_source_license of this Repository.
1302
+
1303
+ The SPDX identifier of the open source license.
1304
+
1305
+ :param open_source_license: The open_source_license of this Repository.
1306
+ :type: str
1307
+ """
1308
+
1309
+ self._open_source_license = open_source_license
1310
+
1311
+ @property
1312
+ def open_source_project_url(self):
1313
+ """Gets the open_source_project_url of this Repository.
1314
+
1315
+ The URL to the Open-Source project, used for validating that the project meets the requirements for Open-Source.
1316
+
1317
+ :return: The open_source_project_url of this Repository.
1318
+ :rtype: str
1319
+ """
1320
+ return self._open_source_project_url
1321
+
1322
+ @open_source_project_url.setter
1323
+ def open_source_project_url(self, open_source_project_url):
1324
+ """Sets the open_source_project_url of this Repository.
1325
+
1326
+ The URL to the Open-Source project, used for validating that the project meets the requirements for Open-Source.
1327
+
1328
+ :param open_source_project_url: The open_source_project_url of this Repository.
1329
+ :type: str
1330
+ """
1331
+ if (self._configuration.client_side_validation and
1332
+ open_source_project_url is not None and len(open_source_project_url) > 200):
1333
+ raise ValueError("Invalid value for `open_source_project_url`, length must be less than or equal to `200`") # noqa: E501
1334
+
1335
+ self._open_source_project_url = open_source_project_url
1336
+
1337
+ @property
1338
+ def package_count(self):
1339
+ """Gets the package_count of this Repository.
1340
+
1341
+ The number of packages in the repository.
1342
+
1343
+ :return: The package_count of this Repository.
1344
+ :rtype: int
1345
+ """
1346
+ return self._package_count
1347
+
1348
+ @package_count.setter
1349
+ def package_count(self, package_count):
1350
+ """Sets the package_count of this Repository.
1351
+
1352
+ The number of packages in the repository.
1353
+
1354
+ :param package_count: The package_count of this Repository.
1355
+ :type: int
1356
+ """
1357
+
1358
+ self._package_count = package_count
1359
+
1360
+ @property
1361
+ def package_count_excl_subcomponents(self):
1362
+ """Gets the package_count_excl_subcomponents of this Repository.
1363
+
1364
+ The number of packages in the repository excluding subcomponents.
1365
+
1366
+ :return: The package_count_excl_subcomponents of this Repository.
1367
+ :rtype: int
1368
+ """
1369
+ return self._package_count_excl_subcomponents
1370
+
1371
+ @package_count_excl_subcomponents.setter
1372
+ def package_count_excl_subcomponents(self, package_count_excl_subcomponents):
1373
+ """Sets the package_count_excl_subcomponents of this Repository.
1374
+
1375
+ The number of packages in the repository excluding subcomponents.
1376
+
1377
+ :param package_count_excl_subcomponents: The package_count_excl_subcomponents of this Repository.
1378
+ :type: int
1379
+ """
1380
+
1381
+ self._package_count_excl_subcomponents = package_count_excl_subcomponents
1382
+
1383
+ @property
1384
+ def package_group_count(self):
1385
+ """Gets the package_group_count of this Repository.
1386
+
1387
+ The number of groups in the repository.
1388
+
1389
+ :return: The package_group_count of this Repository.
1390
+ :rtype: int
1391
+ """
1392
+ return self._package_group_count
1393
+
1394
+ @package_group_count.setter
1395
+ def package_group_count(self, package_group_count):
1396
+ """Sets the package_group_count of this Repository.
1397
+
1398
+ The number of groups in the repository.
1399
+
1400
+ :param package_group_count: The package_group_count of this Repository.
1401
+ :type: int
1402
+ """
1403
+
1404
+ self._package_group_count = package_group_count
1405
+
1406
+ @property
1407
+ def proxy_npmjs(self):
1408
+ """Gets the proxy_npmjs of this Repository.
1409
+
1410
+ If checked, Npm packages that are not in the repository when requested by clients will automatically be proxied from the public npmjs.org registry. If there is at least one version for a package, others will not be proxied.
1411
+
1412
+ :return: The proxy_npmjs of this Repository.
1413
+ :rtype: bool
1414
+ """
1415
+ return self._proxy_npmjs
1416
+
1417
+ @proxy_npmjs.setter
1418
+ def proxy_npmjs(self, proxy_npmjs):
1419
+ """Sets the proxy_npmjs of this Repository.
1420
+
1421
+ If checked, Npm packages that are not in the repository when requested by clients will automatically be proxied from the public npmjs.org registry. If there is at least one version for a package, others will not be proxied.
1422
+
1423
+ :param proxy_npmjs: The proxy_npmjs of this Repository.
1424
+ :type: bool
1425
+ """
1426
+
1427
+ self._proxy_npmjs = proxy_npmjs
1428
+
1429
+ @property
1430
+ def proxy_pypi(self):
1431
+ """Gets the proxy_pypi of this Repository.
1432
+
1433
+ If checked, Python packages that are not in the repository when requested by clients will automatically be proxied from the public pypi.python.org registry. If there is at least one version for a package, others will not be proxied.
1434
+
1435
+ :return: The proxy_pypi of this Repository.
1436
+ :rtype: bool
1437
+ """
1438
+ return self._proxy_pypi
1439
+
1440
+ @proxy_pypi.setter
1441
+ def proxy_pypi(self, proxy_pypi):
1442
+ """Sets the proxy_pypi of this Repository.
1443
+
1444
+ If checked, Python packages that are not in the repository when requested by clients will automatically be proxied from the public pypi.python.org registry. If there is at least one version for a package, others will not be proxied.
1445
+
1446
+ :param proxy_pypi: The proxy_pypi of this Repository.
1447
+ :type: bool
1448
+ """
1449
+
1450
+ self._proxy_pypi = proxy_pypi
1451
+
1452
+ @property
1453
+ def raw_package_index_enabled(self):
1454
+ """Gets the raw_package_index_enabled of this Repository.
1455
+
1456
+ If checked, HTML and JSON indexes will be generated that list all available raw packages in the repository.
1457
+
1458
+ :return: The raw_package_index_enabled of this Repository.
1459
+ :rtype: bool
1460
+ """
1461
+ return self._raw_package_index_enabled
1462
+
1463
+ @raw_package_index_enabled.setter
1464
+ def raw_package_index_enabled(self, raw_package_index_enabled):
1465
+ """Sets the raw_package_index_enabled of this Repository.
1466
+
1467
+ If checked, HTML and JSON indexes will be generated that list all available raw packages in the repository.
1468
+
1469
+ :param raw_package_index_enabled: The raw_package_index_enabled of this Repository.
1470
+ :type: bool
1471
+ """
1472
+
1473
+ self._raw_package_index_enabled = raw_package_index_enabled
1474
+
1475
+ @property
1476
+ def raw_package_index_signatures_enabled(self):
1477
+ """Gets the raw_package_index_signatures_enabled of this Repository.
1478
+
1479
+ If checked, the HTML and JSON indexes will display raw package GPG signatures alongside the index packages.
1480
+
1481
+ :return: The raw_package_index_signatures_enabled of this Repository.
1482
+ :rtype: bool
1483
+ """
1484
+ return self._raw_package_index_signatures_enabled
1485
+
1486
+ @raw_package_index_signatures_enabled.setter
1487
+ def raw_package_index_signatures_enabled(self, raw_package_index_signatures_enabled):
1488
+ """Sets the raw_package_index_signatures_enabled of this Repository.
1489
+
1490
+ If checked, the HTML and JSON indexes will display raw package GPG signatures alongside the index packages.
1491
+
1492
+ :param raw_package_index_signatures_enabled: The raw_package_index_signatures_enabled of this Repository.
1493
+ :type: bool
1494
+ """
1495
+
1496
+ self._raw_package_index_signatures_enabled = raw_package_index_signatures_enabled
1497
+
1498
+ @property
1499
+ def replace_packages(self):
1500
+ """Gets the replace_packages of this Repository.
1501
+
1502
+ This defines the minimum level of privilege required for a user to republish packages. Unless the package was uploaded by that user, in which the permission may be overridden by the user-specific republish setting. Please note that the user still requires the privilege to delete packages that will be replaced by the new package; otherwise the republish will fail.
1503
+
1504
+ :return: The replace_packages of this Repository.
1505
+ :rtype: str
1506
+ """
1507
+ return self._replace_packages
1508
+
1509
+ @replace_packages.setter
1510
+ def replace_packages(self, replace_packages):
1511
+ """Sets the replace_packages of this Repository.
1512
+
1513
+ This defines the minimum level of privilege required for a user to republish packages. Unless the package was uploaded by that user, in which the permission may be overridden by the user-specific republish setting. Please note that the user still requires the privilege to delete packages that will be replaced by the new package; otherwise the republish will fail.
1514
+
1515
+ :param replace_packages: The replace_packages of this Repository.
1516
+ :type: str
1517
+ """
1518
+ allowed_values = ["Admin", "Write"] # noqa: E501
1519
+ if (self._configuration.client_side_validation and
1520
+ replace_packages not in allowed_values):
1521
+ raise ValueError(
1522
+ "Invalid value for `replace_packages` ({0}), must be one of {1}" # noqa: E501
1523
+ .format(replace_packages, allowed_values)
1524
+ )
1525
+
1526
+ self._replace_packages = replace_packages
1527
+
1528
+ @property
1529
+ def replace_packages_by_default(self):
1530
+ """Gets the replace_packages_by_default of this Repository.
1531
+
1532
+ If checked, uploaded packages will overwrite/replace any others with the same attributes (e.g. same version) by default. This only applies if the user has the required privilege for the republishing AND has the required privilege to delete existing packages that they don't own.
1533
+
1534
+ :return: The replace_packages_by_default of this Repository.
1535
+ :rtype: bool
1536
+ """
1537
+ return self._replace_packages_by_default
1538
+
1539
+ @replace_packages_by_default.setter
1540
+ def replace_packages_by_default(self, replace_packages_by_default):
1541
+ """Sets the replace_packages_by_default of this Repository.
1542
+
1543
+ If checked, uploaded packages will overwrite/replace any others with the same attributes (e.g. same version) by default. This only applies if the user has the required privilege for the republishing AND has the required privilege to delete existing packages that they don't own.
1544
+
1545
+ :param replace_packages_by_default: The replace_packages_by_default of this Repository.
1546
+ :type: bool
1547
+ """
1548
+
1549
+ self._replace_packages_by_default = replace_packages_by_default
1550
+
1551
+ @property
1552
+ def repository_type(self):
1553
+ """Gets the repository_type of this Repository.
1554
+
1555
+ The repository type changes how it is accessed and billed. Private repositories are visible only to you or authorized delegates. Open-Source repositories are always visible to everyone and are restricted by licensing, but are free to use and come with generous bandwidth/storage. You can only select Open-Source at repository creation time.
1556
+
1557
+ :return: The repository_type of this Repository.
1558
+ :rtype: int
1559
+ """
1560
+ return self._repository_type
1561
+
1562
+ @repository_type.setter
1563
+ def repository_type(self, repository_type):
1564
+ """Sets the repository_type of this Repository.
1565
+
1566
+ The repository type changes how it is accessed and billed. Private repositories are visible only to you or authorized delegates. Open-Source repositories are always visible to everyone and are restricted by licensing, but are free to use and come with generous bandwidth/storage. You can only select Open-Source at repository creation time.
1567
+
1568
+ :param repository_type: The repository_type of this Repository.
1569
+ :type: int
1570
+ """
1571
+
1572
+ self._repository_type = repository_type
1573
+
1574
+ @property
1575
+ def repository_type_str(self):
1576
+ """Gets the repository_type_str of this Repository.
1577
+
1578
+ The repository type changes how it is accessed and billed. Private repositories are visible only to you or authorized delegates. Public repositories are visible to all Cloudsmith users.
1579
+
1580
+ :return: The repository_type_str of this Repository.
1581
+ :rtype: str
1582
+ """
1583
+ return self._repository_type_str
1584
+
1585
+ @repository_type_str.setter
1586
+ def repository_type_str(self, repository_type_str):
1587
+ """Sets the repository_type_str of this Repository.
1588
+
1589
+ The repository type changes how it is accessed and billed. Private repositories are visible only to you or authorized delegates. Public repositories are visible to all Cloudsmith users.
1590
+
1591
+ :param repository_type_str: The repository_type_str of this Repository.
1592
+ :type: str
1593
+ """
1594
+ allowed_values = ["Public", "Private", "Open-Source"] # noqa: E501
1595
+ if (self._configuration.client_side_validation and
1596
+ repository_type_str not in allowed_values):
1597
+ raise ValueError(
1598
+ "Invalid value for `repository_type_str` ({0}), must be one of {1}" # noqa: E501
1599
+ .format(repository_type_str, allowed_values)
1600
+ )
1601
+
1602
+ self._repository_type_str = repository_type_str
1603
+
1604
+ @property
1605
+ def resync_own(self):
1606
+ """Gets the resync_own of this Repository.
1607
+
1608
+ If checked, users can resync any of their own packages that they have uploaded, assuming that they still have write privilege for the repository. This takes precedence over privileges configured in the 'Access Controls' section of the repository, and any inherited from the org.
1609
+
1610
+ :return: The resync_own of this Repository.
1611
+ :rtype: bool
1612
+ """
1613
+ return self._resync_own
1614
+
1615
+ @resync_own.setter
1616
+ def resync_own(self, resync_own):
1617
+ """Sets the resync_own of this Repository.
1618
+
1619
+ If checked, users can resync any of their own packages that they have uploaded, assuming that they still have write privilege for the repository. This takes precedence over privileges configured in the 'Access Controls' section of the repository, and any inherited from the org.
1620
+
1621
+ :param resync_own: The resync_own of this Repository.
1622
+ :type: bool
1623
+ """
1624
+
1625
+ self._resync_own = resync_own
1626
+
1627
+ @property
1628
+ def resync_packages(self):
1629
+ """Gets the resync_packages of this Repository.
1630
+
1631
+ This defines the minimum level of privilege required for a user to resync packages. Unless the package was uploaded by that user, in which the permission may be overridden by the user-specific resync setting.
1632
+
1633
+ :return: The resync_packages of this Repository.
1634
+ :rtype: str
1635
+ """
1636
+ return self._resync_packages
1637
+
1638
+ @resync_packages.setter
1639
+ def resync_packages(self, resync_packages):
1640
+ """Sets the resync_packages of this Repository.
1641
+
1642
+ This defines the minimum level of privilege required for a user to resync packages. Unless the package was uploaded by that user, in which the permission may be overridden by the user-specific resync setting.
1643
+
1644
+ :param resync_packages: The resync_packages of this Repository.
1645
+ :type: str
1646
+ """
1647
+ allowed_values = ["Admin", "Write"] # noqa: E501
1648
+ if (self._configuration.client_side_validation and
1649
+ resync_packages not in allowed_values):
1650
+ raise ValueError(
1651
+ "Invalid value for `resync_packages` ({0}), must be one of {1}" # noqa: E501
1652
+ .format(resync_packages, allowed_values)
1653
+ )
1654
+
1655
+ self._resync_packages = resync_packages
1656
+
1657
+ @property
1658
+ def scan_own(self):
1659
+ """Gets the scan_own of this Repository.
1660
+
1661
+ If checked, users can scan any of their own packages that they have uploaded, assuming that they still have write privilege for the repository. This takes precedence over privileges configured in the 'Access Controls' section of the repository, and any inherited from the org.
1662
+
1663
+ :return: The scan_own of this Repository.
1664
+ :rtype: bool
1665
+ """
1666
+ return self._scan_own
1667
+
1668
+ @scan_own.setter
1669
+ def scan_own(self, scan_own):
1670
+ """Sets the scan_own of this Repository.
1671
+
1672
+ If checked, users can scan any of their own packages that they have uploaded, assuming that they still have write privilege for the repository. This takes precedence over privileges configured in the 'Access Controls' section of the repository, and any inherited from the org.
1673
+
1674
+ :param scan_own: The scan_own of this Repository.
1675
+ :type: bool
1676
+ """
1677
+
1678
+ self._scan_own = scan_own
1679
+
1680
+ @property
1681
+ def scan_packages(self):
1682
+ """Gets the scan_packages of this Repository.
1683
+
1684
+ This defines the minimum level of privilege required for a user to scan packages. Unless the package was uploaded by that user, in which the permission may be overridden by the user-specific scan setting.
1685
+
1686
+ :return: The scan_packages of this Repository.
1687
+ :rtype: str
1688
+ """
1689
+ return self._scan_packages
1690
+
1691
+ @scan_packages.setter
1692
+ def scan_packages(self, scan_packages):
1693
+ """Sets the scan_packages of this Repository.
1694
+
1695
+ This defines the minimum level of privilege required for a user to scan packages. Unless the package was uploaded by that user, in which the permission may be overridden by the user-specific scan setting.
1696
+
1697
+ :param scan_packages: The scan_packages of this Repository.
1698
+ :type: str
1699
+ """
1700
+ allowed_values = ["Admin", "Write", "Read"] # noqa: E501
1701
+ if (self._configuration.client_side_validation and
1702
+ scan_packages not in allowed_values):
1703
+ raise ValueError(
1704
+ "Invalid value for `scan_packages` ({0}), must be one of {1}" # noqa: E501
1705
+ .format(scan_packages, allowed_values)
1706
+ )
1707
+
1708
+ self._scan_packages = scan_packages
1709
+
1710
+ @property
1711
+ def self_html_url(self):
1712
+ """Gets the self_html_url of this Repository.
1713
+
1714
+ Website URL for this repository.
1715
+
1716
+ :return: The self_html_url of this Repository.
1717
+ :rtype: str
1718
+ """
1719
+ return self._self_html_url
1720
+
1721
+ @self_html_url.setter
1722
+ def self_html_url(self, self_html_url):
1723
+ """Sets the self_html_url of this Repository.
1724
+
1725
+ Website URL for this repository.
1726
+
1727
+ :param self_html_url: The self_html_url of this Repository.
1728
+ :type: str
1729
+ """
1730
+ if (self._configuration.client_side_validation and
1731
+ self_html_url is not None and len(self_html_url) < 1):
1732
+ raise ValueError("Invalid value for `self_html_url`, length must be greater than or equal to `1`") # noqa: E501
1733
+
1734
+ self._self_html_url = self_html_url
1735
+
1736
+ @property
1737
+ def self_url(self):
1738
+ """Gets the self_url of this Repository.
1739
+
1740
+ API endpoint where data about this repository can be retrieved.
1741
+
1742
+ :return: The self_url of this Repository.
1743
+ :rtype: str
1744
+ """
1745
+ return self._self_url
1746
+
1747
+ @self_url.setter
1748
+ def self_url(self, self_url):
1749
+ """Sets the self_url of this Repository.
1750
+
1751
+ API endpoint where data about this repository can be retrieved.
1752
+
1753
+ :param self_url: The self_url of this Repository.
1754
+ :type: str
1755
+ """
1756
+
1757
+ self._self_url = self_url
1758
+
1759
+ @property
1760
+ def self_webapp_url(self):
1761
+ """Gets the self_webapp_url of this Repository.
1762
+
1763
+ Webapp URL for this repository.
1764
+
1765
+ :return: The self_webapp_url of this Repository.
1766
+ :rtype: str
1767
+ """
1768
+ return self._self_webapp_url
1769
+
1770
+ @self_webapp_url.setter
1771
+ def self_webapp_url(self, self_webapp_url):
1772
+ """Sets the self_webapp_url of this Repository.
1773
+
1774
+ Webapp URL for this repository.
1775
+
1776
+ :param self_webapp_url: The self_webapp_url of this Repository.
1777
+ :type: str
1778
+ """
1779
+ if (self._configuration.client_side_validation and
1780
+ self_webapp_url is not None and len(self_webapp_url) < 1):
1781
+ raise ValueError("Invalid value for `self_webapp_url`, length must be greater than or equal to `1`") # noqa: E501
1782
+
1783
+ self._self_webapp_url = self_webapp_url
1784
+
1785
+ @property
1786
+ def show_setup_all(self):
1787
+ """Gets the show_setup_all of this Repository.
1788
+
1789
+ If checked, the Set Me Up help for all formats will always be shown, even if you don't have packages of that type uploaded. Otherwise, help will only be shown for packages that are in the repository. For example, if you have uploaded only NuGet packages, then the Set Me Up help for NuGet packages will be shown only.
1790
+
1791
+ :return: The show_setup_all of this Repository.
1792
+ :rtype: bool
1793
+ """
1794
+ return self._show_setup_all
1795
+
1796
+ @show_setup_all.setter
1797
+ def show_setup_all(self, show_setup_all):
1798
+ """Sets the show_setup_all of this Repository.
1799
+
1800
+ If checked, the Set Me Up help for all formats will always be shown, even if you don't have packages of that type uploaded. Otherwise, help will only be shown for packages that are in the repository. For example, if you have uploaded only NuGet packages, then the Set Me Up help for NuGet packages will be shown only.
1801
+
1802
+ :param show_setup_all: The show_setup_all of this Repository.
1803
+ :type: bool
1804
+ """
1805
+
1806
+ self._show_setup_all = show_setup_all
1807
+
1808
+ @property
1809
+ def size(self):
1810
+ """Gets the size of this Repository.
1811
+
1812
+ The calculated size of the repository.
1813
+
1814
+ :return: The size of this Repository.
1815
+ :rtype: int
1816
+ """
1817
+ return self._size
1818
+
1819
+ @size.setter
1820
+ def size(self, size):
1821
+ """Sets the size of this Repository.
1822
+
1823
+ The calculated size of the repository.
1824
+
1825
+ :param size: The size of this Repository.
1826
+ :type: int
1827
+ """
1828
+
1829
+ self._size = size
1830
+
1831
+ @property
1832
+ def size_str(self):
1833
+ """Gets the size_str of this Repository.
1834
+
1835
+ The calculated size of the repository (human readable).
1836
+
1837
+ :return: The size_str of this Repository.
1838
+ :rtype: str
1839
+ """
1840
+ return self._size_str
1841
+
1842
+ @size_str.setter
1843
+ def size_str(self, size_str):
1844
+ """Sets the size_str of this Repository.
1845
+
1846
+ The calculated size of the repository (human readable).
1847
+
1848
+ :param size_str: The size_str of this Repository.
1849
+ :type: str
1850
+ """
1851
+
1852
+ self._size_str = size_str
1853
+
1854
+ @property
1855
+ def slug(self):
1856
+ """Gets the slug of this Repository.
1857
+
1858
+ The slug identifies the repository in URIs.
1859
+
1860
+ :return: The slug of this Repository.
1861
+ :rtype: str
1862
+ """
1863
+ return self._slug
1864
+
1865
+ @slug.setter
1866
+ def slug(self, slug):
1867
+ """Sets the slug of this Repository.
1868
+
1869
+ The slug identifies the repository in URIs.
1870
+
1871
+ :param slug: The slug of this Repository.
1872
+ :type: str
1873
+ """
1874
+
1875
+ self._slug = slug
1876
+
1877
+ @property
1878
+ def slug_perm(self):
1879
+ """Gets the slug_perm of this Repository.
1880
+
1881
+ The slug_perm immutably identifies the repository. It will never change once a repository has been created.
1882
+
1883
+ :return: The slug_perm of this Repository.
1884
+ :rtype: str
1885
+ """
1886
+ return self._slug_perm
1887
+
1888
+ @slug_perm.setter
1889
+ def slug_perm(self, slug_perm):
1890
+ """Sets the slug_perm of this Repository.
1891
+
1892
+ The slug_perm immutably identifies the repository. It will never change once a repository has been created.
1893
+
1894
+ :param slug_perm: The slug_perm of this Repository.
1895
+ :type: str
1896
+ """
1897
+ if (self._configuration.client_side_validation and
1898
+ slug_perm is not None and len(slug_perm) < 1):
1899
+ raise ValueError("Invalid value for `slug_perm`, length must be greater than or equal to `1`") # noqa: E501
1900
+ if (self._configuration.client_side_validation and
1901
+ slug_perm is not None and not re.search('^[-a-zA-Z0-9_]+$', slug_perm)): # noqa: E501
1902
+ raise ValueError(r"Invalid value for `slug_perm`, must be a follow pattern or equal to `/^[-a-zA-Z0-9_]+$/`") # noqa: E501
1903
+
1904
+ self._slug_perm = slug_perm
1905
+
1906
+ @property
1907
+ def storage_region(self):
1908
+ """Gets the storage_region of this Repository.
1909
+
1910
+ The Cloudsmith region in which package files are stored.
1911
+
1912
+ :return: The storage_region of this Repository.
1913
+ :rtype: str
1914
+ """
1915
+ return self._storage_region
1916
+
1917
+ @storage_region.setter
1918
+ def storage_region(self, storage_region):
1919
+ """Sets the storage_region of this Repository.
1920
+
1921
+ The Cloudsmith region in which package files are stored.
1922
+
1923
+ :param storage_region: The storage_region of this Repository.
1924
+ :type: str
1925
+ """
1926
+
1927
+ self._storage_region = storage_region
1928
+
1929
+ @property
1930
+ def strict_npm_validation(self):
1931
+ """Gets the strict_npm_validation of this Repository.
1932
+
1933
+ If checked, npm packages will be validated strictly to ensure the package matches specifcation. You can turn this on if you want to guarantee that the packages will work with npm-cli and other tools correctly.
1934
+
1935
+ :return: The strict_npm_validation of this Repository.
1936
+ :rtype: bool
1937
+ """
1938
+ return self._strict_npm_validation
1939
+
1940
+ @strict_npm_validation.setter
1941
+ def strict_npm_validation(self, strict_npm_validation):
1942
+ """Sets the strict_npm_validation of this Repository.
1943
+
1944
+ If checked, npm packages will be validated strictly to ensure the package matches specifcation. You can turn this on if you want to guarantee that the packages will work with npm-cli and other tools correctly.
1945
+
1946
+ :param strict_npm_validation: The strict_npm_validation of this Repository.
1947
+ :type: bool
1948
+ """
1949
+
1950
+ self._strict_npm_validation = strict_npm_validation
1951
+
1952
+ @property
1953
+ def tag_pre_releases_as_latest(self):
1954
+ """Gets the tag_pre_releases_as_latest of this Repository.
1955
+
1956
+ If checked, packages pushed with a pre-release component on that version will be marked with the 'latest' tag. Note that if unchecked, a repository containing ONLY pre-release versions, will have no version marked latest which may cause incompatibility with native tools
1957
+
1958
+ :return: The tag_pre_releases_as_latest of this Repository.
1959
+ :rtype: bool
1960
+ """
1961
+ return self._tag_pre_releases_as_latest
1962
+
1963
+ @tag_pre_releases_as_latest.setter
1964
+ def tag_pre_releases_as_latest(self, tag_pre_releases_as_latest):
1965
+ """Sets the tag_pre_releases_as_latest of this Repository.
1966
+
1967
+ If checked, packages pushed with a pre-release component on that version will be marked with the 'latest' tag. Note that if unchecked, a repository containing ONLY pre-release versions, will have no version marked latest which may cause incompatibility with native tools
1968
+
1969
+ :param tag_pre_releases_as_latest: The tag_pre_releases_as_latest of this Repository.
1970
+ :type: bool
1971
+ """
1972
+
1973
+ self._tag_pre_releases_as_latest = tag_pre_releases_as_latest
1974
+
1975
+ @property
1976
+ def use_debian_labels(self):
1977
+ """Gets the use_debian_labels of this Repository.
1978
+
1979
+ If checked, a 'Label' field will be present in Debian-based repositories. It will contain a string that identifies the entitlement token used to authenticate the repository, in the form of 'source=t-<identifier>'; or 'source=none' if no token was used. You can use this to help with pinning.
1980
+
1981
+ :return: The use_debian_labels of this Repository.
1982
+ :rtype: bool
1983
+ """
1984
+ return self._use_debian_labels
1985
+
1986
+ @use_debian_labels.setter
1987
+ def use_debian_labels(self, use_debian_labels):
1988
+ """Sets the use_debian_labels of this Repository.
1989
+
1990
+ If checked, a 'Label' field will be present in Debian-based repositories. It will contain a string that identifies the entitlement token used to authenticate the repository, in the form of 'source=t-<identifier>'; or 'source=none' if no token was used. You can use this to help with pinning.
1991
+
1992
+ :param use_debian_labels: The use_debian_labels of this Repository.
1993
+ :type: bool
1994
+ """
1995
+
1996
+ self._use_debian_labels = use_debian_labels
1997
+
1998
+ @property
1999
+ def use_default_cargo_upstream(self):
2000
+ """Gets the use_default_cargo_upstream of this Repository.
2001
+
2002
+ If checked, dependencies of uploaded Cargo crates which do not set an explicit value for \"registry\" will be assumed to be available from crates.io. If unchecked, dependencies with unspecified \"registry\" values will be assumed to be available in the registry being uploaded to. Uncheck this if you want to ensure that dependencies are only ever installed from Cloudsmith unless explicitly specified as belong to another registry.
2003
+
2004
+ :return: The use_default_cargo_upstream of this Repository.
2005
+ :rtype: bool
2006
+ """
2007
+ return self._use_default_cargo_upstream
2008
+
2009
+ @use_default_cargo_upstream.setter
2010
+ def use_default_cargo_upstream(self, use_default_cargo_upstream):
2011
+ """Sets the use_default_cargo_upstream of this Repository.
2012
+
2013
+ If checked, dependencies of uploaded Cargo crates which do not set an explicit value for \"registry\" will be assumed to be available from crates.io. If unchecked, dependencies with unspecified \"registry\" values will be assumed to be available in the registry being uploaded to. Uncheck this if you want to ensure that dependencies are only ever installed from Cloudsmith unless explicitly specified as belong to another registry.
2014
+
2015
+ :param use_default_cargo_upstream: The use_default_cargo_upstream of this Repository.
2016
+ :type: bool
2017
+ """
2018
+
2019
+ self._use_default_cargo_upstream = use_default_cargo_upstream
2020
+
2021
+ @property
2022
+ def use_entitlements_privilege(self):
2023
+ """Gets the use_entitlements_privilege of this Repository.
2024
+
2025
+ This defines the minimum level of privilege required for a user to see/use entitlement tokens with private repositories. If a user does not have the permission, they will only be able to download packages using other credentials, such as email/password via basic authentication. Use this if you want to force users to only use their user-based token, which is tied to their access (if removed, they can't use it).
2026
+
2027
+ :return: The use_entitlements_privilege of this Repository.
2028
+ :rtype: str
2029
+ """
2030
+ return self._use_entitlements_privilege
2031
+
2032
+ @use_entitlements_privilege.setter
2033
+ def use_entitlements_privilege(self, use_entitlements_privilege):
2034
+ """Sets the use_entitlements_privilege of this Repository.
2035
+
2036
+ This defines the minimum level of privilege required for a user to see/use entitlement tokens with private repositories. If a user does not have the permission, they will only be able to download packages using other credentials, such as email/password via basic authentication. Use this if you want to force users to only use their user-based token, which is tied to their access (if removed, they can't use it).
2037
+
2038
+ :param use_entitlements_privilege: The use_entitlements_privilege of this Repository.
2039
+ :type: str
2040
+ """
2041
+ allowed_values = ["Admin", "Write", "Read"] # noqa: E501
2042
+ if (self._configuration.client_side_validation and
2043
+ use_entitlements_privilege not in allowed_values):
2044
+ raise ValueError(
2045
+ "Invalid value for `use_entitlements_privilege` ({0}), must be one of {1}" # noqa: E501
2046
+ .format(use_entitlements_privilege, allowed_values)
2047
+ )
2048
+
2049
+ self._use_entitlements_privilege = use_entitlements_privilege
2050
+
2051
+ @property
2052
+ def use_noarch_packages(self):
2053
+ """Gets the use_noarch_packages of this Repository.
2054
+
2055
+ If checked, noarch packages (if supported) are enabled in installations/configurations. A noarch package is one that is not tied to specific system architecture (like i686).
2056
+
2057
+ :return: The use_noarch_packages of this Repository.
2058
+ :rtype: bool
2059
+ """
2060
+ return self._use_noarch_packages
2061
+
2062
+ @use_noarch_packages.setter
2063
+ def use_noarch_packages(self, use_noarch_packages):
2064
+ """Sets the use_noarch_packages of this Repository.
2065
+
2066
+ If checked, noarch packages (if supported) are enabled in installations/configurations. A noarch package is one that is not tied to specific system architecture (like i686).
2067
+
2068
+ :param use_noarch_packages: The use_noarch_packages of this Repository.
2069
+ :type: bool
2070
+ """
2071
+
2072
+ self._use_noarch_packages = use_noarch_packages
2073
+
2074
+ @property
2075
+ def use_source_packages(self):
2076
+ """Gets the use_source_packages of this Repository.
2077
+
2078
+ If checked, source packages (if supported) are enabled in installations/configurations. A source package is one that contains source code rather than built binaries.
2079
+
2080
+ :return: The use_source_packages of this Repository.
2081
+ :rtype: bool
2082
+ """
2083
+ return self._use_source_packages
2084
+
2085
+ @use_source_packages.setter
2086
+ def use_source_packages(self, use_source_packages):
2087
+ """Sets the use_source_packages of this Repository.
2088
+
2089
+ If checked, source packages (if supported) are enabled in installations/configurations. A source package is one that contains source code rather than built binaries.
2090
+
2091
+ :param use_source_packages: The use_source_packages of this Repository.
2092
+ :type: bool
2093
+ """
2094
+
2095
+ self._use_source_packages = use_source_packages
2096
+
2097
+ @property
2098
+ def use_vulnerability_scanning(self):
2099
+ """Gets the use_vulnerability_scanning of this Repository.
2100
+
2101
+ If checked, vulnerability scanning will be enabled for all supported packages within this repository.
2102
+
2103
+ :return: The use_vulnerability_scanning of this Repository.
2104
+ :rtype: bool
2105
+ """
2106
+ return self._use_vulnerability_scanning
2107
+
2108
+ @use_vulnerability_scanning.setter
2109
+ def use_vulnerability_scanning(self, use_vulnerability_scanning):
2110
+ """Sets the use_vulnerability_scanning of this Repository.
2111
+
2112
+ If checked, vulnerability scanning will be enabled for all supported packages within this repository.
2113
+
2114
+ :param use_vulnerability_scanning: The use_vulnerability_scanning of this Repository.
2115
+ :type: bool
2116
+ """
2117
+
2118
+ self._use_vulnerability_scanning = use_vulnerability_scanning
2119
+
2120
+ @property
2121
+ def user_entitlements_enabled(self):
2122
+ """Gets the user_entitlements_enabled of this Repository.
2123
+
2124
+ If checked, users can use and manage their own user-specific entitlement token for the repository (if private). Otherwise, user-specific entitlements are disabled for all users.
2125
+
2126
+ :return: The user_entitlements_enabled of this Repository.
2127
+ :rtype: bool
2128
+ """
2129
+ return self._user_entitlements_enabled
2130
+
2131
+ @user_entitlements_enabled.setter
2132
+ def user_entitlements_enabled(self, user_entitlements_enabled):
2133
+ """Sets the user_entitlements_enabled of this Repository.
2134
+
2135
+ If checked, users can use and manage their own user-specific entitlement token for the repository (if private). Otherwise, user-specific entitlements are disabled for all users.
2136
+
2137
+ :param user_entitlements_enabled: The user_entitlements_enabled of this Repository.
2138
+ :type: bool
2139
+ """
2140
+
2141
+ self._user_entitlements_enabled = user_entitlements_enabled
2142
+
2143
+ @property
2144
+ def view_statistics(self):
2145
+ """Gets the view_statistics of this Repository.
2146
+
2147
+ This defines the minimum level of privilege required for a user to view repository statistics, to include entitlement-based usage, if applicable. If a user does not have the permission, they won't be able to view any statistics, either via the UI, API or CLI.
2148
+
2149
+ :return: The view_statistics of this Repository.
2150
+ :rtype: str
2151
+ """
2152
+ return self._view_statistics
2153
+
2154
+ @view_statistics.setter
2155
+ def view_statistics(self, view_statistics):
2156
+ """Sets the view_statistics of this Repository.
2157
+
2158
+ This defines the minimum level of privilege required for a user to view repository statistics, to include entitlement-based usage, if applicable. If a user does not have the permission, they won't be able to view any statistics, either via the UI, API or CLI.
2159
+
2160
+ :param view_statistics: The view_statistics of this Repository.
2161
+ :type: str
2162
+ """
2163
+ allowed_values = ["Admin", "Write", "Read"] # noqa: E501
2164
+ if (self._configuration.client_side_validation and
2165
+ view_statistics not in allowed_values):
2166
+ raise ValueError(
2167
+ "Invalid value for `view_statistics` ({0}), must be one of {1}" # noqa: E501
2168
+ .format(view_statistics, allowed_values)
2169
+ )
2170
+
2171
+ self._view_statistics = view_statistics
2172
+
2173
+ def to_dict(self):
2174
+ """Returns the model properties as a dict"""
2175
+ result = {}
2176
+
2177
+ for attr, _ in six.iteritems(self.swagger_types):
2178
+ value = getattr(self, attr)
2179
+ if isinstance(value, list):
2180
+ result[attr] = list(map(
2181
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
2182
+ value
2183
+ ))
2184
+ elif hasattr(value, "to_dict"):
2185
+ result[attr] = value.to_dict()
2186
+ elif isinstance(value, dict):
2187
+ result[attr] = dict(map(
2188
+ lambda item: (item[0], item[1].to_dict())
2189
+ if hasattr(item[1], "to_dict") else item,
2190
+ value.items()
2191
+ ))
2192
+ else:
2193
+ result[attr] = value
2194
+ if issubclass(Repository, dict):
2195
+ for key, value in self.items():
2196
+ result[key] = value
2197
+
2198
+ return result
2199
+
2200
+ def to_str(self):
2201
+ """Returns the string representation of the model"""
2202
+ return pprint.pformat(self.to_dict())
2203
+
2204
+ def __repr__(self):
2205
+ """For `print` and `pprint`"""
2206
+ return self.to_str()
2207
+
2208
+ def __eq__(self, other):
2209
+ """Returns true if both objects are equal"""
2210
+ if not isinstance(other, Repository):
2211
+ return False
2212
+
2213
+ return self.to_dict() == other.to_dict()
2214
+
2215
+ def __ne__(self, other):
2216
+ """Returns true if both objects are not equal"""
2217
+ if not isinstance(other, Repository):
2218
+ return True
2219
+
2220
+ return self.to_dict() != other.to_dict()
2221
+