cloudsmith-api 0.52.92 → 0.53.79

Sign up to get free protection for your applications and to get access to all the features.
Files changed (279) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +3 -5
  3. data/README.md +18 -16
  4. data/build.json +1 -1
  5. data/docs/AlpinePackageUpload.md +2 -1
  6. data/docs/BadgesApi.md +1 -6
  7. data/docs/ConanPackageUpload.md +2 -1
  8. data/docs/DistrosApi.md +2 -12
  9. data/docs/EntitlementUsageMetric.md +8 -0
  10. data/docs/EntitlementsApi.md +10 -60
  11. data/docs/EntitlementsCreate.md +4 -0
  12. data/docs/EntitlementsPartialUpdate.md +4 -0
  13. data/docs/EntitlementsRefresh.md +4 -0
  14. data/docs/FilesApi.md +5 -30
  15. data/docs/FormatsApi.md +2 -12
  16. data/docs/MavenPackageUpload.md +2 -1
  17. data/docs/MetricsApi.md +4 -14
  18. data/docs/NamespacesApi.md +2 -12
  19. data/docs/OrgsApi.md +2 -12
  20. data/docs/Package.md +2 -1
  21. data/docs/PackageCopy.md +2 -1
  22. data/docs/PackageMove.md +2 -1
  23. data/docs/PackagesApi.md +50 -300
  24. data/docs/Quota.md +8 -0
  25. data/docs/QuotaApi.md +228 -0
  26. data/docs/QuotaHistory.md +8 -0
  27. data/docs/QuotaHistoryHistory.md +13 -0
  28. data/docs/RatesApi.md +1 -6
  29. data/docs/RawPackageUpload.md +2 -1
  30. data/docs/ReposApi.md +6 -36
  31. data/docs/RepositoryToken.md +9 -0
  32. data/docs/RepositoryTokenRefresh.md +9 -0
  33. data/docs/RepositoryTokenSyncTokens.md +9 -0
  34. data/docs/StorageregionsApi.md +2 -12
  35. data/docs/UserApi.md +2 -12
  36. data/docs/UsersApi.md +1 -6
  37. data/docs/VagrantPackageUpload.md +2 -1
  38. data/docs/VulnerabilitiesApi.md +264 -0
  39. data/docs/VulnerabilityScanResults.md +15 -0
  40. data/docs/VulnerabilityScanResultsList.md +14 -0
  41. data/docs/WebhooksApi.md +5 -30
  42. data/lib/cloudsmith-api.rb +8 -1
  43. data/lib/cloudsmith-api/api/badges_api.rb +1 -1
  44. data/lib/cloudsmith-api/api/distros_api.rb +2 -2
  45. data/lib/cloudsmith-api/api/entitlements_api.rb +10 -10
  46. data/lib/cloudsmith-api/api/files_api.rb +5 -5
  47. data/lib/cloudsmith-api/api/formats_api.rb +2 -2
  48. data/lib/cloudsmith-api/api/metrics_api.rb +5 -5
  49. data/lib/cloudsmith-api/api/namespaces_api.rb +2 -2
  50. data/lib/cloudsmith-api/api/orgs_api.rb +2 -2
  51. data/lib/cloudsmith-api/api/packages_api.rb +50 -50
  52. data/lib/cloudsmith-api/api/quota_api.rb +227 -0
  53. data/lib/cloudsmith-api/api/rates_api.rb +1 -1
  54. data/lib/cloudsmith-api/api/repos_api.rb +6 -6
  55. data/lib/cloudsmith-api/api/storageregions_api.rb +2 -2
  56. data/lib/cloudsmith-api/api/user_api.rb +2 -2
  57. data/lib/cloudsmith-api/api/users_api.rb +1 -1
  58. data/lib/cloudsmith-api/api/vulnerabilities_api.rb +281 -0
  59. data/lib/cloudsmith-api/api/webhooks_api.rb +5 -5
  60. data/lib/cloudsmith-api/configuration.rb +0 -7
  61. data/lib/cloudsmith-api/models/alpine_package_upload.rb +15 -5
  62. data/lib/cloudsmith-api/models/conan_package_upload.rb +15 -5
  63. data/lib/cloudsmith-api/models/{entitlement_token_metric.rb → entitlement_usage_metric.rb} +11 -26
  64. data/lib/cloudsmith-api/models/entitlements_create.rb +41 -1
  65. data/lib/cloudsmith-api/models/entitlements_partial_update.rb +41 -1
  66. data/lib/cloudsmith-api/models/entitlements_refresh.rb +41 -1
  67. data/lib/cloudsmith-api/models/maven_package_upload.rb +15 -5
  68. data/lib/cloudsmith-api/models/package.rb +15 -5
  69. data/lib/cloudsmith-api/models/package_copy.rb +15 -5
  70. data/lib/cloudsmith-api/models/package_move.rb +15 -5
  71. data/lib/cloudsmith-api/models/quota.rb +194 -0
  72. data/lib/cloudsmith-api/models/quota_history.rb +196 -0
  73. data/lib/cloudsmith-api/models/quota_history_history.rb +239 -0
  74. data/lib/cloudsmith-api/models/raw_package_upload.rb +15 -5
  75. data/lib/cloudsmith-api/models/repository_token.rb +91 -1
  76. data/lib/cloudsmith-api/models/repository_token_refresh.rb +91 -1
  77. data/lib/cloudsmith-api/models/repository_token_sync_tokens.rb +91 -1
  78. data/lib/cloudsmith-api/models/vagrant_package_upload.rb +15 -5
  79. data/lib/cloudsmith-api/models/vulnerability_scan_results.rb +279 -0
  80. data/lib/cloudsmith-api/models/vulnerability_scan_results_list.rb +264 -0
  81. data/lib/cloudsmith-api/version.rb +1 -1
  82. data/spec/api/metrics_api_spec.rb +1 -1
  83. data/spec/api/quota_api_spec.rb +83 -0
  84. data/spec/api/vulnerabilities_api_spec.rb +95 -0
  85. data/spec/models/alpine_package_upload_spec.rb +6 -0
  86. data/spec/models/conan_package_upload_spec.rb +6 -0
  87. data/spec/models/{entitlement_token_metric_spec.rb → entitlement_usage_metric_spec.rb} +7 -13
  88. data/spec/models/entitlements_create_spec.rb +24 -0
  89. data/spec/models/entitlements_partial_update_spec.rb +24 -0
  90. data/spec/models/entitlements_refresh_spec.rb +24 -0
  91. data/spec/models/maven_package_upload_spec.rb +6 -0
  92. data/spec/models/package_copy_spec.rb +6 -0
  93. data/spec/models/package_move_spec.rb +6 -0
  94. data/spec/models/package_spec.rb +6 -0
  95. data/spec/models/quota_history_history_spec.rb +72 -0
  96. data/spec/models/quota_history_spec.rb +42 -0
  97. data/spec/models/quota_spec.rb +42 -0
  98. data/spec/models/raw_package_upload_spec.rb +6 -0
  99. data/spec/models/repository_token_refresh_spec.rb +54 -0
  100. data/spec/models/repository_token_spec.rb +54 -0
  101. data/spec/models/repository_token_sync_tokens_spec.rb +54 -0
  102. data/spec/models/vagrant_package_upload_spec.rb +6 -0
  103. data/spec/models/vulnerability_scan_results_list_spec.rb +78 -0
  104. data/spec/models/vulnerability_scan_results_spec.rb +84 -0
  105. data/vendor/bundle/ruby/2.6.0/cache/crack-0.4.4.gem +0 -0
  106. data/vendor/bundle/ruby/2.6.0/cache/rspec-core-3.9.3.gem +0 -0
  107. data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/autotest-fsevent-0.2.17/gem_make.out +1 -1
  108. data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/ffi-1.13.1/gem_make.out +2 -2
  109. data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/json-2.3.1/gem_make.out +1 -1
  110. data/vendor/bundle/ruby/2.6.0/gems/{crack-0.4.3 → crack-0.4.4}/lib/crack.rb +0 -0
  111. data/vendor/bundle/ruby/2.6.0/gems/{crack-0.4.3 → crack-0.4.4}/lib/crack/json.rb +5 -18
  112. data/vendor/bundle/ruby/2.6.0/gems/{crack-0.4.3 → crack-0.4.4}/lib/crack/util.rb +0 -0
  113. data/vendor/bundle/ruby/2.6.0/gems/crack-0.4.4/lib/crack/version.rb +3 -0
  114. data/vendor/bundle/ruby/2.6.0/gems/{crack-0.4.3 → crack-0.4.4}/lib/crack/xml.rb +0 -0
  115. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/Makefile +3 -3
  116. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/.document +0 -0
  117. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/.yardopts +0 -0
  118. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/Changelog.md +17 -0
  119. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/LICENSE.md +0 -0
  120. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/README.md +3 -3
  121. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/exe/rspec +0 -0
  122. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/lib/rspec/autorun.rb +0 -0
  123. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/lib/rspec/core.rb +0 -0
  124. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/lib/rspec/core/backtrace_formatter.rb +0 -0
  125. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/lib/rspec/core/bisect/coordinator.rb +0 -0
  126. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/lib/rspec/core/bisect/example_minimizer.rb +0 -0
  127. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/lib/rspec/core/bisect/fork_runner.rb +6 -3
  128. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/lib/rspec/core/bisect/server.rb +0 -0
  129. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/lib/rspec/core/bisect/shell_command.rb +0 -0
  130. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/lib/rspec/core/bisect/shell_runner.rb +0 -0
  131. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/lib/rspec/core/bisect/utilities.rb +0 -0
  132. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/lib/rspec/core/configuration.rb +10 -7
  133. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/lib/rspec/core/configuration_options.rb +0 -0
  134. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/lib/rspec/core/did_you_mean.rb +0 -0
  135. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/lib/rspec/core/drb.rb +0 -0
  136. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/lib/rspec/core/dsl.rb +0 -0
  137. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/lib/rspec/core/example.rb +10 -3
  138. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/lib/rspec/core/example_group.rb +2 -1
  139. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/lib/rspec/core/example_status_persister.rb +0 -0
  140. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/lib/rspec/core/filter_manager.rb +0 -0
  141. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/lib/rspec/core/flat_map.rb +0 -0
  142. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/lib/rspec/core/formatters.rb +0 -0
  143. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/lib/rspec/core/formatters/base_bisect_formatter.rb +0 -0
  144. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/lib/rspec/core/formatters/base_formatter.rb +0 -0
  145. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/lib/rspec/core/formatters/base_text_formatter.rb +0 -0
  146. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/lib/rspec/core/formatters/bisect_drb_formatter.rb +0 -0
  147. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/lib/rspec/core/formatters/bisect_progress_formatter.rb +0 -0
  148. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/lib/rspec/core/formatters/console_codes.rb +0 -0
  149. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/lib/rspec/core/formatters/deprecation_formatter.rb +0 -0
  150. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/lib/rspec/core/formatters/documentation_formatter.rb +0 -0
  151. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/lib/rspec/core/formatters/exception_presenter.rb +10 -2
  152. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/lib/rspec/core/formatters/failure_list_formatter.rb +0 -0
  153. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/lib/rspec/core/formatters/fallback_message_formatter.rb +0 -0
  154. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/lib/rspec/core/formatters/helpers.rb +0 -0
  155. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/lib/rspec/core/formatters/html_formatter.rb +0 -0
  156. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/lib/rspec/core/formatters/html_printer.rb +0 -0
  157. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/lib/rspec/core/formatters/html_snippet_extractor.rb +0 -0
  158. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/lib/rspec/core/formatters/json_formatter.rb +0 -0
  159. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/lib/rspec/core/formatters/profile_formatter.rb +0 -0
  160. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/lib/rspec/core/formatters/progress_formatter.rb +0 -0
  161. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/lib/rspec/core/formatters/protocol.rb +0 -0
  162. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/lib/rspec/core/formatters/snippet_extractor.rb +0 -0
  163. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/lib/rspec/core/formatters/syntax_highlighter.rb +0 -0
  164. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/lib/rspec/core/hooks.rb +14 -9
  165. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/lib/rspec/core/invocations.rb +1 -1
  166. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/lib/rspec/core/memoized_helpers.rb +0 -0
  167. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/lib/rspec/core/metadata.rb +0 -0
  168. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/lib/rspec/core/metadata_filter.rb +0 -0
  169. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/lib/rspec/core/minitest_assertions_adapter.rb +0 -0
  170. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/lib/rspec/core/mocking_adapters/flexmock.rb +0 -0
  171. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/lib/rspec/core/mocking_adapters/mocha.rb +0 -0
  172. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/lib/rspec/core/mocking_adapters/null.rb +0 -0
  173. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/lib/rspec/core/mocking_adapters/rr.rb +0 -0
  174. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/lib/rspec/core/mocking_adapters/rspec.rb +0 -0
  175. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/lib/rspec/core/notifications.rb +0 -0
  176. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/lib/rspec/core/option_parser.rb +0 -0
  177. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/lib/rspec/core/ordering.rb +0 -0
  178. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/lib/rspec/core/output_wrapper.rb +0 -0
  179. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/lib/rspec/core/pending.rb +0 -0
  180. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/lib/rspec/core/profiler.rb +0 -0
  181. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/lib/rspec/core/project_initializer.rb +0 -0
  182. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/lib/rspec/core/project_initializer/.rspec +0 -0
  183. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/lib/rspec/core/project_initializer/spec/spec_helper.rb +0 -0
  184. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/lib/rspec/core/rake_task.rb +0 -0
  185. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/lib/rspec/core/reporter.rb +0 -0
  186. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/lib/rspec/core/ruby_project.rb +0 -0
  187. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/lib/rspec/core/runner.rb +0 -0
  188. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/lib/rspec/core/sandbox.rb +0 -0
  189. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/lib/rspec/core/set.rb +0 -0
  190. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/lib/rspec/core/shared_context.rb +0 -0
  191. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/lib/rspec/core/shared_example_group.rb +0 -0
  192. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/lib/rspec/core/shell_escape.rb +0 -0
  193. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/lib/rspec/core/test_unit_assertions_adapter.rb +0 -0
  194. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/lib/rspec/core/version.rb +1 -1
  195. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/lib/rspec/core/warnings.rb +0 -0
  196. data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.9.3}/lib/rspec/core/world.rb +1 -0
  197. data/vendor/bundle/ruby/2.6.0/specifications/{crack-0.4.3.gemspec → crack-0.4.4.gemspec} +3 -15
  198. data/vendor/bundle/ruby/2.6.0/specifications/{rspec-core-3.9.2.gemspec → rspec-core-3.9.3.gemspec} +5 -5
  199. data/vendor/bundle/ruby/2.6.0/specifications/sys-uname-1.2.1.gemspec +1 -1
  200. metadata +213 -260
  201. data/docs/EntitlementTokenMetric.md +0 -9
  202. data/vendor/bundle/ruby/2.6.0/bin/safe_yaml +0 -27
  203. data/vendor/bundle/ruby/2.6.0/cache/crack-0.4.3.gem +0 -0
  204. data/vendor/bundle/ruby/2.6.0/cache/rspec-core-3.9.2.gem +0 -0
  205. data/vendor/bundle/ruby/2.6.0/cache/safe_yaml-1.0.5.gem +0 -0
  206. data/vendor/bundle/ruby/2.6.0/gems/crack-0.4.3/.gitignore +0 -8
  207. data/vendor/bundle/ruby/2.6.0/gems/crack-0.4.3/.travis.yml +0 -14
  208. data/vendor/bundle/ruby/2.6.0/gems/crack-0.4.3/Gemfile +0 -5
  209. data/vendor/bundle/ruby/2.6.0/gems/crack-0.4.3/History +0 -25
  210. data/vendor/bundle/ruby/2.6.0/gems/crack-0.4.3/LICENSE +0 -20
  211. data/vendor/bundle/ruby/2.6.0/gems/crack-0.4.3/README.md +0 -46
  212. data/vendor/bundle/ruby/2.6.0/gems/crack-0.4.3/crack.gemspec +0 -20
  213. data/vendor/bundle/ruby/2.6.0/gems/crack-0.4.3/lib/crack/version.rb +0 -3
  214. data/vendor/bundle/ruby/2.6.0/gems/crack-0.4.3/script/bootstrap +0 -21
  215. data/vendor/bundle/ruby/2.6.0/gems/crack-0.4.3/script/release +0 -42
  216. data/vendor/bundle/ruby/2.6.0/gems/crack-0.4.3/script/test +0 -25
  217. data/vendor/bundle/ruby/2.6.0/gems/crack-0.4.3/test/data/large_dataset.json +0 -139988
  218. data/vendor/bundle/ruby/2.6.0/gems/crack-0.4.3/test/data/twittersearch-firefox.json +0 -1
  219. data/vendor/bundle/ruby/2.6.0/gems/crack-0.4.3/test/data/twittersearch-ie.json +0 -1
  220. data/vendor/bundle/ruby/2.6.0/gems/crack-0.4.3/test/hash_test.rb +0 -26
  221. data/vendor/bundle/ruby/2.6.0/gems/crack-0.4.3/test/json_test.rb +0 -91
  222. data/vendor/bundle/ruby/2.6.0/gems/crack-0.4.3/test/parser_test.rb +0 -27
  223. data/vendor/bundle/ruby/2.6.0/gems/crack-0.4.3/test/string_test.rb +0 -31
  224. data/vendor/bundle/ruby/2.6.0/gems/crack-0.4.3/test/test_helper.rb +0 -3
  225. data/vendor/bundle/ruby/2.6.0/gems/crack-0.4.3/test/xml_test.rb +0 -514
  226. data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/.gitignore +0 -3
  227. data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/.travis.yml +0 -48
  228. data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/CHANGES.md +0 -154
  229. data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/Gemfile +0 -11
  230. data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/LICENSE.txt +0 -22
  231. data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/README.md +0 -191
  232. data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/Rakefile +0 -26
  233. data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/bin/safe_yaml +0 -75
  234. data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/bundle_install_all_ruby_versions.sh +0 -11
  235. data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml.rb +0 -94
  236. data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/deep.rb +0 -34
  237. data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/libyaml_checker.rb +0 -36
  238. data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/load.rb +0 -181
  239. data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/parse/date.rb +0 -37
  240. data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/parse/hexadecimal.rb +0 -12
  241. data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/parse/sexagesimal.rb +0 -26
  242. data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/psych_handler.rb +0 -99
  243. data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/psych_resolver.rb +0 -52
  244. data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/resolver.rb +0 -94
  245. data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/safe_to_ruby_visitor.rb +0 -29
  246. data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/store.rb +0 -39
  247. data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/syck_hack.rb +0 -36
  248. data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/syck_node_monkeypatch.rb +0 -43
  249. data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/syck_resolver.rb +0 -38
  250. data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/transform.rb +0 -41
  251. data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/transform/to_boolean.rb +0 -21
  252. data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/transform/to_date.rb +0 -13
  253. data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/transform/to_float.rb +0 -33
  254. data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/transform/to_integer.rb +0 -26
  255. data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/transform/to_nil.rb +0 -18
  256. data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/transform/to_symbol.rb +0 -17
  257. data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/transform/transformation_map.rb +0 -47
  258. data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/lib/safe_yaml/version.rb +0 -3
  259. data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/run_specs_all_ruby_versions.sh +0 -38
  260. data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/safe_yaml.gemspec +0 -19
  261. data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/spec/exploit.1.9.2.yaml +0 -2
  262. data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/spec/exploit.1.9.3.yaml +0 -2
  263. data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/spec/issue48.txt +0 -20
  264. data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/spec/issue49.yml +0 -0
  265. data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/spec/libyaml_checker_spec.rb +0 -69
  266. data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/spec/psych_resolver_spec.rb +0 -10
  267. data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/spec/resolver_specs.rb +0 -278
  268. data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/spec/safe_yaml_spec.rb +0 -731
  269. data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/spec/spec_helper.rb +0 -42
  270. data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/spec/store_spec.rb +0 -57
  271. data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/spec/support/exploitable_back_door.rb +0 -29
  272. data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/spec/syck_resolver_spec.rb +0 -10
  273. data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/spec/transform/base64_spec.rb +0 -11
  274. data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/spec/transform/to_date_spec.rb +0 -60
  275. data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/spec/transform/to_float_spec.rb +0 -42
  276. data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/spec/transform/to_integer_spec.rb +0 -64
  277. data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/spec/transform/to_symbol_spec.rb +0 -51
  278. data/vendor/bundle/ruby/2.6.0/gems/safe_yaml-1.0.5/spec/yaml_spec.rb +0 -15
  279. data/vendor/bundle/ruby/2.6.0/specifications/safe_yaml-1.0.5.gemspec +0 -23
@@ -4,6 +4,8 @@
4
4
  Name | Type | Description | Notes
5
5
  ------------ | ------------- | ------------- | -------------
6
6
  **is_active** | **BOOLEAN** | If enabled, the token will allow downloads based on configured restrictions (if any). | [optional]
7
+ **limit_bandwidth** | **Integer** | The maximum download bandwidth allowed for the token. Values are expressed as the selected unit of bandwidth. Please note that since downloads are calculated asynchronously (after the download happens), the limit may not be imposed immediately but at a later point. | [optional]
8
+ **limit_bandwidth_unit** | **String** | None | [optional]
7
9
  **limit_date_range_from** | **String** | The starting date/time the token is allowed to be used from. | [optional]
8
10
  **limit_date_range_to** | **String** | The ending date/time the token is allowed to be used until. | [optional]
9
11
  **limit_num_clients** | **Integer** | The maximum number of unique clients allowed for the token. Please note that since clients are calculated asynchronously (after the download happens), the limit may not be imposed immediately but at a later point. | [optional]
@@ -12,6 +14,8 @@ Name | Type | Description | Notes
12
14
  **limit_path_query** | **String** | The path-based search query to apply to restrict downloads to. This supports boolean logic operators such as OR/AND/NOT and parentheses for grouping. The path evaluated does not include the domain name, the namespace, the entitlement code used, the package format, etc. and it always starts with a forward slash. | [optional]
13
15
  **metadata** | **Object** | None | [optional]
14
16
  **name** | **String** | None |
17
+ **scheduled_reset_at** | **String** | The time at which the scheduled reset period has elapsed and the token limits were automatically reset to zero. | [optional]
18
+ **scheduled_reset_period** | **String** | None | [optional]
15
19
  **token** | **String** | None | [optional]
16
20
 
17
21
 
@@ -4,6 +4,8 @@
4
4
  Name | Type | Description | Notes
5
5
  ------------ | ------------- | ------------- | -------------
6
6
  **is_active** | **BOOLEAN** | If enabled, the token will allow downloads based on configured restrictions (if any). | [optional]
7
+ **limit_bandwidth** | **Integer** | The maximum download bandwidth allowed for the token. Values are expressed as the selected unit of bandwidth. Please note that since downloads are calculated asynchronously (after the download happens), the limit may not be imposed immediately but at a later point. | [optional]
8
+ **limit_bandwidth_unit** | **String** | None | [optional]
7
9
  **limit_date_range_from** | **String** | The starting date/time the token is allowed to be used from. | [optional]
8
10
  **limit_date_range_to** | **String** | The ending date/time the token is allowed to be used until. | [optional]
9
11
  **limit_num_clients** | **Integer** | The maximum number of unique clients allowed for the token. Please note that since clients are calculated asynchronously (after the download happens), the limit may not be imposed immediately but at a later point. | [optional]
@@ -12,6 +14,8 @@ Name | Type | Description | Notes
12
14
  **limit_path_query** | **String** | The path-based search query to apply to restrict downloads to. This supports boolean logic operators such as OR/AND/NOT and parentheses for grouping. The path evaluated does not include the domain name, the namespace, the entitlement code used, the package format, etc. and it always starts with a forward slash. | [optional]
13
15
  **metadata** | **Object** | None | [optional]
14
16
  **name** | **String** | None | [optional]
17
+ **scheduled_reset_at** | **String** | The time at which the scheduled reset period has elapsed and the token limits were automatically reset to zero. | [optional]
18
+ **scheduled_reset_period** | **String** | None | [optional]
15
19
  **token** | **String** | None | [optional]
16
20
 
17
21
 
@@ -4,6 +4,8 @@
4
4
  Name | Type | Description | Notes
5
5
  ------------ | ------------- | ------------- | -------------
6
6
  **is_active** | **BOOLEAN** | If enabled, the token will allow downloads based on configured restrictions (if any). | [optional]
7
+ **limit_bandwidth** | **Integer** | The maximum download bandwidth allowed for the token. Values are expressed as the selected unit of bandwidth. Please note that since downloads are calculated asynchronously (after the download happens), the limit may not be imposed immediately but at a later point. | [optional]
8
+ **limit_bandwidth_unit** | **String** | None | [optional]
7
9
  **limit_date_range_from** | **String** | The starting date/time the token is allowed to be used from. | [optional]
8
10
  **limit_date_range_to** | **String** | The ending date/time the token is allowed to be used until. | [optional]
9
11
  **limit_num_clients** | **Integer** | The maximum number of unique clients allowed for the token. Please note that since clients are calculated asynchronously (after the download happens), the limit may not be imposed immediately but at a later point. | [optional]
@@ -11,6 +13,8 @@ Name | Type | Description | Notes
11
13
  **limit_package_query** | **String** | The package-based search query to apply to restrict downloads to. This uses the same syntax as the standard search used for repositories, and also supports boolean logic operators such as OR/AND/NOT and parentheses for grouping. This will still allow access to non-package files, such as metadata. | [optional]
12
14
  **limit_path_query** | **String** | The path-based search query to apply to restrict downloads to. This supports boolean logic operators such as OR/AND/NOT and parentheses for grouping. The path evaluated does not include the domain name, the namespace, the entitlement code used, the package format, etc. and it always starts with a forward slash. | [optional]
13
15
  **metadata** | **Object** | None | [optional]
16
+ **scheduled_reset_at** | **String** | The time at which the scheduled reset period has elapsed and the token limits were automatically reset to zero. | [optional]
17
+ **scheduled_reset_period** | **String** | None | [optional]
14
18
  **token** | **String** | None | [optional]
15
19
 
16
20
 
@@ -28,11 +28,6 @@ CloudsmithApi.configure do |config|
28
28
  config.api_key['X-Api-Key'] = 'YOUR API KEY'
29
29
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
30
30
  #config.api_key_prefix['X-Api-Key'] = 'Bearer'
31
-
32
- # Configure API key authorization: csrf_token
33
- config.api_key['X-CSRFToken'] = 'YOUR API KEY'
34
- # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
35
- #config.api_key_prefix['X-CSRFToken'] = 'Bearer'
36
31
  end
37
32
 
38
33
  api_instance = CloudsmithApi::FilesApi.new
@@ -70,7 +65,7 @@ nil (empty response body)
70
65
 
71
66
  ### Authorization
72
67
 
73
- [apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
68
+ [apikey](../README.md#apikey)
74
69
 
75
70
  ### HTTP request headers
76
71
 
@@ -96,11 +91,6 @@ CloudsmithApi.configure do |config|
96
91
  config.api_key['X-Api-Key'] = 'YOUR API KEY'
97
92
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
98
93
  #config.api_key_prefix['X-Api-Key'] = 'Bearer'
99
-
100
- # Configure API key authorization: csrf_token
101
- config.api_key['X-CSRFToken'] = 'YOUR API KEY'
102
- # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
103
- #config.api_key_prefix['X-CSRFToken'] = 'Bearer'
104
94
  end
105
95
 
106
96
  api_instance = CloudsmithApi::FilesApi.new
@@ -139,7 +129,7 @@ Name | Type | Description | Notes
139
129
 
140
130
  ### Authorization
141
131
 
142
- [apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
132
+ [apikey](../README.md#apikey)
143
133
 
144
134
  ### HTTP request headers
145
135
 
@@ -165,11 +155,6 @@ CloudsmithApi.configure do |config|
165
155
  config.api_key['X-Api-Key'] = 'YOUR API KEY'
166
156
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
167
157
  #config.api_key_prefix['X-Api-Key'] = 'Bearer'
168
-
169
- # Configure API key authorization: csrf_token
170
- config.api_key['X-CSRFToken'] = 'YOUR API KEY'
171
- # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
172
- #config.api_key_prefix['X-CSRFToken'] = 'Bearer'
173
158
  end
174
159
 
175
160
  api_instance = CloudsmithApi::FilesApi.new
@@ -205,7 +190,7 @@ Name | Type | Description | Notes
205
190
 
206
191
  ### Authorization
207
192
 
208
- [apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
193
+ [apikey](../README.md#apikey)
209
194
 
210
195
  ### HTTP request headers
211
196
 
@@ -231,11 +216,6 @@ CloudsmithApi.configure do |config|
231
216
  config.api_key['X-Api-Key'] = 'YOUR API KEY'
232
217
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
233
218
  #config.api_key_prefix['X-Api-Key'] = 'Bearer'
234
-
235
- # Configure API key authorization: csrf_token
236
- config.api_key['X-CSRFToken'] = 'YOUR API KEY'
237
- # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
238
- #config.api_key_prefix['X-CSRFToken'] = 'Bearer'
239
219
  end
240
220
 
241
221
  api_instance = CloudsmithApi::FilesApi.new
@@ -270,7 +250,7 @@ Name | Type | Description | Notes
270
250
 
271
251
  ### Authorization
272
252
 
273
- [apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
253
+ [apikey](../README.md#apikey)
274
254
 
275
255
  ### HTTP request headers
276
256
 
@@ -296,11 +276,6 @@ CloudsmithApi.configure do |config|
296
276
  config.api_key['X-Api-Key'] = 'YOUR API KEY'
297
277
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
298
278
  #config.api_key_prefix['X-Api-Key'] = 'Bearer'
299
-
300
- # Configure API key authorization: csrf_token
301
- config.api_key['X-CSRFToken'] = 'YOUR API KEY'
302
- # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
303
- #config.api_key_prefix['X-CSRFToken'] = 'Bearer'
304
279
  end
305
280
 
306
281
  api_instance = CloudsmithApi::FilesApi.new
@@ -335,7 +310,7 @@ nil (empty response body)
335
310
 
336
311
  ### Authorization
337
312
 
338
- [apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
313
+ [apikey](../README.md#apikey)
339
314
 
340
315
  ### HTTP request headers
341
316
 
@@ -25,11 +25,6 @@ CloudsmithApi.configure do |config|
25
25
  config.api_key['X-Api-Key'] = 'YOUR API KEY'
26
26
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
27
27
  #config.api_key_prefix['X-Api-Key'] = 'Bearer'
28
-
29
- # Configure API key authorization: csrf_token
30
- config.api_key['X-CSRFToken'] = 'YOUR API KEY'
31
- # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
32
- #config.api_key_prefix['X-CSRFToken'] = 'Bearer'
33
28
  end
34
29
 
35
30
  api_instance = CloudsmithApi::FormatsApi.new
@@ -52,7 +47,7 @@ This endpoint does not need any parameter.
52
47
 
53
48
  ### Authorization
54
49
 
55
- [apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
50
+ [apikey](../README.md#apikey)
56
51
 
57
52
  ### HTTP request headers
58
53
 
@@ -78,11 +73,6 @@ CloudsmithApi.configure do |config|
78
73
  config.api_key['X-Api-Key'] = 'YOUR API KEY'
79
74
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
80
75
  #config.api_key_prefix['X-Api-Key'] = 'Bearer'
81
-
82
- # Configure API key authorization: csrf_token
83
- config.api_key['X-CSRFToken'] = 'YOUR API KEY'
84
- # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
85
- #config.api_key_prefix['X-CSRFToken'] = 'Bearer'
86
76
  end
87
77
 
88
78
  api_instance = CloudsmithApi::FormatsApi.new
@@ -111,7 +101,7 @@ Name | Type | Description | Notes
111
101
 
112
102
  ### Authorization
113
103
 
114
- [apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
104
+ [apikey](../README.md#apikey)
115
105
 
116
106
  ### HTTP request headers
117
107
 
@@ -41,7 +41,7 @@ Name | Type | Description | Notes
41
41
  **self_html_url** | **String** | | [optional]
42
42
  **self_url** | **String** | | [optional]
43
43
  **size** | **Integer** | The calculated size of the package. | [optional]
44
- **slug** | **String** | | [optional]
44
+ **slug** | **String** | The public unique identifier for the package. | [optional]
45
45
  **slug_perm** | **String** | | [optional]
46
46
  **stage** | **String** | The synchronisation (in progress) stage of the package. | [optional]
47
47
  **stage_str** | **String** | | [optional]
@@ -62,5 +62,6 @@ Name | Type | Description | Notes
62
62
  **uploader_url** | **String** | | [optional]
63
63
  **version** | **String** | The raw version for this package. | [optional]
64
64
  **version_orig** | **String** | | [optional]
65
+ **vulnerability_scan_results_url** | **String** | | [optional]
65
66
 
66
67
 
@@ -9,7 +9,7 @@ Method | HTTP request | Description
9
9
 
10
10
 
11
11
  # **metrics_entitlements_usage_list**
12
- > Array<EntitlementTokenMetric> metrics_entitlements_usage_list(owner, repo, opts)
12
+ > Array<EntitlementUsageMetric> metrics_entitlements_usage_list(owner, repo, opts)
13
13
 
14
14
  View for listing entitlement token usage as a metric.
15
15
 
@@ -25,11 +25,6 @@ CloudsmithApi.configure do |config|
25
25
  config.api_key['X-Api-Key'] = 'YOUR API KEY'
26
26
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
27
27
  #config.api_key_prefix['X-Api-Key'] = 'Bearer'
28
-
29
- # Configure API key authorization: csrf_token
30
- config.api_key['X-CSRFToken'] = 'YOUR API KEY'
31
- # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
32
- #config.api_key_prefix['X-CSRFToken'] = 'Bearer'
33
28
  end
34
29
 
35
30
  api_instance = CloudsmithApi::MetricsApi.new
@@ -69,11 +64,11 @@ Name | Type | Description | Notes
69
64
 
70
65
  ### Return type
71
66
 
72
- [**Array<EntitlementTokenMetric>**](EntitlementTokenMetric.md)
67
+ [**Array<EntitlementUsageMetric>**](EntitlementUsageMetric.md)
73
68
 
74
69
  ### Authorization
75
70
 
76
- [apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
71
+ [apikey](../README.md#apikey)
77
72
 
78
73
  ### HTTP request headers
79
74
 
@@ -99,11 +94,6 @@ CloudsmithApi.configure do |config|
99
94
  config.api_key['X-Api-Key'] = 'YOUR API KEY'
100
95
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
101
96
  #config.api_key_prefix['X-Api-Key'] = 'Bearer'
102
-
103
- # Configure API key authorization: csrf_token
104
- config.api_key['X-CSRFToken'] = 'YOUR API KEY'
105
- # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
106
- #config.api_key_prefix['X-CSRFToken'] = 'Bearer'
107
97
  end
108
98
 
109
99
  api_instance = CloudsmithApi::MetricsApi.new
@@ -147,7 +137,7 @@ Name | Type | Description | Notes
147
137
 
148
138
  ### Authorization
149
139
 
150
- [apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
140
+ [apikey](../README.md#apikey)
151
141
 
152
142
  ### HTTP request headers
153
143
 
@@ -25,11 +25,6 @@ CloudsmithApi.configure do |config|
25
25
  config.api_key['X-Api-Key'] = 'YOUR API KEY'
26
26
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
27
27
  #config.api_key_prefix['X-Api-Key'] = 'Bearer'
28
-
29
- # Configure API key authorization: csrf_token
30
- config.api_key['X-CSRFToken'] = 'YOUR API KEY'
31
- # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
32
- #config.api_key_prefix['X-CSRFToken'] = 'Bearer'
33
28
  end
34
29
 
35
30
  api_instance = CloudsmithApi::NamespacesApi.new
@@ -61,7 +56,7 @@ Name | Type | Description | Notes
61
56
 
62
57
  ### Authorization
63
58
 
64
- [apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
59
+ [apikey](../README.md#apikey)
65
60
 
66
61
  ### HTTP request headers
67
62
 
@@ -87,11 +82,6 @@ CloudsmithApi.configure do |config|
87
82
  config.api_key['X-Api-Key'] = 'YOUR API KEY'
88
83
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
89
84
  #config.api_key_prefix['X-Api-Key'] = 'Bearer'
90
-
91
- # Configure API key authorization: csrf_token
92
- config.api_key['X-CSRFToken'] = 'YOUR API KEY'
93
- # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
94
- #config.api_key_prefix['X-CSRFToken'] = 'Bearer'
95
85
  end
96
86
 
97
87
  api_instance = CloudsmithApi::NamespacesApi.new
@@ -120,7 +110,7 @@ Name | Type | Description | Notes
120
110
 
121
111
  ### Authorization
122
112
 
123
- [apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
113
+ [apikey](../README.md#apikey)
124
114
 
125
115
  ### HTTP request headers
126
116
 
@@ -25,11 +25,6 @@ CloudsmithApi.configure do |config|
25
25
  config.api_key['X-Api-Key'] = 'YOUR API KEY'
26
26
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
27
27
  #config.api_key_prefix['X-Api-Key'] = 'Bearer'
28
-
29
- # Configure API key authorization: csrf_token
30
- config.api_key['X-CSRFToken'] = 'YOUR API KEY'
31
- # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
32
- #config.api_key_prefix['X-CSRFToken'] = 'Bearer'
33
28
  end
34
29
 
35
30
  api_instance = CloudsmithApi::OrgsApi.new
@@ -61,7 +56,7 @@ Name | Type | Description | Notes
61
56
 
62
57
  ### Authorization
63
58
 
64
- [apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
59
+ [apikey](../README.md#apikey)
65
60
 
66
61
  ### HTTP request headers
67
62
 
@@ -87,11 +82,6 @@ CloudsmithApi.configure do |config|
87
82
  config.api_key['X-Api-Key'] = 'YOUR API KEY'
88
83
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
89
84
  #config.api_key_prefix['X-Api-Key'] = 'Bearer'
90
-
91
- # Configure API key authorization: csrf_token
92
- config.api_key['X-CSRFToken'] = 'YOUR API KEY'
93
- # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
94
- #config.api_key_prefix['X-CSRFToken'] = 'Bearer'
95
85
  end
96
86
 
97
87
  api_instance = CloudsmithApi::OrgsApi.new
@@ -120,7 +110,7 @@ Name | Type | Description | Notes
120
110
 
121
111
  ### Authorization
122
112
 
123
- [apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
113
+ [apikey](../README.md#apikey)
124
114
 
125
115
  ### HTTP request headers
126
116
 
@@ -38,7 +38,7 @@ Name | Type | Description | Notes
38
38
  **self_html_url** | **String** | | [optional]
39
39
  **self_url** | **String** | | [optional]
40
40
  **size** | **Integer** | The calculated size of the package. | [optional]
41
- **slug** | **String** | | [optional]
41
+ **slug** | **String** | The public unique identifier for the package. | [optional]
42
42
  **slug_perm** | **String** | | [optional]
43
43
  **stage** | **String** | The synchronisation (in progress) stage of the package. | [optional]
44
44
  **stage_str** | **String** | | [optional]
@@ -60,5 +60,6 @@ Name | Type | Description | Notes
60
60
  **uploader_url** | **String** | | [optional]
61
61
  **version** | **String** | The raw version for this package. | [optional]
62
62
  **version_orig** | **String** | | [optional]
63
+ **vulnerability_scan_results_url** | **String** | | [optional]
63
64
 
64
65
 
@@ -38,7 +38,7 @@ Name | Type | Description | Notes
38
38
  **self_html_url** | **String** | | [optional]
39
39
  **self_url** | **String** | | [optional]
40
40
  **size** | **Integer** | The calculated size of the package. | [optional]
41
- **slug** | **String** | | [optional]
41
+ **slug** | **String** | The public unique identifier for the package. | [optional]
42
42
  **slug_perm** | **String** | | [optional]
43
43
  **stage** | **String** | The synchronisation (in progress) stage of the package. | [optional]
44
44
  **stage_str** | **String** | | [optional]
@@ -60,5 +60,6 @@ Name | Type | Description | Notes
60
60
  **uploader_url** | **String** | | [optional]
61
61
  **version** | **String** | The raw version for this package. | [optional]
62
62
  **version_orig** | **String** | | [optional]
63
+ **vulnerability_scan_results_url** | **String** | | [optional]
63
64
 
64
65
 
@@ -38,7 +38,7 @@ Name | Type | Description | Notes
38
38
  **self_html_url** | **String** | | [optional]
39
39
  **self_url** | **String** | | [optional]
40
40
  **size** | **Integer** | The calculated size of the package. | [optional]
41
- **slug** | **String** | | [optional]
41
+ **slug** | **String** | The public unique identifier for the package. | [optional]
42
42
  **slug_perm** | **String** | | [optional]
43
43
  **stage** | **String** | The synchronisation (in progress) stage of the package. | [optional]
44
44
  **stage_str** | **String** | | [optional]
@@ -60,5 +60,6 @@ Name | Type | Description | Notes
60
60
  **uploader_url** | **String** | | [optional]
61
61
  **version** | **String** | The raw version for this package. | [optional]
62
62
  **version_orig** | **String** | | [optional]
63
+ **vulnerability_scan_results_url** | **String** | | [optional]
63
64
 
64
65
 
@@ -73,11 +73,6 @@ CloudsmithApi.configure do |config|
73
73
  config.api_key['X-Api-Key'] = 'YOUR API KEY'
74
74
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
75
75
  #config.api_key_prefix['X-Api-Key'] = 'Bearer'
76
-
77
- # Configure API key authorization: csrf_token
78
- config.api_key['X-CSRFToken'] = 'YOUR API KEY'
79
- # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
80
- #config.api_key_prefix['X-CSRFToken'] = 'Bearer'
81
76
  end
82
77
 
83
78
  api_instance = CloudsmithApi::PackagesApi.new
@@ -116,7 +111,7 @@ Name | Type | Description | Notes
116
111
 
117
112
  ### Authorization
118
113
 
119
- [apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
114
+ [apikey](../README.md#apikey)
120
115
 
121
116
  ### HTTP request headers
122
117
 
@@ -142,11 +137,6 @@ CloudsmithApi.configure do |config|
142
137
  config.api_key['X-Api-Key'] = 'YOUR API KEY'
143
138
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
144
139
  #config.api_key_prefix['X-Api-Key'] = 'Bearer'
145
-
146
- # Configure API key authorization: csrf_token
147
- config.api_key['X-CSRFToken'] = 'YOUR API KEY'
148
- # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
149
- #config.api_key_prefix['X-CSRFToken'] = 'Bearer'
150
140
  end
151
141
 
152
142
  api_instance = CloudsmithApi::PackagesApi.new
@@ -180,7 +170,7 @@ nil (empty response body)
180
170
 
181
171
  ### Authorization
182
172
 
183
- [apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
173
+ [apikey](../README.md#apikey)
184
174
 
185
175
  ### HTTP request headers
186
176
 
@@ -206,11 +196,6 @@ CloudsmithApi.configure do |config|
206
196
  config.api_key['X-Api-Key'] = 'YOUR API KEY'
207
197
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
208
198
  #config.api_key_prefix['X-Api-Key'] = 'Bearer'
209
-
210
- # Configure API key authorization: csrf_token
211
- config.api_key['X-CSRFToken'] = 'YOUR API KEY'
212
- # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
213
- #config.api_key_prefix['X-CSRFToken'] = 'Bearer'
214
199
  end
215
200
 
216
201
  api_instance = CloudsmithApi::PackagesApi.new
@@ -250,7 +235,7 @@ Name | Type | Description | Notes
250
235
 
251
236
  ### Authorization
252
237
 
253
- [apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
238
+ [apikey](../README.md#apikey)
254
239
 
255
240
  ### HTTP request headers
256
241
 
@@ -276,11 +261,6 @@ CloudsmithApi.configure do |config|
276
261
  config.api_key['X-Api-Key'] = 'YOUR API KEY'
277
262
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
278
263
  #config.api_key_prefix['X-Api-Key'] = 'Bearer'
279
-
280
- # Configure API key authorization: csrf_token
281
- config.api_key['X-CSRFToken'] = 'YOUR API KEY'
282
- # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
283
- #config.api_key_prefix['X-CSRFToken'] = 'Bearer'
284
264
  end
285
265
 
286
266
  api_instance = CloudsmithApi::PackagesApi.new
@@ -319,7 +299,7 @@ Name | Type | Description | Notes
319
299
 
320
300
  ### Authorization
321
301
 
322
- [apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
302
+ [apikey](../README.md#apikey)
323
303
 
324
304
  ### HTTP request headers
325
305
 
@@ -345,11 +325,6 @@ CloudsmithApi.configure do |config|
345
325
  config.api_key['X-Api-Key'] = 'YOUR API KEY'
346
326
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
347
327
  #config.api_key_prefix['X-Api-Key'] = 'Bearer'
348
-
349
- # Configure API key authorization: csrf_token
350
- config.api_key['X-CSRFToken'] = 'YOUR API KEY'
351
- # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
352
- #config.api_key_prefix['X-CSRFToken'] = 'Bearer'
353
328
  end
354
329
 
355
330
  api_instance = CloudsmithApi::PackagesApi.new
@@ -384,7 +359,7 @@ Name | Type | Description | Notes
384
359
 
385
360
  ### Authorization
386
361
 
387
- [apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
362
+ [apikey](../README.md#apikey)
388
363
 
389
364
  ### HTTP request headers
390
365
 
@@ -410,11 +385,6 @@ CloudsmithApi.configure do |config|
410
385
  config.api_key['X-Api-Key'] = 'YOUR API KEY'
411
386
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
412
387
  #config.api_key_prefix['X-Api-Key'] = 'Bearer'
413
-
414
- # Configure API key authorization: csrf_token
415
- config.api_key['X-CSRFToken'] = 'YOUR API KEY'
416
- # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
417
- #config.api_key_prefix['X-CSRFToken'] = 'Bearer'
418
388
  end
419
389
 
420
390
  api_instance = CloudsmithApi::PackagesApi.new
@@ -449,7 +419,7 @@ Name | Type | Description | Notes
449
419
 
450
420
  ### Authorization
451
421
 
452
- [apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
422
+ [apikey](../README.md#apikey)
453
423
 
454
424
  ### HTTP request headers
455
425
 
@@ -475,11 +445,6 @@ CloudsmithApi.configure do |config|
475
445
  config.api_key['X-Api-Key'] = 'YOUR API KEY'
476
446
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
477
447
  #config.api_key_prefix['X-Api-Key'] = 'Bearer'
478
-
479
- # Configure API key authorization: csrf_token
480
- config.api_key['X-CSRFToken'] = 'YOUR API KEY'
481
- # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
482
- #config.api_key_prefix['X-CSRFToken'] = 'Bearer'
483
448
  end
484
449
 
485
450
  api_instance = CloudsmithApi::PackagesApi.new
@@ -514,7 +479,7 @@ Name | Type | Description | Notes
514
479
 
515
480
  ### Authorization
516
481
 
517
- [apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
482
+ [apikey](../README.md#apikey)
518
483
 
519
484
  ### HTTP request headers
520
485
 
@@ -540,11 +505,6 @@ CloudsmithApi.configure do |config|
540
505
  config.api_key['X-Api-Key'] = 'YOUR API KEY'
541
506
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
542
507
  #config.api_key_prefix['X-Api-Key'] = 'Bearer'
543
-
544
- # Configure API key authorization: csrf_token
545
- config.api_key['X-CSRFToken'] = 'YOUR API KEY'
546
- # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
547
- #config.api_key_prefix['X-CSRFToken'] = 'Bearer'
548
508
  end
549
509
 
550
510
  api_instance = CloudsmithApi::PackagesApi.new
@@ -583,7 +543,7 @@ Name | Type | Description | Notes
583
543
 
584
544
  ### Authorization
585
545
 
586
- [apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
546
+ [apikey](../README.md#apikey)
587
547
 
588
548
  ### HTTP request headers
589
549
 
@@ -609,11 +569,6 @@ CloudsmithApi.configure do |config|
609
569
  config.api_key['X-Api-Key'] = 'YOUR API KEY'
610
570
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
611
571
  #config.api_key_prefix['X-Api-Key'] = 'Bearer'
612
-
613
- # Configure API key authorization: csrf_token
614
- config.api_key['X-CSRFToken'] = 'YOUR API KEY'
615
- # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
616
- #config.api_key_prefix['X-CSRFToken'] = 'Bearer'
617
572
  end
618
573
 
619
574
  api_instance = CloudsmithApi::PackagesApi.new
@@ -649,7 +604,7 @@ Name | Type | Description | Notes
649
604
 
650
605
  ### Authorization
651
606
 
652
- [apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
607
+ [apikey](../README.md#apikey)
653
608
 
654
609
  ### HTTP request headers
655
610
 
@@ -675,11 +630,6 @@ CloudsmithApi.configure do |config|
675
630
  config.api_key['X-Api-Key'] = 'YOUR API KEY'
676
631
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
677
632
  #config.api_key_prefix['X-Api-Key'] = 'Bearer'
678
-
679
- # Configure API key authorization: csrf_token
680
- config.api_key['X-CSRFToken'] = 'YOUR API KEY'
681
- # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
682
- #config.api_key_prefix['X-CSRFToken'] = 'Bearer'
683
633
  end
684
634
 
685
635
  api_instance = CloudsmithApi::PackagesApi.new
@@ -715,7 +665,7 @@ Name | Type | Description | Notes
715
665
 
716
666
  ### Authorization
717
667
 
718
- [apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
668
+ [apikey](../README.md#apikey)
719
669
 
720
670
  ### HTTP request headers
721
671
 
@@ -741,11 +691,6 @@ CloudsmithApi.configure do |config|
741
691
  config.api_key['X-Api-Key'] = 'YOUR API KEY'
742
692
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
743
693
  #config.api_key_prefix['X-Api-Key'] = 'Bearer'
744
-
745
- # Configure API key authorization: csrf_token
746
- config.api_key['X-CSRFToken'] = 'YOUR API KEY'
747
- # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
748
- #config.api_key_prefix['X-CSRFToken'] = 'Bearer'
749
694
  end
750
695
 
751
696
  api_instance = CloudsmithApi::PackagesApi.new
@@ -781,7 +726,7 @@ Name | Type | Description | Notes
781
726
 
782
727
  ### Authorization
783
728
 
784
- [apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
729
+ [apikey](../README.md#apikey)
785
730
 
786
731
  ### HTTP request headers
787
732
 
@@ -807,11 +752,6 @@ CloudsmithApi.configure do |config|
807
752
  config.api_key['X-Api-Key'] = 'YOUR API KEY'
808
753
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
809
754
  #config.api_key_prefix['X-Api-Key'] = 'Bearer'
810
-
811
- # Configure API key authorization: csrf_token
812
- config.api_key['X-CSRFToken'] = 'YOUR API KEY'
813
- # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
814
- #config.api_key_prefix['X-CSRFToken'] = 'Bearer'
815
755
  end
816
756
 
817
757
  api_instance = CloudsmithApi::PackagesApi.new
@@ -847,7 +787,7 @@ Name | Type | Description | Notes
847
787
 
848
788
  ### Authorization
849
789
 
850
- [apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
790
+ [apikey](../README.md#apikey)
851
791
 
852
792
  ### HTTP request headers
853
793
 
@@ -873,11 +813,6 @@ CloudsmithApi.configure do |config|
873
813
  config.api_key['X-Api-Key'] = 'YOUR API KEY'
874
814
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
875
815
  #config.api_key_prefix['X-Api-Key'] = 'Bearer'
876
-
877
- # Configure API key authorization: csrf_token
878
- config.api_key['X-CSRFToken'] = 'YOUR API KEY'
879
- # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
880
- #config.api_key_prefix['X-CSRFToken'] = 'Bearer'
881
816
  end
882
817
 
883
818
  api_instance = CloudsmithApi::PackagesApi.new
@@ -913,7 +848,7 @@ Name | Type | Description | Notes
913
848
 
914
849
  ### Authorization
915
850
 
916
- [apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
851
+ [apikey](../README.md#apikey)
917
852
 
918
853
  ### HTTP request headers
919
854
 
@@ -939,11 +874,6 @@ CloudsmithApi.configure do |config|
939
874
  config.api_key['X-Api-Key'] = 'YOUR API KEY'
940
875
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
941
876
  #config.api_key_prefix['X-Api-Key'] = 'Bearer'
942
-
943
- # Configure API key authorization: csrf_token
944
- config.api_key['X-CSRFToken'] = 'YOUR API KEY'
945
- # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
946
- #config.api_key_prefix['X-CSRFToken'] = 'Bearer'
947
877
  end
948
878
 
949
879
  api_instance = CloudsmithApi::PackagesApi.new
@@ -979,7 +909,7 @@ Name | Type | Description | Notes
979
909
 
980
910
  ### Authorization
981
911
 
982
- [apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
912
+ [apikey](../README.md#apikey)
983
913
 
984
914
  ### HTTP request headers
985
915
 
@@ -1005,11 +935,6 @@ CloudsmithApi.configure do |config|
1005
935
  config.api_key['X-Api-Key'] = 'YOUR API KEY'
1006
936
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
1007
937
  #config.api_key_prefix['X-Api-Key'] = 'Bearer'
1008
-
1009
- # Configure API key authorization: csrf_token
1010
- config.api_key['X-CSRFToken'] = 'YOUR API KEY'
1011
- # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
1012
- #config.api_key_prefix['X-CSRFToken'] = 'Bearer'
1013
938
  end
1014
939
 
1015
940
  api_instance = CloudsmithApi::PackagesApi.new
@@ -1045,7 +970,7 @@ Name | Type | Description | Notes
1045
970
 
1046
971
  ### Authorization
1047
972
 
1048
- [apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
973
+ [apikey](../README.md#apikey)
1049
974
 
1050
975
  ### HTTP request headers
1051
976
 
@@ -1071,11 +996,6 @@ CloudsmithApi.configure do |config|
1071
996
  config.api_key['X-Api-Key'] = 'YOUR API KEY'
1072
997
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
1073
998
  #config.api_key_prefix['X-Api-Key'] = 'Bearer'
1074
-
1075
- # Configure API key authorization: csrf_token
1076
- config.api_key['X-CSRFToken'] = 'YOUR API KEY'
1077
- # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
1078
- #config.api_key_prefix['X-CSRFToken'] = 'Bearer'
1079
999
  end
1080
1000
 
1081
1001
  api_instance = CloudsmithApi::PackagesApi.new
@@ -1111,7 +1031,7 @@ Name | Type | Description | Notes
1111
1031
 
1112
1032
  ### Authorization
1113
1033
 
1114
- [apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
1034
+ [apikey](../README.md#apikey)
1115
1035
 
1116
1036
  ### HTTP request headers
1117
1037
 
@@ -1137,11 +1057,6 @@ CloudsmithApi.configure do |config|
1137
1057
  config.api_key['X-Api-Key'] = 'YOUR API KEY'
1138
1058
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
1139
1059
  #config.api_key_prefix['X-Api-Key'] = 'Bearer'
1140
-
1141
- # Configure API key authorization: csrf_token
1142
- config.api_key['X-CSRFToken'] = 'YOUR API KEY'
1143
- # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
1144
- #config.api_key_prefix['X-CSRFToken'] = 'Bearer'
1145
1060
  end
1146
1061
 
1147
1062
  api_instance = CloudsmithApi::PackagesApi.new
@@ -1177,7 +1092,7 @@ Name | Type | Description | Notes
1177
1092
 
1178
1093
  ### Authorization
1179
1094
 
1180
- [apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
1095
+ [apikey](../README.md#apikey)
1181
1096
 
1182
1097
  ### HTTP request headers
1183
1098
 
@@ -1203,11 +1118,6 @@ CloudsmithApi.configure do |config|
1203
1118
  config.api_key['X-Api-Key'] = 'YOUR API KEY'
1204
1119
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
1205
1120
  #config.api_key_prefix['X-Api-Key'] = 'Bearer'
1206
-
1207
- # Configure API key authorization: csrf_token
1208
- config.api_key['X-CSRFToken'] = 'YOUR API KEY'
1209
- # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
1210
- #config.api_key_prefix['X-CSRFToken'] = 'Bearer'
1211
1121
  end
1212
1122
 
1213
1123
  api_instance = CloudsmithApi::PackagesApi.new
@@ -1243,7 +1153,7 @@ Name | Type | Description | Notes
1243
1153
 
1244
1154
  ### Authorization
1245
1155
 
1246
- [apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
1156
+ [apikey](../README.md#apikey)
1247
1157
 
1248
1158
  ### HTTP request headers
1249
1159
 
@@ -1269,11 +1179,6 @@ CloudsmithApi.configure do |config|
1269
1179
  config.api_key['X-Api-Key'] = 'YOUR API KEY'
1270
1180
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
1271
1181
  #config.api_key_prefix['X-Api-Key'] = 'Bearer'
1272
-
1273
- # Configure API key authorization: csrf_token
1274
- config.api_key['X-CSRFToken'] = 'YOUR API KEY'
1275
- # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
1276
- #config.api_key_prefix['X-CSRFToken'] = 'Bearer'
1277
1182
  end
1278
1183
 
1279
1184
  api_instance = CloudsmithApi::PackagesApi.new
@@ -1309,7 +1214,7 @@ Name | Type | Description | Notes
1309
1214
 
1310
1215
  ### Authorization
1311
1216
 
1312
- [apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
1217
+ [apikey](../README.md#apikey)
1313
1218
 
1314
1219
  ### HTTP request headers
1315
1220
 
@@ -1335,11 +1240,6 @@ CloudsmithApi.configure do |config|
1335
1240
  config.api_key['X-Api-Key'] = 'YOUR API KEY'
1336
1241
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
1337
1242
  #config.api_key_prefix['X-Api-Key'] = 'Bearer'
1338
-
1339
- # Configure API key authorization: csrf_token
1340
- config.api_key['X-CSRFToken'] = 'YOUR API KEY'
1341
- # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
1342
- #config.api_key_prefix['X-CSRFToken'] = 'Bearer'
1343
1243
  end
1344
1244
 
1345
1245
  api_instance = CloudsmithApi::PackagesApi.new
@@ -1375,7 +1275,7 @@ Name | Type | Description | Notes
1375
1275
 
1376
1276
  ### Authorization
1377
1277
 
1378
- [apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
1278
+ [apikey](../README.md#apikey)
1379
1279
 
1380
1280
  ### HTTP request headers
1381
1281
 
@@ -1401,11 +1301,6 @@ CloudsmithApi.configure do |config|
1401
1301
  config.api_key['X-Api-Key'] = 'YOUR API KEY'
1402
1302
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
1403
1303
  #config.api_key_prefix['X-Api-Key'] = 'Bearer'
1404
-
1405
- # Configure API key authorization: csrf_token
1406
- config.api_key['X-CSRFToken'] = 'YOUR API KEY'
1407
- # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
1408
- #config.api_key_prefix['X-CSRFToken'] = 'Bearer'
1409
1304
  end
1410
1305
 
1411
1306
  api_instance = CloudsmithApi::PackagesApi.new
@@ -1441,7 +1336,7 @@ Name | Type | Description | Notes
1441
1336
 
1442
1337
  ### Authorization
1443
1338
 
1444
- [apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
1339
+ [apikey](../README.md#apikey)
1445
1340
 
1446
1341
  ### HTTP request headers
1447
1342
 
@@ -1467,11 +1362,6 @@ CloudsmithApi.configure do |config|
1467
1362
  config.api_key['X-Api-Key'] = 'YOUR API KEY'
1468
1363
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
1469
1364
  #config.api_key_prefix['X-Api-Key'] = 'Bearer'
1470
-
1471
- # Configure API key authorization: csrf_token
1472
- config.api_key['X-CSRFToken'] = 'YOUR API KEY'
1473
- # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
1474
- #config.api_key_prefix['X-CSRFToken'] = 'Bearer'
1475
1365
  end
1476
1366
 
1477
1367
  api_instance = CloudsmithApi::PackagesApi.new
@@ -1507,7 +1397,7 @@ Name | Type | Description | Notes
1507
1397
 
1508
1398
  ### Authorization
1509
1399
 
1510
- [apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
1400
+ [apikey](../README.md#apikey)
1511
1401
 
1512
1402
  ### HTTP request headers
1513
1403
 
@@ -1533,11 +1423,6 @@ CloudsmithApi.configure do |config|
1533
1423
  config.api_key['X-Api-Key'] = 'YOUR API KEY'
1534
1424
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
1535
1425
  #config.api_key_prefix['X-Api-Key'] = 'Bearer'
1536
-
1537
- # Configure API key authorization: csrf_token
1538
- config.api_key['X-CSRFToken'] = 'YOUR API KEY'
1539
- # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
1540
- #config.api_key_prefix['X-CSRFToken'] = 'Bearer'
1541
1426
  end
1542
1427
 
1543
1428
  api_instance = CloudsmithApi::PackagesApi.new
@@ -1573,7 +1458,7 @@ Name | Type | Description | Notes
1573
1458
 
1574
1459
  ### Authorization
1575
1460
 
1576
- [apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
1461
+ [apikey](../README.md#apikey)
1577
1462
 
1578
1463
  ### HTTP request headers
1579
1464
 
@@ -1599,11 +1484,6 @@ CloudsmithApi.configure do |config|
1599
1484
  config.api_key['X-Api-Key'] = 'YOUR API KEY'
1600
1485
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
1601
1486
  #config.api_key_prefix['X-Api-Key'] = 'Bearer'
1602
-
1603
- # Configure API key authorization: csrf_token
1604
- config.api_key['X-CSRFToken'] = 'YOUR API KEY'
1605
- # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
1606
- #config.api_key_prefix['X-CSRFToken'] = 'Bearer'
1607
1487
  end
1608
1488
 
1609
1489
  api_instance = CloudsmithApi::PackagesApi.new
@@ -1639,7 +1519,7 @@ Name | Type | Description | Notes
1639
1519
 
1640
1520
  ### Authorization
1641
1521
 
1642
- [apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
1522
+ [apikey](../README.md#apikey)
1643
1523
 
1644
1524
  ### HTTP request headers
1645
1525
 
@@ -1665,11 +1545,6 @@ CloudsmithApi.configure do |config|
1665
1545
  config.api_key['X-Api-Key'] = 'YOUR API KEY'
1666
1546
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
1667
1547
  #config.api_key_prefix['X-Api-Key'] = 'Bearer'
1668
-
1669
- # Configure API key authorization: csrf_token
1670
- config.api_key['X-CSRFToken'] = 'YOUR API KEY'
1671
- # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
1672
- #config.api_key_prefix['X-CSRFToken'] = 'Bearer'
1673
1548
  end
1674
1549
 
1675
1550
  api_instance = CloudsmithApi::PackagesApi.new
@@ -1705,7 +1580,7 @@ Name | Type | Description | Notes
1705
1580
 
1706
1581
  ### Authorization
1707
1582
 
1708
- [apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
1583
+ [apikey](../README.md#apikey)
1709
1584
 
1710
1585
  ### HTTP request headers
1711
1586
 
@@ -1731,11 +1606,6 @@ CloudsmithApi.configure do |config|
1731
1606
  config.api_key['X-Api-Key'] = 'YOUR API KEY'
1732
1607
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
1733
1608
  #config.api_key_prefix['X-Api-Key'] = 'Bearer'
1734
-
1735
- # Configure API key authorization: csrf_token
1736
- config.api_key['X-CSRFToken'] = 'YOUR API KEY'
1737
- # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
1738
- #config.api_key_prefix['X-CSRFToken'] = 'Bearer'
1739
1609
  end
1740
1610
 
1741
1611
  api_instance = CloudsmithApi::PackagesApi.new
@@ -1771,7 +1641,7 @@ Name | Type | Description | Notes
1771
1641
 
1772
1642
  ### Authorization
1773
1643
 
1774
- [apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
1644
+ [apikey](../README.md#apikey)
1775
1645
 
1776
1646
  ### HTTP request headers
1777
1647
 
@@ -1797,11 +1667,6 @@ CloudsmithApi.configure do |config|
1797
1667
  config.api_key['X-Api-Key'] = 'YOUR API KEY'
1798
1668
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
1799
1669
  #config.api_key_prefix['X-Api-Key'] = 'Bearer'
1800
-
1801
- # Configure API key authorization: csrf_token
1802
- config.api_key['X-CSRFToken'] = 'YOUR API KEY'
1803
- # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
1804
- #config.api_key_prefix['X-CSRFToken'] = 'Bearer'
1805
1670
  end
1806
1671
 
1807
1672
  api_instance = CloudsmithApi::PackagesApi.new
@@ -1837,7 +1702,7 @@ Name | Type | Description | Notes
1837
1702
 
1838
1703
  ### Authorization
1839
1704
 
1840
- [apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
1705
+ [apikey](../README.md#apikey)
1841
1706
 
1842
1707
  ### HTTP request headers
1843
1708
 
@@ -1863,11 +1728,6 @@ CloudsmithApi.configure do |config|
1863
1728
  config.api_key['X-Api-Key'] = 'YOUR API KEY'
1864
1729
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
1865
1730
  #config.api_key_prefix['X-Api-Key'] = 'Bearer'
1866
-
1867
- # Configure API key authorization: csrf_token
1868
- config.api_key['X-CSRFToken'] = 'YOUR API KEY'
1869
- # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
1870
- #config.api_key_prefix['X-CSRFToken'] = 'Bearer'
1871
1731
  end
1872
1732
 
1873
1733
  api_instance = CloudsmithApi::PackagesApi.new
@@ -1903,7 +1763,7 @@ Name | Type | Description | Notes
1903
1763
 
1904
1764
  ### Authorization
1905
1765
 
1906
- [apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
1766
+ [apikey](../README.md#apikey)
1907
1767
 
1908
1768
  ### HTTP request headers
1909
1769
 
@@ -1929,11 +1789,6 @@ CloudsmithApi.configure do |config|
1929
1789
  config.api_key['X-Api-Key'] = 'YOUR API KEY'
1930
1790
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
1931
1791
  #config.api_key_prefix['X-Api-Key'] = 'Bearer'
1932
-
1933
- # Configure API key authorization: csrf_token
1934
- config.api_key['X-CSRFToken'] = 'YOUR API KEY'
1935
- # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
1936
- #config.api_key_prefix['X-CSRFToken'] = 'Bearer'
1937
1792
  end
1938
1793
 
1939
1794
  api_instance = CloudsmithApi::PackagesApi.new
@@ -1969,7 +1824,7 @@ Name | Type | Description | Notes
1969
1824
 
1970
1825
  ### Authorization
1971
1826
 
1972
- [apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
1827
+ [apikey](../README.md#apikey)
1973
1828
 
1974
1829
  ### HTTP request headers
1975
1830
 
@@ -1995,11 +1850,6 @@ CloudsmithApi.configure do |config|
1995
1850
  config.api_key['X-Api-Key'] = 'YOUR API KEY'
1996
1851
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
1997
1852
  #config.api_key_prefix['X-Api-Key'] = 'Bearer'
1998
-
1999
- # Configure API key authorization: csrf_token
2000
- config.api_key['X-CSRFToken'] = 'YOUR API KEY'
2001
- # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
2002
- #config.api_key_prefix['X-CSRFToken'] = 'Bearer'
2003
1853
  end
2004
1854
 
2005
1855
  api_instance = CloudsmithApi::PackagesApi.new
@@ -2034,7 +1884,7 @@ nil (empty response body)
2034
1884
 
2035
1885
  ### Authorization
2036
1886
 
2037
- [apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
1887
+ [apikey](../README.md#apikey)
2038
1888
 
2039
1889
  ### HTTP request headers
2040
1890
 
@@ -2060,11 +1910,6 @@ CloudsmithApi.configure do |config|
2060
1910
  config.api_key['X-Api-Key'] = 'YOUR API KEY'
2061
1911
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
2062
1912
  #config.api_key_prefix['X-Api-Key'] = 'Bearer'
2063
-
2064
- # Configure API key authorization: csrf_token
2065
- config.api_key['X-CSRFToken'] = 'YOUR API KEY'
2066
- # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
2067
- #config.api_key_prefix['X-CSRFToken'] = 'Bearer'
2068
1913
  end
2069
1914
 
2070
1915
  api_instance = CloudsmithApi::PackagesApi.new
@@ -2099,7 +1944,7 @@ nil (empty response body)
2099
1944
 
2100
1945
  ### Authorization
2101
1946
 
2102
- [apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
1947
+ [apikey](../README.md#apikey)
2103
1948
 
2104
1949
  ### HTTP request headers
2105
1950
 
@@ -2125,11 +1970,6 @@ CloudsmithApi.configure do |config|
2125
1970
  config.api_key['X-Api-Key'] = 'YOUR API KEY'
2126
1971
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
2127
1972
  #config.api_key_prefix['X-Api-Key'] = 'Bearer'
2128
-
2129
- # Configure API key authorization: csrf_token
2130
- config.api_key['X-CSRFToken'] = 'YOUR API KEY'
2131
- # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
2132
- #config.api_key_prefix['X-CSRFToken'] = 'Bearer'
2133
1973
  end
2134
1974
 
2135
1975
  api_instance = CloudsmithApi::PackagesApi.new
@@ -2164,7 +2004,7 @@ nil (empty response body)
2164
2004
 
2165
2005
  ### Authorization
2166
2006
 
2167
- [apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
2007
+ [apikey](../README.md#apikey)
2168
2008
 
2169
2009
  ### HTTP request headers
2170
2010
 
@@ -2190,11 +2030,6 @@ CloudsmithApi.configure do |config|
2190
2030
  config.api_key['X-Api-Key'] = 'YOUR API KEY'
2191
2031
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
2192
2032
  #config.api_key_prefix['X-Api-Key'] = 'Bearer'
2193
-
2194
- # Configure API key authorization: csrf_token
2195
- config.api_key['X-CSRFToken'] = 'YOUR API KEY'
2196
- # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
2197
- #config.api_key_prefix['X-CSRFToken'] = 'Bearer'
2198
2033
  end
2199
2034
 
2200
2035
  api_instance = CloudsmithApi::PackagesApi.new
@@ -2229,7 +2064,7 @@ nil (empty response body)
2229
2064
 
2230
2065
  ### Authorization
2231
2066
 
2232
- [apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
2067
+ [apikey](../README.md#apikey)
2233
2068
 
2234
2069
  ### HTTP request headers
2235
2070
 
@@ -2255,11 +2090,6 @@ CloudsmithApi.configure do |config|
2255
2090
  config.api_key['X-Api-Key'] = 'YOUR API KEY'
2256
2091
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
2257
2092
  #config.api_key_prefix['X-Api-Key'] = 'Bearer'
2258
-
2259
- # Configure API key authorization: csrf_token
2260
- config.api_key['X-CSRFToken'] = 'YOUR API KEY'
2261
- # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
2262
- #config.api_key_prefix['X-CSRFToken'] = 'Bearer'
2263
2093
  end
2264
2094
 
2265
2095
  api_instance = CloudsmithApi::PackagesApi.new
@@ -2294,7 +2124,7 @@ nil (empty response body)
2294
2124
 
2295
2125
  ### Authorization
2296
2126
 
2297
- [apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
2127
+ [apikey](../README.md#apikey)
2298
2128
 
2299
2129
  ### HTTP request headers
2300
2130
 
@@ -2320,11 +2150,6 @@ CloudsmithApi.configure do |config|
2320
2150
  config.api_key['X-Api-Key'] = 'YOUR API KEY'
2321
2151
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
2322
2152
  #config.api_key_prefix['X-Api-Key'] = 'Bearer'
2323
-
2324
- # Configure API key authorization: csrf_token
2325
- config.api_key['X-CSRFToken'] = 'YOUR API KEY'
2326
- # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
2327
- #config.api_key_prefix['X-CSRFToken'] = 'Bearer'
2328
2153
  end
2329
2154
 
2330
2155
  api_instance = CloudsmithApi::PackagesApi.new
@@ -2359,7 +2184,7 @@ nil (empty response body)
2359
2184
 
2360
2185
  ### Authorization
2361
2186
 
2362
- [apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
2187
+ [apikey](../README.md#apikey)
2363
2188
 
2364
2189
  ### HTTP request headers
2365
2190
 
@@ -2385,11 +2210,6 @@ CloudsmithApi.configure do |config|
2385
2210
  config.api_key['X-Api-Key'] = 'YOUR API KEY'
2386
2211
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
2387
2212
  #config.api_key_prefix['X-Api-Key'] = 'Bearer'
2388
-
2389
- # Configure API key authorization: csrf_token
2390
- config.api_key['X-CSRFToken'] = 'YOUR API KEY'
2391
- # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
2392
- #config.api_key_prefix['X-CSRFToken'] = 'Bearer'
2393
2213
  end
2394
2214
 
2395
2215
  api_instance = CloudsmithApi::PackagesApi.new
@@ -2424,7 +2244,7 @@ nil (empty response body)
2424
2244
 
2425
2245
  ### Authorization
2426
2246
 
2427
- [apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
2247
+ [apikey](../README.md#apikey)
2428
2248
 
2429
2249
  ### HTTP request headers
2430
2250
 
@@ -2450,11 +2270,6 @@ CloudsmithApi.configure do |config|
2450
2270
  config.api_key['X-Api-Key'] = 'YOUR API KEY'
2451
2271
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
2452
2272
  #config.api_key_prefix['X-Api-Key'] = 'Bearer'
2453
-
2454
- # Configure API key authorization: csrf_token
2455
- config.api_key['X-CSRFToken'] = 'YOUR API KEY'
2456
- # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
2457
- #config.api_key_prefix['X-CSRFToken'] = 'Bearer'
2458
2273
  end
2459
2274
 
2460
2275
  api_instance = CloudsmithApi::PackagesApi.new
@@ -2489,7 +2304,7 @@ nil (empty response body)
2489
2304
 
2490
2305
  ### Authorization
2491
2306
 
2492
- [apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
2307
+ [apikey](../README.md#apikey)
2493
2308
 
2494
2309
  ### HTTP request headers
2495
2310
 
@@ -2515,11 +2330,6 @@ CloudsmithApi.configure do |config|
2515
2330
  config.api_key['X-Api-Key'] = 'YOUR API KEY'
2516
2331
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
2517
2332
  #config.api_key_prefix['X-Api-Key'] = 'Bearer'
2518
-
2519
- # Configure API key authorization: csrf_token
2520
- config.api_key['X-CSRFToken'] = 'YOUR API KEY'
2521
- # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
2522
- #config.api_key_prefix['X-CSRFToken'] = 'Bearer'
2523
2333
  end
2524
2334
 
2525
2335
  api_instance = CloudsmithApi::PackagesApi.new
@@ -2554,7 +2364,7 @@ nil (empty response body)
2554
2364
 
2555
2365
  ### Authorization
2556
2366
 
2557
- [apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
2367
+ [apikey](../README.md#apikey)
2558
2368
 
2559
2369
  ### HTTP request headers
2560
2370
 
@@ -2580,11 +2390,6 @@ CloudsmithApi.configure do |config|
2580
2390
  config.api_key['X-Api-Key'] = 'YOUR API KEY'
2581
2391
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
2582
2392
  #config.api_key_prefix['X-Api-Key'] = 'Bearer'
2583
-
2584
- # Configure API key authorization: csrf_token
2585
- config.api_key['X-CSRFToken'] = 'YOUR API KEY'
2586
- # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
2587
- #config.api_key_prefix['X-CSRFToken'] = 'Bearer'
2588
2393
  end
2589
2394
 
2590
2395
  api_instance = CloudsmithApi::PackagesApi.new
@@ -2619,7 +2424,7 @@ nil (empty response body)
2619
2424
 
2620
2425
  ### Authorization
2621
2426
 
2622
- [apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
2427
+ [apikey](../README.md#apikey)
2623
2428
 
2624
2429
  ### HTTP request headers
2625
2430
 
@@ -2645,11 +2450,6 @@ CloudsmithApi.configure do |config|
2645
2450
  config.api_key['X-Api-Key'] = 'YOUR API KEY'
2646
2451
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
2647
2452
  #config.api_key_prefix['X-Api-Key'] = 'Bearer'
2648
-
2649
- # Configure API key authorization: csrf_token
2650
- config.api_key['X-CSRFToken'] = 'YOUR API KEY'
2651
- # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
2652
- #config.api_key_prefix['X-CSRFToken'] = 'Bearer'
2653
2453
  end
2654
2454
 
2655
2455
  api_instance = CloudsmithApi::PackagesApi.new
@@ -2684,7 +2484,7 @@ nil (empty response body)
2684
2484
 
2685
2485
  ### Authorization
2686
2486
 
2687
- [apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
2487
+ [apikey](../README.md#apikey)
2688
2488
 
2689
2489
  ### HTTP request headers
2690
2490
 
@@ -2710,11 +2510,6 @@ CloudsmithApi.configure do |config|
2710
2510
  config.api_key['X-Api-Key'] = 'YOUR API KEY'
2711
2511
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
2712
2512
  #config.api_key_prefix['X-Api-Key'] = 'Bearer'
2713
-
2714
- # Configure API key authorization: csrf_token
2715
- config.api_key['X-CSRFToken'] = 'YOUR API KEY'
2716
- # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
2717
- #config.api_key_prefix['X-CSRFToken'] = 'Bearer'
2718
2513
  end
2719
2514
 
2720
2515
  api_instance = CloudsmithApi::PackagesApi.new
@@ -2749,7 +2544,7 @@ nil (empty response body)
2749
2544
 
2750
2545
  ### Authorization
2751
2546
 
2752
- [apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
2547
+ [apikey](../README.md#apikey)
2753
2548
 
2754
2549
  ### HTTP request headers
2755
2550
 
@@ -2775,11 +2570,6 @@ CloudsmithApi.configure do |config|
2775
2570
  config.api_key['X-Api-Key'] = 'YOUR API KEY'
2776
2571
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
2777
2572
  #config.api_key_prefix['X-Api-Key'] = 'Bearer'
2778
-
2779
- # Configure API key authorization: csrf_token
2780
- config.api_key['X-CSRFToken'] = 'YOUR API KEY'
2781
- # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
2782
- #config.api_key_prefix['X-CSRFToken'] = 'Bearer'
2783
2573
  end
2784
2574
 
2785
2575
  api_instance = CloudsmithApi::PackagesApi.new
@@ -2814,7 +2604,7 @@ nil (empty response body)
2814
2604
 
2815
2605
  ### Authorization
2816
2606
 
2817
- [apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
2607
+ [apikey](../README.md#apikey)
2818
2608
 
2819
2609
  ### HTTP request headers
2820
2610
 
@@ -2840,11 +2630,6 @@ CloudsmithApi.configure do |config|
2840
2630
  config.api_key['X-Api-Key'] = 'YOUR API KEY'
2841
2631
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
2842
2632
  #config.api_key_prefix['X-Api-Key'] = 'Bearer'
2843
-
2844
- # Configure API key authorization: csrf_token
2845
- config.api_key['X-CSRFToken'] = 'YOUR API KEY'
2846
- # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
2847
- #config.api_key_prefix['X-CSRFToken'] = 'Bearer'
2848
2633
  end
2849
2634
 
2850
2635
  api_instance = CloudsmithApi::PackagesApi.new
@@ -2879,7 +2664,7 @@ nil (empty response body)
2879
2664
 
2880
2665
  ### Authorization
2881
2666
 
2882
- [apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
2667
+ [apikey](../README.md#apikey)
2883
2668
 
2884
2669
  ### HTTP request headers
2885
2670
 
@@ -2905,11 +2690,6 @@ CloudsmithApi.configure do |config|
2905
2690
  config.api_key['X-Api-Key'] = 'YOUR API KEY'
2906
2691
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
2907
2692
  #config.api_key_prefix['X-Api-Key'] = 'Bearer'
2908
-
2909
- # Configure API key authorization: csrf_token
2910
- config.api_key['X-CSRFToken'] = 'YOUR API KEY'
2911
- # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
2912
- #config.api_key_prefix['X-CSRFToken'] = 'Bearer'
2913
2693
  end
2914
2694
 
2915
2695
  api_instance = CloudsmithApi::PackagesApi.new
@@ -2944,7 +2724,7 @@ nil (empty response body)
2944
2724
 
2945
2725
  ### Authorization
2946
2726
 
2947
- [apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
2727
+ [apikey](../README.md#apikey)
2948
2728
 
2949
2729
  ### HTTP request headers
2950
2730
 
@@ -2970,11 +2750,6 @@ CloudsmithApi.configure do |config|
2970
2750
  config.api_key['X-Api-Key'] = 'YOUR API KEY'
2971
2751
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
2972
2752
  #config.api_key_prefix['X-Api-Key'] = 'Bearer'
2973
-
2974
- # Configure API key authorization: csrf_token
2975
- config.api_key['X-CSRFToken'] = 'YOUR API KEY'
2976
- # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
2977
- #config.api_key_prefix['X-CSRFToken'] = 'Bearer'
2978
2753
  end
2979
2754
 
2980
2755
  api_instance = CloudsmithApi::PackagesApi.new
@@ -3009,7 +2784,7 @@ nil (empty response body)
3009
2784
 
3010
2785
  ### Authorization
3011
2786
 
3012
- [apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
2787
+ [apikey](../README.md#apikey)
3013
2788
 
3014
2789
  ### HTTP request headers
3015
2790
 
@@ -3035,11 +2810,6 @@ CloudsmithApi.configure do |config|
3035
2810
  config.api_key['X-Api-Key'] = 'YOUR API KEY'
3036
2811
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
3037
2812
  #config.api_key_prefix['X-Api-Key'] = 'Bearer'
3038
-
3039
- # Configure API key authorization: csrf_token
3040
- config.api_key['X-CSRFToken'] = 'YOUR API KEY'
3041
- # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
3042
- #config.api_key_prefix['X-CSRFToken'] = 'Bearer'
3043
2813
  end
3044
2814
 
3045
2815
  api_instance = CloudsmithApi::PackagesApi.new
@@ -3074,7 +2844,7 @@ nil (empty response body)
3074
2844
 
3075
2845
  ### Authorization
3076
2846
 
3077
- [apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
2847
+ [apikey](../README.md#apikey)
3078
2848
 
3079
2849
  ### HTTP request headers
3080
2850
 
@@ -3100,11 +2870,6 @@ CloudsmithApi.configure do |config|
3100
2870
  config.api_key['X-Api-Key'] = 'YOUR API KEY'
3101
2871
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
3102
2872
  #config.api_key_prefix['X-Api-Key'] = 'Bearer'
3103
-
3104
- # Configure API key authorization: csrf_token
3105
- config.api_key['X-CSRFToken'] = 'YOUR API KEY'
3106
- # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
3107
- #config.api_key_prefix['X-CSRFToken'] = 'Bearer'
3108
2873
  end
3109
2874
 
3110
2875
  api_instance = CloudsmithApi::PackagesApi.new
@@ -3139,7 +2904,7 @@ nil (empty response body)
3139
2904
 
3140
2905
  ### Authorization
3141
2906
 
3142
- [apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
2907
+ [apikey](../README.md#apikey)
3143
2908
 
3144
2909
  ### HTTP request headers
3145
2910
 
@@ -3165,11 +2930,6 @@ CloudsmithApi.configure do |config|
3165
2930
  config.api_key['X-Api-Key'] = 'YOUR API KEY'
3166
2931
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
3167
2932
  #config.api_key_prefix['X-Api-Key'] = 'Bearer'
3168
-
3169
- # Configure API key authorization: csrf_token
3170
- config.api_key['X-CSRFToken'] = 'YOUR API KEY'
3171
- # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
3172
- #config.api_key_prefix['X-CSRFToken'] = 'Bearer'
3173
2933
  end
3174
2934
 
3175
2935
  api_instance = CloudsmithApi::PackagesApi.new
@@ -3204,7 +2964,7 @@ nil (empty response body)
3204
2964
 
3205
2965
  ### Authorization
3206
2966
 
3207
- [apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
2967
+ [apikey](../README.md#apikey)
3208
2968
 
3209
2969
  ### HTTP request headers
3210
2970
 
@@ -3230,11 +2990,6 @@ CloudsmithApi.configure do |config|
3230
2990
  config.api_key['X-Api-Key'] = 'YOUR API KEY'
3231
2991
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
3232
2992
  #config.api_key_prefix['X-Api-Key'] = 'Bearer'
3233
-
3234
- # Configure API key authorization: csrf_token
3235
- config.api_key['X-CSRFToken'] = 'YOUR API KEY'
3236
- # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
3237
- #config.api_key_prefix['X-CSRFToken'] = 'Bearer'
3238
2993
  end
3239
2994
 
3240
2995
  api_instance = CloudsmithApi::PackagesApi.new
@@ -3269,7 +3024,7 @@ nil (empty response body)
3269
3024
 
3270
3025
  ### Authorization
3271
3026
 
3272
- [apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
3027
+ [apikey](../README.md#apikey)
3273
3028
 
3274
3029
  ### HTTP request headers
3275
3030
 
@@ -3295,11 +3050,6 @@ CloudsmithApi.configure do |config|
3295
3050
  config.api_key['X-Api-Key'] = 'YOUR API KEY'
3296
3051
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
3297
3052
  #config.api_key_prefix['X-Api-Key'] = 'Bearer'
3298
-
3299
- # Configure API key authorization: csrf_token
3300
- config.api_key['X-CSRFToken'] = 'YOUR API KEY'
3301
- # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
3302
- #config.api_key_prefix['X-CSRFToken'] = 'Bearer'
3303
3053
  end
3304
3054
 
3305
3055
  api_instance = CloudsmithApi::PackagesApi.new
@@ -3334,7 +3084,7 @@ nil (empty response body)
3334
3084
 
3335
3085
  ### Authorization
3336
3086
 
3337
- [apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
3087
+ [apikey](../README.md#apikey)
3338
3088
 
3339
3089
  ### HTTP request headers
3340
3090