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
@@ -0,0 +1,14 @@
1
+ # CloudsmithApi::VulnerabilityScanResultsList
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **created_at** | **String** | The time this scan result was stored. | [optional]
7
+ **has_vulnerabilities** | **BOOLEAN** | Do the results contain any known vulnerabilities? | [optional]
8
+ **identifier** | **String** | |
9
+ **max_severity** | **String** | | [optional]
10
+ **num_vulnerabilities** | **Integer** | | [optional]
11
+ **package** | **Object** | |
12
+ **scan_id** | **Integer** | |
13
+
14
+
@@ -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::WebhooksApi.new
@@ -68,7 +63,7 @@ Name | Type | Description | Notes
68
63
 
69
64
  ### Authorization
70
65
 
71
- [apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
66
+ [apikey](../README.md#apikey)
72
67
 
73
68
  ### HTTP request headers
74
69
 
@@ -94,11 +89,6 @@ CloudsmithApi.configure do |config|
94
89
  config.api_key['X-Api-Key'] = 'YOUR API KEY'
95
90
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
96
91
  #config.api_key_prefix['X-Api-Key'] = 'Bearer'
97
-
98
- # Configure API key authorization: csrf_token
99
- config.api_key['X-CSRFToken'] = 'YOUR API KEY'
100
- # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
101
- #config.api_key_prefix['X-CSRFToken'] = 'Bearer'
102
92
  end
103
93
 
104
94
  api_instance = CloudsmithApi::WebhooksApi.new
@@ -132,7 +122,7 @@ nil (empty response body)
132
122
 
133
123
  ### Authorization
134
124
 
135
- [apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
125
+ [apikey](../README.md#apikey)
136
126
 
137
127
  ### HTTP request headers
138
128
 
@@ -158,11 +148,6 @@ CloudsmithApi.configure do |config|
158
148
  config.api_key['X-Api-Key'] = 'YOUR API KEY'
159
149
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
160
150
  #config.api_key_prefix['X-Api-Key'] = 'Bearer'
161
-
162
- # Configure API key authorization: csrf_token
163
- config.api_key['X-CSRFToken'] = 'YOUR API KEY'
164
- # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
165
- #config.api_key_prefix['X-CSRFToken'] = 'Bearer'
166
151
  end
167
152
 
168
153
  api_instance = CloudsmithApi::WebhooksApi.new
@@ -200,7 +185,7 @@ Name | Type | Description | Notes
200
185
 
201
186
  ### Authorization
202
187
 
203
- [apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
188
+ [apikey](../README.md#apikey)
204
189
 
205
190
  ### HTTP request headers
206
191
 
@@ -226,11 +211,6 @@ CloudsmithApi.configure do |config|
226
211
  config.api_key['X-Api-Key'] = 'YOUR API KEY'
227
212
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
228
213
  #config.api_key_prefix['X-Api-Key'] = 'Bearer'
229
-
230
- # Configure API key authorization: csrf_token
231
- config.api_key['X-CSRFToken'] = 'YOUR API KEY'
232
- # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
233
- #config.api_key_prefix['X-CSRFToken'] = 'Bearer'
234
214
  end
235
215
 
236
216
  api_instance = CloudsmithApi::WebhooksApi.new
@@ -269,7 +249,7 @@ Name | Type | Description | Notes
269
249
 
270
250
  ### Authorization
271
251
 
272
- [apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
252
+ [apikey](../README.md#apikey)
273
253
 
274
254
  ### HTTP request headers
275
255
 
@@ -295,11 +275,6 @@ CloudsmithApi.configure do |config|
295
275
  config.api_key['X-Api-Key'] = 'YOUR API KEY'
296
276
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
297
277
  #config.api_key_prefix['X-Api-Key'] = 'Bearer'
298
-
299
- # Configure API key authorization: csrf_token
300
- config.api_key['X-CSRFToken'] = 'YOUR API KEY'
301
- # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
302
- #config.api_key_prefix['X-CSRFToken'] = 'Bearer'
303
278
  end
304
279
 
305
280
  api_instance = CloudsmithApi::WebhooksApi.new
@@ -334,7 +309,7 @@ Name | Type | Description | Notes
334
309
 
335
310
  ### Authorization
336
311
 
337
- [apikey](../README.md#apikey), [csrf_token](../README.md#csrf_token)
312
+ [apikey](../README.md#apikey)
338
313
 
339
314
  ### HTTP request headers
340
315
 
@@ -21,7 +21,7 @@ require 'cloudsmith-api/models/alpine_package_upload'
21
21
  require 'cloudsmith-api/models/conan_package_upload'
22
22
  require 'cloudsmith-api/models/distribution'
23
23
  require 'cloudsmith-api/models/distros_versions'
24
- require 'cloudsmith-api/models/entitlement_token_metric'
24
+ require 'cloudsmith-api/models/entitlement_usage_metric'
25
25
  require 'cloudsmith-api/models/entitlements_create'
26
26
  require 'cloudsmith-api/models/entitlements_partial_update'
27
27
  require 'cloudsmith-api/models/entitlements_refresh'
@@ -90,6 +90,9 @@ require 'cloudsmith-api/models/packages_validateupload_terraform'
90
90
  require 'cloudsmith-api/models/packages_validateupload_vagrant'
91
91
  require 'cloudsmith-api/models/packagesownerrepo_architectures'
92
92
  require 'cloudsmith-api/models/packagesownerrepo_files'
93
+ require 'cloudsmith-api/models/quota'
94
+ require 'cloudsmith-api/models/quota_history'
95
+ require 'cloudsmith-api/models/quota_history_history'
93
96
  require 'cloudsmith-api/models/raw_package_upload'
94
97
  require 'cloudsmith-api/models/repos_create'
95
98
  require 'cloudsmith-api/models/repos_gpg_keys'
@@ -109,6 +112,8 @@ require 'cloudsmith-api/models/user_brief'
109
112
  require 'cloudsmith-api/models/user_profile'
110
113
  require 'cloudsmith-api/models/user_token_create'
111
114
  require 'cloudsmith-api/models/vagrant_package_upload'
115
+ require 'cloudsmith-api/models/vulnerability_scan_results'
116
+ require 'cloudsmith-api/models/vulnerability_scan_results_list'
112
117
  require 'cloudsmith-api/models/webhooks_create'
113
118
  require 'cloudsmith-api/models/webhooks_partial_update'
114
119
  require 'cloudsmith-api/models/webhooksownerrepo_templates'
@@ -123,12 +128,14 @@ require 'cloudsmith-api/api/metrics_api'
123
128
  require 'cloudsmith-api/api/namespaces_api'
124
129
  require 'cloudsmith-api/api/orgs_api'
125
130
  require 'cloudsmith-api/api/packages_api'
131
+ require 'cloudsmith-api/api/quota_api'
126
132
  require 'cloudsmith-api/api/rates_api'
127
133
  require 'cloudsmith-api/api/repos_api'
128
134
  require 'cloudsmith-api/api/status_api'
129
135
  require 'cloudsmith-api/api/storageregions_api'
130
136
  require 'cloudsmith-api/api/user_api'
131
137
  require 'cloudsmith-api/api/users_api'
138
+ require 'cloudsmith-api/api/vulnerabilities_api'
132
139
  require 'cloudsmith-api/api/webhooks_api'
133
140
 
134
141
  module CloudsmithApi
@@ -93,7 +93,7 @@ module CloudsmithApi
93
93
 
94
94
  # http body (model)
95
95
  post_body = nil
96
- auth_names = ['apikey', 'csrf_token']
96
+ auth_names = ['apikey']
97
97
  data, status_code, headers = @api_client.call_api(:GET, local_var_path,
98
98
  :header_params => header_params,
99
99
  :query_params => query_params,
@@ -51,7 +51,7 @@ module CloudsmithApi
51
51
 
52
52
  # http body (model)
53
53
  post_body = nil
54
- auth_names = ['apikey', 'csrf_token']
54
+ auth_names = ['apikey']
55
55
  data, status_code, headers = @api_client.call_api(:GET, local_var_path,
56
56
  :header_params => header_params,
57
57
  :query_params => query_params,
@@ -102,7 +102,7 @@ module CloudsmithApi
102
102
 
103
103
  # http body (model)
104
104
  post_body = nil
105
- auth_names = ['apikey', 'csrf_token']
105
+ auth_names = ['apikey']
106
106
  data, status_code, headers = @api_client.call_api(:GET, local_var_path,
107
107
  :header_params => header_params,
108
108
  :query_params => query_params,
@@ -70,7 +70,7 @@ module CloudsmithApi
70
70
 
71
71
  # http body (model)
72
72
  post_body = @api_client.object_to_http_body(opts[:'data'])
73
- auth_names = ['apikey', 'csrf_token']
73
+ auth_names = ['apikey']
74
74
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
75
75
  :header_params => header_params,
76
76
  :query_params => query_params,
@@ -133,7 +133,7 @@ module CloudsmithApi
133
133
 
134
134
  # http body (model)
135
135
  post_body = nil
136
- auth_names = ['apikey', 'csrf_token']
136
+ auth_names = ['apikey']
137
137
  data, status_code, headers = @api_client.call_api(:DELETE, local_var_path,
138
138
  :header_params => header_params,
139
139
  :query_params => query_params,
@@ -195,7 +195,7 @@ module CloudsmithApi
195
195
 
196
196
  # http body (model)
197
197
  post_body = nil
198
- auth_names = ['apikey', 'csrf_token']
198
+ auth_names = ['apikey']
199
199
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
200
200
  :header_params => header_params,
201
201
  :query_params => query_params,
@@ -257,7 +257,7 @@ module CloudsmithApi
257
257
 
258
258
  # http body (model)
259
259
  post_body = nil
260
- auth_names = ['apikey', 'csrf_token']
260
+ auth_names = ['apikey']
261
261
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
262
262
  :header_params => header_params,
263
263
  :query_params => query_params,
@@ -322,7 +322,7 @@ module CloudsmithApi
322
322
 
323
323
  # http body (model)
324
324
  post_body = nil
325
- auth_names = ['apikey', 'csrf_token']
325
+ auth_names = ['apikey']
326
326
  data, status_code, headers = @api_client.call_api(:GET, local_var_path,
327
327
  :header_params => header_params,
328
328
  :query_params => query_params,
@@ -392,7 +392,7 @@ module CloudsmithApi
392
392
 
393
393
  # http body (model)
394
394
  post_body = @api_client.object_to_http_body(opts[:'data'])
395
- auth_names = ['apikey', 'csrf_token']
395
+ auth_names = ['apikey']
396
396
  data, status_code, headers = @api_client.call_api(:PATCH, local_var_path,
397
397
  :header_params => header_params,
398
398
  :query_params => query_params,
@@ -458,7 +458,7 @@ module CloudsmithApi
458
458
 
459
459
  # http body (model)
460
460
  post_body = nil
461
- auth_names = ['apikey', 'csrf_token']
461
+ auth_names = ['apikey']
462
462
  data, status_code, headers = @api_client.call_api(:GET, local_var_path,
463
463
  :header_params => header_params,
464
464
  :query_params => query_params,
@@ -528,7 +528,7 @@ module CloudsmithApi
528
528
 
529
529
  # http body (model)
530
530
  post_body = @api_client.object_to_http_body(opts[:'data'])
531
- auth_names = ['apikey', 'csrf_token']
531
+ auth_names = ['apikey']
532
532
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
533
533
  :header_params => header_params,
534
534
  :query_params => query_params,
@@ -591,7 +591,7 @@ module CloudsmithApi
591
591
 
592
592
  # http body (model)
593
593
  post_body = nil
594
- auth_names = ['apikey', 'csrf_token']
594
+ auth_names = ['apikey']
595
595
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
596
596
  :header_params => header_params,
597
597
  :query_params => query_params,
@@ -654,7 +654,7 @@ module CloudsmithApi
654
654
 
655
655
  # http body (model)
656
656
  post_body = @api_client.object_to_http_body(opts[:'data'])
657
- auth_names = ['apikey', 'csrf_token']
657
+ auth_names = ['apikey']
658
658
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
659
659
  :header_params => header_params,
660
660
  :query_params => query_params,
@@ -73,7 +73,7 @@ module CloudsmithApi
73
73
 
74
74
  # http body (model)
75
75
  post_body = @api_client.object_to_http_body(opts[:'data'])
76
- auth_names = ['apikey', 'csrf_token']
76
+ auth_names = ['apikey']
77
77
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
78
78
  :header_params => header_params,
79
79
  :query_params => query_params,
@@ -139,7 +139,7 @@ module CloudsmithApi
139
139
 
140
140
  # http body (model)
141
141
  post_body = @api_client.object_to_http_body(opts[:'data'])
142
- auth_names = ['apikey', 'csrf_token']
142
+ auth_names = ['apikey']
143
143
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
144
144
  :header_params => header_params,
145
145
  :query_params => query_params,
@@ -200,7 +200,7 @@ module CloudsmithApi
200
200
 
201
201
  # http body (model)
202
202
  post_body = @api_client.object_to_http_body(opts[:'data'])
203
- auth_names = ['apikey', 'csrf_token']
203
+ auth_names = ['apikey']
204
204
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
205
205
  :header_params => header_params,
206
206
  :query_params => query_params,
@@ -263,7 +263,7 @@ module CloudsmithApi
263
263
 
264
264
  # http body (model)
265
265
  post_body = nil
266
- auth_names = ['apikey', 'csrf_token']
266
+ auth_names = ['apikey']
267
267
  data, status_code, headers = @api_client.call_api(:GET, local_var_path,
268
268
  :header_params => header_params,
269
269
  :query_params => query_params,
@@ -324,7 +324,7 @@ module CloudsmithApi
324
324
 
325
325
  # http body (model)
326
326
  post_body = @api_client.object_to_http_body(opts[:'data'])
327
- auth_names = ['apikey', 'csrf_token']
327
+ auth_names = ['apikey']
328
328
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
329
329
  :header_params => header_params,
330
330
  :query_params => query_params,
@@ -51,7 +51,7 @@ module CloudsmithApi
51
51
 
52
52
  # http body (model)
53
53
  post_body = nil
54
- auth_names = ['apikey', 'csrf_token']
54
+ auth_names = ['apikey']
55
55
  data, status_code, headers = @api_client.call_api(:GET, local_var_path,
56
56
  :header_params => header_params,
57
57
  :query_params => query_params,
@@ -102,7 +102,7 @@ module CloudsmithApi
102
102
 
103
103
  # http body (model)
104
104
  post_body = nil
105
- auth_names = ['apikey', 'csrf_token']
105
+ auth_names = ['apikey']
106
106
  data, status_code, headers = @api_client.call_api(:GET, local_var_path,
107
107
  :header_params => header_params,
108
108
  :query_params => query_params,
@@ -30,7 +30,7 @@ module CloudsmithApi
30
30
  # @option opts [Integer] :finish Filter token usage ending before this datetime (UTC by default unless otherwise specified). Defaults to now if not supplied.
31
31
  # @option opts [Integer] :start Filter token usage starting from this datetime (UTC by default unless otherwise specified)).
32
32
  # @option opts [String] :tokens A comma seperated list of tokens (slug perm) to include in the results.
33
- # @return [Array<EntitlementTokenMetric>]
33
+ # @return [Array<EntitlementUsageMetric>]
34
34
  def metrics_entitlements_usage_list(owner, repo, opts = {})
35
35
  data, _status_code, _headers = metrics_entitlements_usage_list_with_http_info(owner, repo, opts)
36
36
  return data
@@ -46,7 +46,7 @@ module CloudsmithApi
46
46
  # @option opts [Integer] :finish Filter token usage ending before this datetime (UTC by default unless otherwise specified). Defaults to now if not supplied.
47
47
  # @option opts [Integer] :start Filter token usage starting from this datetime (UTC by default unless otherwise specified)).
48
48
  # @option opts [String] :tokens A comma seperated list of tokens (slug perm) to include in the results.
49
- # @return [Array<(Array<EntitlementTokenMetric>, Fixnum, Hash)>] Array<EntitlementTokenMetric> data, response status code and response headers
49
+ # @return [Array<(Array<EntitlementUsageMetric>, Fixnum, Hash)>] Array<EntitlementUsageMetric> data, response status code and response headers
50
50
  def metrics_entitlements_usage_list_with_http_info(owner, repo, opts = {})
51
51
  if @api_client.config.debugging
52
52
  @api_client.config.logger.debug "Calling API: MetricsApi.metrics_entitlements_usage_list ..."
@@ -78,14 +78,14 @@ module CloudsmithApi
78
78
 
79
79
  # http body (model)
80
80
  post_body = nil
81
- auth_names = ['apikey', 'csrf_token']
81
+ auth_names = ['apikey']
82
82
  data, status_code, headers = @api_client.call_api(:GET, local_var_path,
83
83
  :header_params => header_params,
84
84
  :query_params => query_params,
85
85
  :form_params => form_params,
86
86
  :body => post_body,
87
87
  :auth_names => auth_names,
88
- :return_type => 'Array<EntitlementTokenMetric>')
88
+ :return_type => 'Array<EntitlementUsageMetric>')
89
89
  if @api_client.config.debugging
90
90
  @api_client.config.logger.debug "API called: MetricsApi#metrics_entitlements_usage_list\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
91
91
  end
@@ -150,7 +150,7 @@ module CloudsmithApi
150
150
 
151
151
  # http body (model)
152
152
  post_body = nil
153
- auth_names = ['apikey', 'csrf_token']
153
+ auth_names = ['apikey']
154
154
  data, status_code, headers = @api_client.call_api(:GET, local_var_path,
155
155
  :header_params => header_params,
156
156
  :query_params => query_params,
@@ -57,7 +57,7 @@ module CloudsmithApi
57
57
 
58
58
  # http body (model)
59
59
  post_body = nil
60
- auth_names = ['apikey', 'csrf_token']
60
+ auth_names = ['apikey']
61
61
  data, status_code, headers = @api_client.call_api(:GET, local_var_path,
62
62
  :header_params => header_params,
63
63
  :query_params => query_params,
@@ -108,7 +108,7 @@ module CloudsmithApi
108
108
 
109
109
  # http body (model)
110
110
  post_body = nil
111
- auth_names = ['apikey', 'csrf_token']
111
+ auth_names = ['apikey']
112
112
  data, status_code, headers = @api_client.call_api(:GET, local_var_path,
113
113
  :header_params => header_params,
114
114
  :query_params => query_params,
@@ -57,7 +57,7 @@ module CloudsmithApi
57
57
 
58
58
  # http body (model)
59
59
  post_body = nil
60
- auth_names = ['apikey', 'csrf_token']
60
+ auth_names = ['apikey']
61
61
  data, status_code, headers = @api_client.call_api(:GET, local_var_path,
62
62
  :header_params => header_params,
63
63
  :query_params => query_params,
@@ -108,7 +108,7 @@ module CloudsmithApi
108
108
 
109
109
  # http body (model)
110
110
  post_body = nil
111
- auth_names = ['apikey', 'csrf_token']
111
+ auth_names = ['apikey']
112
112
  data, status_code, headers = @api_client.call_api(:GET, local_var_path,
113
113
  :header_params => header_params,
114
114
  :query_params => query_params,
@@ -73,7 +73,7 @@ module CloudsmithApi
73
73
 
74
74
  # http body (model)
75
75
  post_body = @api_client.object_to_http_body(opts[:'data'])
76
- auth_names = ['apikey', 'csrf_token']
76
+ auth_names = ['apikey']
77
77
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
78
78
  :header_params => header_params,
79
79
  :query_params => query_params,
@@ -136,7 +136,7 @@ module CloudsmithApi
136
136
 
137
137
  # http body (model)
138
138
  post_body = nil
139
- auth_names = ['apikey', 'csrf_token']
139
+ auth_names = ['apikey']
140
140
  data, status_code, headers = @api_client.call_api(:DELETE, local_var_path,
141
141
  :header_params => header_params,
142
142
  :query_params => query_params,
@@ -201,7 +201,7 @@ module CloudsmithApi
201
201
 
202
202
  # http body (model)
203
203
  post_body = nil
204
- auth_names = ['apikey', 'csrf_token']
204
+ auth_names = ['apikey']
205
205
  data, status_code, headers = @api_client.call_api(:GET, local_var_path,
206
206
  :header_params => header_params,
207
207
  :query_params => query_params,
@@ -268,7 +268,7 @@ module CloudsmithApi
268
268
 
269
269
  # http body (model)
270
270
  post_body = @api_client.object_to_http_body(opts[:'data'])
271
- auth_names = ['apikey', 'csrf_token']
271
+ auth_names = ['apikey']
272
272
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
273
273
  :header_params => header_params,
274
274
  :query_params => query_params,
@@ -331,7 +331,7 @@ module CloudsmithApi
331
331
 
332
332
  # http body (model)
333
333
  post_body = nil
334
- auth_names = ['apikey', 'csrf_token']
334
+ auth_names = ['apikey']
335
335
  data, status_code, headers = @api_client.call_api(:GET, local_var_path,
336
336
  :header_params => header_params,
337
337
  :query_params => query_params,
@@ -394,7 +394,7 @@ module CloudsmithApi
394
394
 
395
395
  # http body (model)
396
396
  post_body = nil
397
- auth_names = ['apikey', 'csrf_token']
397
+ auth_names = ['apikey']
398
398
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
399
399
  :header_params => header_params,
400
400
  :query_params => query_params,
@@ -457,7 +457,7 @@ module CloudsmithApi
457
457
 
458
458
  # http body (model)
459
459
  post_body = nil
460
- auth_names = ['apikey', 'csrf_token']
460
+ auth_names = ['apikey']
461
461
  data, status_code, headers = @api_client.call_api(:GET, local_var_path,
462
462
  :header_params => header_params,
463
463
  :query_params => query_params,
@@ -524,7 +524,7 @@ module CloudsmithApi
524
524
 
525
525
  # http body (model)
526
526
  post_body = @api_client.object_to_http_body(opts[:'data'])
527
- auth_names = ['apikey', 'csrf_token']
527
+ auth_names = ['apikey']
528
528
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
529
529
  :header_params => header_params,
530
530
  :query_params => query_params,
@@ -585,7 +585,7 @@ module CloudsmithApi
585
585
 
586
586
  # http body (model)
587
587
  post_body = @api_client.object_to_http_body(opts[:'data'])
588
- auth_names = ['apikey', 'csrf_token']
588
+ auth_names = ['apikey']
589
589
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
590
590
  :header_params => header_params,
591
591
  :query_params => query_params,
@@ -646,7 +646,7 @@ module CloudsmithApi
646
646
 
647
647
  # http body (model)
648
648
  post_body = @api_client.object_to_http_body(opts[:'data'])
649
- auth_names = ['apikey', 'csrf_token']
649
+ auth_names = ['apikey']
650
650
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
651
651
  :header_params => header_params,
652
652
  :query_params => query_params,
@@ -707,7 +707,7 @@ module CloudsmithApi
707
707
 
708
708
  # http body (model)
709
709
  post_body = @api_client.object_to_http_body(opts[:'data'])
710
- auth_names = ['apikey', 'csrf_token']
710
+ auth_names = ['apikey']
711
711
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
712
712
  :header_params => header_params,
713
713
  :query_params => query_params,
@@ -768,7 +768,7 @@ module CloudsmithApi
768
768
 
769
769
  # http body (model)
770
770
  post_body = @api_client.object_to_http_body(opts[:'data'])
771
- auth_names = ['apikey', 'csrf_token']
771
+ auth_names = ['apikey']
772
772
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
773
773
  :header_params => header_params,
774
774
  :query_params => query_params,
@@ -829,7 +829,7 @@ module CloudsmithApi
829
829
 
830
830
  # http body (model)
831
831
  post_body = @api_client.object_to_http_body(opts[:'data'])
832
- auth_names = ['apikey', 'csrf_token']
832
+ auth_names = ['apikey']
833
833
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
834
834
  :header_params => header_params,
835
835
  :query_params => query_params,
@@ -890,7 +890,7 @@ module CloudsmithApi
890
890
 
891
891
  # http body (model)
892
892
  post_body = @api_client.object_to_http_body(opts[:'data'])
893
- auth_names = ['apikey', 'csrf_token']
893
+ auth_names = ['apikey']
894
894
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
895
895
  :header_params => header_params,
896
896
  :query_params => query_params,
@@ -951,7 +951,7 @@ module CloudsmithApi
951
951
 
952
952
  # http body (model)
953
953
  post_body = @api_client.object_to_http_body(opts[:'data'])
954
- auth_names = ['apikey', 'csrf_token']
954
+ auth_names = ['apikey']
955
955
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
956
956
  :header_params => header_params,
957
957
  :query_params => query_params,
@@ -1012,7 +1012,7 @@ module CloudsmithApi
1012
1012
 
1013
1013
  # http body (model)
1014
1014
  post_body = @api_client.object_to_http_body(opts[:'data'])
1015
- auth_names = ['apikey', 'csrf_token']
1015
+ auth_names = ['apikey']
1016
1016
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
1017
1017
  :header_params => header_params,
1018
1018
  :query_params => query_params,
@@ -1073,7 +1073,7 @@ module CloudsmithApi
1073
1073
 
1074
1074
  # http body (model)
1075
1075
  post_body = @api_client.object_to_http_body(opts[:'data'])
1076
- auth_names = ['apikey', 'csrf_token']
1076
+ auth_names = ['apikey']
1077
1077
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
1078
1078
  :header_params => header_params,
1079
1079
  :query_params => query_params,
@@ -1134,7 +1134,7 @@ module CloudsmithApi
1134
1134
 
1135
1135
  # http body (model)
1136
1136
  post_body = @api_client.object_to_http_body(opts[:'data'])
1137
- auth_names = ['apikey', 'csrf_token']
1137
+ auth_names = ['apikey']
1138
1138
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
1139
1139
  :header_params => header_params,
1140
1140
  :query_params => query_params,
@@ -1195,7 +1195,7 @@ module CloudsmithApi
1195
1195
 
1196
1196
  # http body (model)
1197
1197
  post_body = @api_client.object_to_http_body(opts[:'data'])
1198
- auth_names = ['apikey', 'csrf_token']
1198
+ auth_names = ['apikey']
1199
1199
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
1200
1200
  :header_params => header_params,
1201
1201
  :query_params => query_params,
@@ -1256,7 +1256,7 @@ module CloudsmithApi
1256
1256
 
1257
1257
  # http body (model)
1258
1258
  post_body = @api_client.object_to_http_body(opts[:'data'])
1259
- auth_names = ['apikey', 'csrf_token']
1259
+ auth_names = ['apikey']
1260
1260
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
1261
1261
  :header_params => header_params,
1262
1262
  :query_params => query_params,
@@ -1317,7 +1317,7 @@ module CloudsmithApi
1317
1317
 
1318
1318
  # http body (model)
1319
1319
  post_body = @api_client.object_to_http_body(opts[:'data'])
1320
- auth_names = ['apikey', 'csrf_token']
1320
+ auth_names = ['apikey']
1321
1321
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
1322
1322
  :header_params => header_params,
1323
1323
  :query_params => query_params,
@@ -1378,7 +1378,7 @@ module CloudsmithApi
1378
1378
 
1379
1379
  # http body (model)
1380
1380
  post_body = @api_client.object_to_http_body(opts[:'data'])
1381
- auth_names = ['apikey', 'csrf_token']
1381
+ auth_names = ['apikey']
1382
1382
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
1383
1383
  :header_params => header_params,
1384
1384
  :query_params => query_params,
@@ -1439,7 +1439,7 @@ module CloudsmithApi
1439
1439
 
1440
1440
  # http body (model)
1441
1441
  post_body = @api_client.object_to_http_body(opts[:'data'])
1442
- auth_names = ['apikey', 'csrf_token']
1442
+ auth_names = ['apikey']
1443
1443
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
1444
1444
  :header_params => header_params,
1445
1445
  :query_params => query_params,
@@ -1500,7 +1500,7 @@ module CloudsmithApi
1500
1500
 
1501
1501
  # http body (model)
1502
1502
  post_body = @api_client.object_to_http_body(opts[:'data'])
1503
- auth_names = ['apikey', 'csrf_token']
1503
+ auth_names = ['apikey']
1504
1504
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
1505
1505
  :header_params => header_params,
1506
1506
  :query_params => query_params,
@@ -1561,7 +1561,7 @@ module CloudsmithApi
1561
1561
 
1562
1562
  # http body (model)
1563
1563
  post_body = @api_client.object_to_http_body(opts[:'data'])
1564
- auth_names = ['apikey', 'csrf_token']
1564
+ auth_names = ['apikey']
1565
1565
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
1566
1566
  :header_params => header_params,
1567
1567
  :query_params => query_params,
@@ -1622,7 +1622,7 @@ module CloudsmithApi
1622
1622
 
1623
1623
  # http body (model)
1624
1624
  post_body = @api_client.object_to_http_body(opts[:'data'])
1625
- auth_names = ['apikey', 'csrf_token']
1625
+ auth_names = ['apikey']
1626
1626
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
1627
1627
  :header_params => header_params,
1628
1628
  :query_params => query_params,
@@ -1683,7 +1683,7 @@ module CloudsmithApi
1683
1683
 
1684
1684
  # http body (model)
1685
1685
  post_body = @api_client.object_to_http_body(opts[:'data'])
1686
- auth_names = ['apikey', 'csrf_token']
1686
+ auth_names = ['apikey']
1687
1687
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
1688
1688
  :header_params => header_params,
1689
1689
  :query_params => query_params,
@@ -1744,7 +1744,7 @@ module CloudsmithApi
1744
1744
 
1745
1745
  # http body (model)
1746
1746
  post_body = @api_client.object_to_http_body(opts[:'data'])
1747
- auth_names = ['apikey', 'csrf_token']
1747
+ auth_names = ['apikey']
1748
1748
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
1749
1749
  :header_params => header_params,
1750
1750
  :query_params => query_params,
@@ -1805,7 +1805,7 @@ module CloudsmithApi
1805
1805
 
1806
1806
  # http body (model)
1807
1807
  post_body = @api_client.object_to_http_body(opts[:'data'])
1808
- auth_names = ['apikey', 'csrf_token']
1808
+ auth_names = ['apikey']
1809
1809
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
1810
1810
  :header_params => header_params,
1811
1811
  :query_params => query_params,
@@ -1866,7 +1866,7 @@ module CloudsmithApi
1866
1866
 
1867
1867
  # http body (model)
1868
1868
  post_body = @api_client.object_to_http_body(opts[:'data'])
1869
- auth_names = ['apikey', 'csrf_token']
1869
+ auth_names = ['apikey']
1870
1870
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
1871
1871
  :header_params => header_params,
1872
1872
  :query_params => query_params,
@@ -1926,7 +1926,7 @@ module CloudsmithApi
1926
1926
 
1927
1927
  # http body (model)
1928
1928
  post_body = @api_client.object_to_http_body(opts[:'data'])
1929
- auth_names = ['apikey', 'csrf_token']
1929
+ auth_names = ['apikey']
1930
1930
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
1931
1931
  :header_params => header_params,
1932
1932
  :query_params => query_params,
@@ -1986,7 +1986,7 @@ module CloudsmithApi
1986
1986
 
1987
1987
  # http body (model)
1988
1988
  post_body = @api_client.object_to_http_body(opts[:'data'])
1989
- auth_names = ['apikey', 'csrf_token']
1989
+ auth_names = ['apikey']
1990
1990
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
1991
1991
  :header_params => header_params,
1992
1992
  :query_params => query_params,
@@ -2046,7 +2046,7 @@ module CloudsmithApi
2046
2046
 
2047
2047
  # http body (model)
2048
2048
  post_body = @api_client.object_to_http_body(opts[:'data'])
2049
- auth_names = ['apikey', 'csrf_token']
2049
+ auth_names = ['apikey']
2050
2050
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
2051
2051
  :header_params => header_params,
2052
2052
  :query_params => query_params,
@@ -2106,7 +2106,7 @@ module CloudsmithApi
2106
2106
 
2107
2107
  # http body (model)
2108
2108
  post_body = @api_client.object_to_http_body(opts[:'data'])
2109
- auth_names = ['apikey', 'csrf_token']
2109
+ auth_names = ['apikey']
2110
2110
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
2111
2111
  :header_params => header_params,
2112
2112
  :query_params => query_params,
@@ -2166,7 +2166,7 @@ module CloudsmithApi
2166
2166
 
2167
2167
  # http body (model)
2168
2168
  post_body = @api_client.object_to_http_body(opts[:'data'])
2169
- auth_names = ['apikey', 'csrf_token']
2169
+ auth_names = ['apikey']
2170
2170
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
2171
2171
  :header_params => header_params,
2172
2172
  :query_params => query_params,
@@ -2226,7 +2226,7 @@ module CloudsmithApi
2226
2226
 
2227
2227
  # http body (model)
2228
2228
  post_body = @api_client.object_to_http_body(opts[:'data'])
2229
- auth_names = ['apikey', 'csrf_token']
2229
+ auth_names = ['apikey']
2230
2230
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
2231
2231
  :header_params => header_params,
2232
2232
  :query_params => query_params,
@@ -2286,7 +2286,7 @@ module CloudsmithApi
2286
2286
 
2287
2287
  # http body (model)
2288
2288
  post_body = @api_client.object_to_http_body(opts[:'data'])
2289
- auth_names = ['apikey', 'csrf_token']
2289
+ auth_names = ['apikey']
2290
2290
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
2291
2291
  :header_params => header_params,
2292
2292
  :query_params => query_params,
@@ -2346,7 +2346,7 @@ module CloudsmithApi
2346
2346
 
2347
2347
  # http body (model)
2348
2348
  post_body = @api_client.object_to_http_body(opts[:'data'])
2349
- auth_names = ['apikey', 'csrf_token']
2349
+ auth_names = ['apikey']
2350
2350
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
2351
2351
  :header_params => header_params,
2352
2352
  :query_params => query_params,
@@ -2406,7 +2406,7 @@ module CloudsmithApi
2406
2406
 
2407
2407
  # http body (model)
2408
2408
  post_body = @api_client.object_to_http_body(opts[:'data'])
2409
- auth_names = ['apikey', 'csrf_token']
2409
+ auth_names = ['apikey']
2410
2410
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
2411
2411
  :header_params => header_params,
2412
2412
  :query_params => query_params,
@@ -2466,7 +2466,7 @@ module CloudsmithApi
2466
2466
 
2467
2467
  # http body (model)
2468
2468
  post_body = @api_client.object_to_http_body(opts[:'data'])
2469
- auth_names = ['apikey', 'csrf_token']
2469
+ auth_names = ['apikey']
2470
2470
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
2471
2471
  :header_params => header_params,
2472
2472
  :query_params => query_params,
@@ -2526,7 +2526,7 @@ module CloudsmithApi
2526
2526
 
2527
2527
  # http body (model)
2528
2528
  post_body = @api_client.object_to_http_body(opts[:'data'])
2529
- auth_names = ['apikey', 'csrf_token']
2529
+ auth_names = ['apikey']
2530
2530
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
2531
2531
  :header_params => header_params,
2532
2532
  :query_params => query_params,
@@ -2586,7 +2586,7 @@ module CloudsmithApi
2586
2586
 
2587
2587
  # http body (model)
2588
2588
  post_body = @api_client.object_to_http_body(opts[:'data'])
2589
- auth_names = ['apikey', 'csrf_token']
2589
+ auth_names = ['apikey']
2590
2590
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
2591
2591
  :header_params => header_params,
2592
2592
  :query_params => query_params,
@@ -2646,7 +2646,7 @@ module CloudsmithApi
2646
2646
 
2647
2647
  # http body (model)
2648
2648
  post_body = @api_client.object_to_http_body(opts[:'data'])
2649
- auth_names = ['apikey', 'csrf_token']
2649
+ auth_names = ['apikey']
2650
2650
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
2651
2651
  :header_params => header_params,
2652
2652
  :query_params => query_params,
@@ -2706,7 +2706,7 @@ module CloudsmithApi
2706
2706
 
2707
2707
  # http body (model)
2708
2708
  post_body = @api_client.object_to_http_body(opts[:'data'])
2709
- auth_names = ['apikey', 'csrf_token']
2709
+ auth_names = ['apikey']
2710
2710
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
2711
2711
  :header_params => header_params,
2712
2712
  :query_params => query_params,
@@ -2766,7 +2766,7 @@ module CloudsmithApi
2766
2766
 
2767
2767
  # http body (model)
2768
2768
  post_body = @api_client.object_to_http_body(opts[:'data'])
2769
- auth_names = ['apikey', 'csrf_token']
2769
+ auth_names = ['apikey']
2770
2770
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
2771
2771
  :header_params => header_params,
2772
2772
  :query_params => query_params,
@@ -2826,7 +2826,7 @@ module CloudsmithApi
2826
2826
 
2827
2827
  # http body (model)
2828
2828
  post_body = @api_client.object_to_http_body(opts[:'data'])
2829
- auth_names = ['apikey', 'csrf_token']
2829
+ auth_names = ['apikey']
2830
2830
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
2831
2831
  :header_params => header_params,
2832
2832
  :query_params => query_params,
@@ -2886,7 +2886,7 @@ module CloudsmithApi
2886
2886
 
2887
2887
  # http body (model)
2888
2888
  post_body = @api_client.object_to_http_body(opts[:'data'])
2889
- auth_names = ['apikey', 'csrf_token']
2889
+ auth_names = ['apikey']
2890
2890
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
2891
2891
  :header_params => header_params,
2892
2892
  :query_params => query_params,
@@ -2946,7 +2946,7 @@ module CloudsmithApi
2946
2946
 
2947
2947
  # http body (model)
2948
2948
  post_body = @api_client.object_to_http_body(opts[:'data'])
2949
- auth_names = ['apikey', 'csrf_token']
2949
+ auth_names = ['apikey']
2950
2950
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
2951
2951
  :header_params => header_params,
2952
2952
  :query_params => query_params,
@@ -3006,7 +3006,7 @@ module CloudsmithApi
3006
3006
 
3007
3007
  # http body (model)
3008
3008
  post_body = @api_client.object_to_http_body(opts[:'data'])
3009
- auth_names = ['apikey', 'csrf_token']
3009
+ auth_names = ['apikey']
3010
3010
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
3011
3011
  :header_params => header_params,
3012
3012
  :query_params => query_params,
@@ -3066,7 +3066,7 @@ module CloudsmithApi
3066
3066
 
3067
3067
  # http body (model)
3068
3068
  post_body = @api_client.object_to_http_body(opts[:'data'])
3069
- auth_names = ['apikey', 'csrf_token']
3069
+ auth_names = ['apikey']
3070
3070
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
3071
3071
  :header_params => header_params,
3072
3072
  :query_params => query_params,