cloudsmith-api 2.0.26 → 2.0.29

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (272) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +1 -1
  3. data/README.md +24 -5
  4. data/build.json +1 -1
  5. data/docs/AlpinePackageUpload.md +2 -0
  6. data/docs/CargoPackageUpload.md +2 -0
  7. data/docs/CocoapodsPackageUpload.md +2 -0
  8. data/docs/ComposerPackageUpload.md +2 -0
  9. data/docs/ConanPackageUpload.md +2 -0
  10. data/docs/CondaPackageUpload.md +2 -0
  11. data/docs/ConnectedRepository.md +14 -0
  12. data/docs/ConnectedRepositoryRequest.md +10 -0
  13. data/docs/ConnectedRepositoryRequestPatch.md +10 -0
  14. data/docs/CranPackageUpload.md +2 -0
  15. data/docs/DartPackageUpload.md +2 -0
  16. data/docs/DebPackageUpload.md +2 -0
  17. data/docs/DockerPackageUpload.md +2 -0
  18. data/docs/EntitlementsApi.md +2 -0
  19. data/docs/FormatSupportUpstream.md +1 -0
  20. data/docs/GenericPackageUpload.md +2 -0
  21. data/docs/GoPackageUpload.md +2 -0
  22. data/docs/HelmPackageUpload.md +2 -0
  23. data/docs/HexPackageUpload.md +2 -0
  24. data/docs/HuggingfacePackageUpload.md +2 -0
  25. data/docs/InlineResponse2001.md +1 -1
  26. data/docs/InlineResponse2002.md +8 -0
  27. data/docs/LuarocksPackageUpload.md +2 -0
  28. data/docs/MavenPackageUpload.md +2 -0
  29. data/docs/McpPackageUpload.md +2 -0
  30. data/docs/MemberTeams.md +10 -0
  31. data/docs/NpmPackageUpload.md +2 -0
  32. data/docs/NugetPackageUpload.md +2 -0
  33. data/docs/OrganizationCustomDomainNestedRepo.md +9 -0
  34. data/docs/OrganizationCustomDomains.md +25 -0
  35. data/docs/OrganizationMembership.md +1 -0
  36. data/docs/OrganizationSAMLAuth.md +2 -0
  37. data/docs/OrganizationSAMLAuthRequestPatch.md +2 -0
  38. data/docs/OrgsApi.md +68 -1
  39. data/docs/P2PackageUpload.md +2 -0
  40. data/docs/Package.md +2 -0
  41. data/docs/PackageCopy.md +2 -0
  42. data/docs/PackageMove.md +2 -0
  43. data/docs/PackageQuarantine.md +2 -0
  44. data/docs/PackageResync.md +2 -0
  45. data/docs/PackageStatus.md +1 -0
  46. data/docs/PackageTag.md +2 -0
  47. data/docs/PackagesApi.md +22 -6
  48. data/docs/PythonPackageUpload.md +2 -0
  49. data/docs/RawPackageUpload.md +2 -0
  50. data/docs/RecycleBinApi.md +24 -24
  51. data/docs/ReposApi.md +594 -3
  52. data/docs/Repository.md +2 -0
  53. data/docs/RepositoryCreate.md +2 -0
  54. data/docs/RepositoryCreateRequest.md +1 -0
  55. data/docs/RepositoryEd25519Key.md +14 -0
  56. data/docs/RepositoryEd25519KeyCreate.md +9 -0
  57. data/docs/RepositoryRequestPatch.md +1 -0
  58. data/docs/RpmPackageUpload.md +2 -0
  59. data/docs/RubyPackageUpload.md +2 -0
  60. data/docs/ServiceTeams.md +1 -0
  61. data/docs/SwiftPackageUpload.md +2 -0
  62. data/docs/TerraformPackageUpload.md +2 -0
  63. data/docs/UserApi.md +2 -2
  64. data/docs/VagrantPackageUpload.md +2 -0
  65. data/docs/VsxPackageUpload.md +2 -0
  66. data/lib/cloudsmith-api/api/entitlements_api.rb +3 -0
  67. data/lib/cloudsmith-api/api/orgs_api.rb +63 -0
  68. data/lib/cloudsmith-api/api/packages_api.rb +15 -0
  69. data/lib/cloudsmith-api/api/recycle_bin_api.rb +41 -41
  70. data/lib/cloudsmith-api/api/repos_api.rb +581 -4
  71. data/lib/cloudsmith-api/api/user_api.rb +3 -3
  72. data/lib/cloudsmith-api/models/alpine_package_upload.rb +20 -1
  73. data/lib/cloudsmith-api/models/cargo_package_upload.rb +20 -1
  74. data/lib/cloudsmith-api/models/cargo_upstream.rb +2 -2
  75. data/lib/cloudsmith-api/models/cargo_upstream_request.rb +2 -2
  76. data/lib/cloudsmith-api/models/cargo_upstream_request_patch.rb +2 -2
  77. data/lib/cloudsmith-api/models/cocoapods_package_upload.rb +20 -1
  78. data/lib/cloudsmith-api/models/composer_package_upload.rb +20 -1
  79. data/lib/cloudsmith-api/models/composer_upstream.rb +2 -2
  80. data/lib/cloudsmith-api/models/composer_upstream_request.rb +2 -2
  81. data/lib/cloudsmith-api/models/composer_upstream_request_patch.rb +2 -2
  82. data/lib/cloudsmith-api/models/conan_package_upload.rb +20 -1
  83. data/lib/cloudsmith-api/models/conda_package_upload.rb +20 -1
  84. data/lib/cloudsmith-api/models/conda_upstream.rb +2 -2
  85. data/lib/cloudsmith-api/models/conda_upstream_request.rb +2 -2
  86. data/lib/cloudsmith-api/models/conda_upstream_request_patch.rb +2 -2
  87. data/lib/cloudsmith-api/models/connected_repository.rb +285 -0
  88. data/lib/cloudsmith-api/models/connected_repository_request.rb +211 -0
  89. data/lib/cloudsmith-api/models/connected_repository_request_patch.rb +206 -0
  90. data/lib/cloudsmith-api/models/cran_package_upload.rb +20 -1
  91. data/lib/cloudsmith-api/models/cran_upstream.rb +2 -2
  92. data/lib/cloudsmith-api/models/cran_upstream_request.rb +2 -2
  93. data/lib/cloudsmith-api/models/cran_upstream_request_patch.rb +2 -2
  94. data/lib/cloudsmith-api/models/dart_package_upload.rb +20 -1
  95. data/lib/cloudsmith-api/models/dart_upstream.rb +2 -2
  96. data/lib/cloudsmith-api/models/dart_upstream_request.rb +2 -2
  97. data/lib/cloudsmith-api/models/dart_upstream_request_patch.rb +2 -2
  98. data/lib/cloudsmith-api/models/deb_package_upload.rb +20 -1
  99. data/lib/cloudsmith-api/models/deb_upstream.rb +2 -2
  100. data/lib/cloudsmith-api/models/deb_upstream_request.rb +2 -2
  101. data/lib/cloudsmith-api/models/deb_upstream_request_patch.rb +2 -2
  102. data/lib/cloudsmith-api/models/docker_package_upload.rb +20 -1
  103. data/lib/cloudsmith-api/models/format_support_upstream.rb +16 -1
  104. data/lib/cloudsmith-api/models/generic_package_upload.rb +20 -1
  105. data/lib/cloudsmith-api/models/generic_upstream.rb +2 -2
  106. data/lib/cloudsmith-api/models/generic_upstream_request.rb +2 -2
  107. data/lib/cloudsmith-api/models/generic_upstream_request_patch.rb +2 -2
  108. data/lib/cloudsmith-api/models/go_package_upload.rb +20 -1
  109. data/lib/cloudsmith-api/models/helm_package_upload.rb +20 -1
  110. data/lib/cloudsmith-api/models/helm_upstream.rb +2 -2
  111. data/lib/cloudsmith-api/models/helm_upstream_request.rb +2 -2
  112. data/lib/cloudsmith-api/models/helm_upstream_request_patch.rb +2 -2
  113. data/lib/cloudsmith-api/models/hex_package_upload.rb +20 -1
  114. data/lib/cloudsmith-api/models/hex_upstream.rb +2 -2
  115. data/lib/cloudsmith-api/models/hex_upstream_request.rb +2 -2
  116. data/lib/cloudsmith-api/models/hex_upstream_request_patch.rb +2 -2
  117. data/lib/cloudsmith-api/models/huggingface_package_upload.rb +20 -1
  118. data/lib/cloudsmith-api/models/inline_response_200_1.rb +1 -1
  119. data/lib/cloudsmith-api/models/inline_response_200_2.rb +191 -0
  120. data/lib/cloudsmith-api/models/luarocks_package_upload.rb +20 -1
  121. data/lib/cloudsmith-api/models/maven_package_upload.rb +20 -1
  122. data/lib/cloudsmith-api/models/mcp_package_upload.rb +20 -1
  123. data/lib/cloudsmith-api/models/member_teams.rb +238 -0
  124. data/lib/cloudsmith-api/models/npm_package_upload.rb +20 -1
  125. data/lib/cloudsmith-api/models/npm_upstream.rb +2 -2
  126. data/lib/cloudsmith-api/models/npm_upstream_request.rb +2 -2
  127. data/lib/cloudsmith-api/models/npm_upstream_request_patch.rb +2 -2
  128. data/lib/cloudsmith-api/models/nuget_package_upload.rb +20 -1
  129. data/lib/cloudsmith-api/models/nuget_upstream.rb +2 -2
  130. data/lib/cloudsmith-api/models/nuget_upstream_request.rb +2 -2
  131. data/lib/cloudsmith-api/models/nuget_upstream_request_patch.rb +2 -2
  132. data/lib/cloudsmith-api/models/organization_custom_domain_nested_repo.rb +195 -0
  133. data/lib/cloudsmith-api/models/organization_custom_domains.rb +355 -0
  134. data/lib/cloudsmith-api/models/organization_membership.rb +12 -1
  135. data/lib/cloudsmith-api/models/organization_saml_auth.rb +24 -4
  136. data/lib/cloudsmith-api/models/organization_saml_auth_request_patch.rb +24 -4
  137. data/lib/cloudsmith-api/models/p2_package_upload.rb +20 -1
  138. data/lib/cloudsmith-api/models/package.rb +20 -1
  139. data/lib/cloudsmith-api/models/package_copy.rb +20 -1
  140. data/lib/cloudsmith-api/models/package_move.rb +20 -1
  141. data/lib/cloudsmith-api/models/package_quarantine.rb +20 -1
  142. data/lib/cloudsmith-api/models/package_resync.rb +20 -1
  143. data/lib/cloudsmith-api/models/package_status.rb +10 -1
  144. data/lib/cloudsmith-api/models/package_tag.rb +20 -1
  145. data/lib/cloudsmith-api/models/python_package_upload.rb +20 -1
  146. data/lib/cloudsmith-api/models/python_upstream.rb +2 -2
  147. data/lib/cloudsmith-api/models/python_upstream_request.rb +2 -2
  148. data/lib/cloudsmith-api/models/python_upstream_request_patch.rb +2 -2
  149. data/lib/cloudsmith-api/models/raw_package_upload.rb +20 -1
  150. data/lib/cloudsmith-api/models/repository.rb +21 -1
  151. data/lib/cloudsmith-api/models/repository_create.rb +21 -1
  152. data/lib/cloudsmith-api/models/repository_create_request.rb +11 -1
  153. data/lib/cloudsmith-api/models/repository_ed25519_key.rb +243 -0
  154. data/lib/cloudsmith-api/models/repository_ed25519_key_create.rb +200 -0
  155. data/lib/cloudsmith-api/models/repository_request_patch.rb +11 -1
  156. data/lib/cloudsmith-api/models/rpm_package_upload.rb +20 -1
  157. data/lib/cloudsmith-api/models/ruby_package_upload.rb +20 -1
  158. data/lib/cloudsmith-api/models/service_teams.rb +11 -1
  159. data/lib/cloudsmith-api/models/swift_package_upload.rb +20 -1
  160. data/lib/cloudsmith-api/models/terraform_package_upload.rb +20 -1
  161. data/lib/cloudsmith-api/models/vagrant_package_upload.rb +20 -1
  162. data/lib/cloudsmith-api/models/vsx_package_upload.rb +20 -1
  163. data/lib/cloudsmith-api/version.rb +1 -1
  164. data/lib/cloudsmith-api.rb +9 -0
  165. data/spec/api/entitlements_api_spec.rb +1 -0
  166. data/spec/api/orgs_api_spec.rb +15 -0
  167. data/spec/api/packages_api_spec.rb +5 -0
  168. data/spec/api/recycle_bin_api_spec.rb +12 -12
  169. data/spec/api/repos_api_spec.rb +129 -2
  170. data/spec/api/user_api_spec.rb +1 -1
  171. data/spec/models/alpine_package_upload_spec.rb +12 -0
  172. data/spec/models/cargo_package_upload_spec.rb +12 -0
  173. data/spec/models/cargo_upstream_request_patch_spec.rb +1 -1
  174. data/spec/models/cargo_upstream_request_spec.rb +1 -1
  175. data/spec/models/cargo_upstream_spec.rb +1 -1
  176. data/spec/models/cocoapods_package_upload_spec.rb +12 -0
  177. data/spec/models/composer_package_upload_spec.rb +12 -0
  178. data/spec/models/composer_upstream_request_patch_spec.rb +1 -1
  179. data/spec/models/composer_upstream_request_spec.rb +1 -1
  180. data/spec/models/composer_upstream_spec.rb +1 -1
  181. data/spec/models/conan_package_upload_spec.rb +12 -0
  182. data/spec/models/conda_package_upload_spec.rb +12 -0
  183. data/spec/models/conda_upstream_request_patch_spec.rb +1 -1
  184. data/spec/models/conda_upstream_request_spec.rb +1 -1
  185. data/spec/models/conda_upstream_spec.rb +1 -1
  186. data/spec/models/connected_repository_request_patch_spec.rb +53 -0
  187. data/spec/models/connected_repository_request_spec.rb +53 -0
  188. data/spec/models/connected_repository_spec.rb +81 -0
  189. data/spec/models/cran_package_upload_spec.rb +12 -0
  190. data/spec/models/cran_upstream_request_patch_spec.rb +1 -1
  191. data/spec/models/cran_upstream_request_spec.rb +1 -1
  192. data/spec/models/cran_upstream_spec.rb +1 -1
  193. data/spec/models/dart_package_upload_spec.rb +12 -0
  194. data/spec/models/dart_upstream_request_patch_spec.rb +1 -1
  195. data/spec/models/dart_upstream_request_spec.rb +1 -1
  196. data/spec/models/dart_upstream_spec.rb +1 -1
  197. data/spec/models/deb_package_upload_spec.rb +12 -0
  198. data/spec/models/deb_upstream_request_patch_spec.rb +1 -1
  199. data/spec/models/deb_upstream_request_spec.rb +1 -1
  200. data/spec/models/deb_upstream_spec.rb +1 -1
  201. data/spec/models/docker_package_upload_spec.rb +12 -0
  202. data/spec/models/format_support_upstream_spec.rb +6 -0
  203. data/spec/models/generic_package_upload_spec.rb +12 -0
  204. data/spec/models/generic_upstream_request_patch_spec.rb +1 -1
  205. data/spec/models/generic_upstream_request_spec.rb +1 -1
  206. data/spec/models/generic_upstream_spec.rb +1 -1
  207. data/spec/models/go_package_upload_spec.rb +12 -0
  208. data/spec/models/helm_package_upload_spec.rb +12 -0
  209. data/spec/models/helm_upstream_request_patch_spec.rb +1 -1
  210. data/spec/models/helm_upstream_request_spec.rb +1 -1
  211. data/spec/models/helm_upstream_spec.rb +1 -1
  212. data/spec/models/hex_package_upload_spec.rb +12 -0
  213. data/spec/models/hex_upstream_request_patch_spec.rb +1 -1
  214. data/spec/models/hex_upstream_request_spec.rb +1 -1
  215. data/spec/models/hex_upstream_spec.rb +1 -1
  216. data/spec/models/huggingface_package_upload_spec.rb +12 -0
  217. data/spec/models/inline_response_200_2_spec.rb +41 -0
  218. data/spec/models/luarocks_package_upload_spec.rb +12 -0
  219. data/spec/models/maven_package_upload_spec.rb +12 -0
  220. data/spec/models/mcp_package_upload_spec.rb +12 -0
  221. data/spec/models/member_teams_spec.rb +57 -0
  222. data/spec/models/npm_package_upload_spec.rb +12 -0
  223. data/spec/models/npm_upstream_request_patch_spec.rb +1 -1
  224. data/spec/models/npm_upstream_request_spec.rb +1 -1
  225. data/spec/models/npm_upstream_spec.rb +1 -1
  226. data/spec/models/nuget_package_upload_spec.rb +12 -0
  227. data/spec/models/nuget_upstream_request_patch_spec.rb +1 -1
  228. data/spec/models/nuget_upstream_request_spec.rb +1 -1
  229. data/spec/models/nuget_upstream_spec.rb +1 -1
  230. data/spec/models/organization_custom_domain_nested_repo_spec.rb +47 -0
  231. data/spec/models/organization_custom_domains_spec.rb +143 -0
  232. data/spec/models/organization_membership_spec.rb +6 -0
  233. data/spec/models/organization_saml_auth_request_patch_spec.rb +12 -0
  234. data/spec/models/organization_saml_auth_spec.rb +12 -0
  235. data/spec/models/p2_package_upload_spec.rb +12 -0
  236. data/spec/models/package_copy_spec.rb +12 -0
  237. data/spec/models/package_move_spec.rb +12 -0
  238. data/spec/models/package_quarantine_spec.rb +12 -0
  239. data/spec/models/package_resync_spec.rb +12 -0
  240. data/spec/models/package_spec.rb +12 -0
  241. data/spec/models/package_status_spec.rb +6 -0
  242. data/spec/models/package_tag_spec.rb +12 -0
  243. data/spec/models/python_package_upload_spec.rb +12 -0
  244. data/spec/models/python_upstream_request_patch_spec.rb +1 -1
  245. data/spec/models/python_upstream_request_spec.rb +1 -1
  246. data/spec/models/python_upstream_spec.rb +1 -1
  247. data/spec/models/raw_package_upload_spec.rb +12 -0
  248. data/spec/models/repository_create_request_spec.rb +6 -0
  249. data/spec/models/repository_create_spec.rb +12 -0
  250. data/spec/models/repository_ed25519_key_create_spec.rb +47 -0
  251. data/spec/models/repository_ed25519_key_spec.rb +77 -0
  252. data/spec/models/repository_request_patch_spec.rb +6 -0
  253. data/spec/models/repository_spec.rb +12 -0
  254. data/spec/models/rpm_package_upload_spec.rb +12 -0
  255. data/spec/models/ruby_package_upload_spec.rb +12 -0
  256. data/spec/models/service_teams_spec.rb +6 -0
  257. data/spec/models/swift_package_upload_spec.rb +12 -0
  258. data/spec/models/terraform_package_upload_spec.rb +12 -0
  259. data/spec/models/vagrant_package_upload_spec.rb +12 -0
  260. data/spec/models/vsx_package_upload_spec.rb +12 -0
  261. data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/autotest-fsevent-0.3.2/gem_make.out +1 -1
  262. data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/bigdecimal-4.1.2/gem_make.out +2 -2
  263. data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/bigdecimal-4.1.2/mkmf.log +4 -4
  264. data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/ffi-1.17.4/gem_make.out +2 -2
  265. data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/ffi-1.17.4/mkmf.log +1 -1
  266. data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/json-2.7.6/gem_make.out +2 -2
  267. data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/json-2.7.6/mkmf.log +1 -1
  268. data/vendor/bundle/ruby/2.6.0/gems/bigdecimal-4.1.2/ext/bigdecimal/Makefile +2 -2
  269. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.17.4/ext/ffi_c/Makefile +2 -2
  270. data/vendor/bundle/ruby/2.6.0/gems/json-2.7.6/ext/json/ext/generator/Makefile +2 -2
  271. data/vendor/bundle/ruby/2.6.0/gems/json-2.7.6/ext/json/ext/parser/Makefile +2 -2
  272. metadata +41 -5
@@ -0,0 +1,81 @@
1
+ =begin
2
+ #Cloudsmith API (v1)
3
+
4
+ #The API to the Cloudsmith Service
5
+
6
+ OpenAPI spec version: v1
7
+ Contact: support@cloudsmith.io
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.4.50
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for CloudsmithApi::ConnectedRepository
18
+ # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
19
+ # Please update as you see appropriate
20
+ describe 'ConnectedRepository' do
21
+ before do
22
+ # run before each test
23
+ @instance = CloudsmithApi::ConnectedRepository.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of ConnectedRepository' do
31
+ it 'should create an instance of ConnectedRepository' do
32
+ expect(@instance).to be_instance_of(CloudsmithApi::ConnectedRepository)
33
+ end
34
+ end
35
+ describe 'test attribute "created_at"' do
36
+ it 'should work' do
37
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
+ end
39
+ end
40
+
41
+ describe 'test attribute "disable_reason"' do
42
+ it 'should work' do
43
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["N/A", "The connection contains a circular reference"])
45
+ # validator.allowable_values.each do |value|
46
+ # expect { @instance.disable_reason = value }.not_to raise_error
47
+ # end
48
+ end
49
+ end
50
+
51
+ describe 'test attribute "disable_reason_text"' do
52
+ it 'should work' do
53
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
54
+ end
55
+ end
56
+
57
+ describe 'test attribute "is_active"' do
58
+ it 'should work' do
59
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
60
+ end
61
+ end
62
+
63
+ describe 'test attribute "priority"' do
64
+ it 'should work' do
65
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
66
+ end
67
+ end
68
+
69
+ describe 'test attribute "slug_perm"' do
70
+ it 'should work' do
71
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
72
+ end
73
+ end
74
+
75
+ describe 'test attribute "target_repository"' do
76
+ it 'should work' do
77
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
78
+ end
79
+ end
80
+
81
+ end
@@ -200,6 +200,12 @@ describe 'CranPackageUpload' do
200
200
  end
201
201
  end
202
202
 
203
+ describe 'test attribute "is_hidden"' do
204
+ it 'should work' do
205
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
206
+ end
207
+ end
208
+
203
209
  describe 'test attribute "is_moveable"' do
204
210
  it 'should work' do
205
211
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -302,6 +308,12 @@ describe 'CranPackageUpload' do
302
308
  end
303
309
  end
304
310
 
311
+ describe 'test attribute "osi_approved"' do
312
+ it 'should work' do
313
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
314
+ end
315
+ end
316
+
305
317
  describe 'test attribute "package_type"' do
306
318
  it 'should work' do
307
319
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -87,7 +87,7 @@ describe 'CranUpstreamRequestPatch' do
87
87
  describe 'test attribute "mode"' do
88
88
  it 'should work' do
89
89
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
90
- # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy"])
90
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy", "Cache Only"])
91
91
  # validator.allowable_values.each do |value|
92
92
  # expect { @instance.mode = value }.not_to raise_error
93
93
  # end
@@ -87,7 +87,7 @@ describe 'CranUpstreamRequest' do
87
87
  describe 'test attribute "mode"' do
88
88
  it 'should work' do
89
89
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
90
- # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy"])
90
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy", "Cache Only"])
91
91
  # validator.allowable_values.each do |value|
92
92
  # expect { @instance.mode = value }.not_to raise_error
93
93
  # end
@@ -145,7 +145,7 @@ describe 'CranUpstream' do
145
145
  describe 'test attribute "mode"' do
146
146
  it 'should work' do
147
147
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
148
- # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy"])
148
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy", "Cache Only"])
149
149
  # validator.allowable_values.each do |value|
150
150
  # expect { @instance.mode = value }.not_to raise_error
151
151
  # end
@@ -200,6 +200,12 @@ describe 'DartPackageUpload' do
200
200
  end
201
201
  end
202
202
 
203
+ describe 'test attribute "is_hidden"' do
204
+ it 'should work' do
205
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
206
+ end
207
+ end
208
+
203
209
  describe 'test attribute "is_moveable"' do
204
210
  it 'should work' do
205
211
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -302,6 +308,12 @@ describe 'DartPackageUpload' do
302
308
  end
303
309
  end
304
310
 
311
+ describe 'test attribute "osi_approved"' do
312
+ it 'should work' do
313
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
314
+ end
315
+ end
316
+
305
317
  describe 'test attribute "package_type"' do
306
318
  it 'should work' do
307
319
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -87,7 +87,7 @@ describe 'DartUpstreamRequestPatch' do
87
87
  describe 'test attribute "mode"' do
88
88
  it 'should work' do
89
89
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
90
- # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy"])
90
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy", "Cache Only"])
91
91
  # validator.allowable_values.each do |value|
92
92
  # expect { @instance.mode = value }.not_to raise_error
93
93
  # end
@@ -87,7 +87,7 @@ describe 'DartUpstreamRequest' do
87
87
  describe 'test attribute "mode"' do
88
88
  it 'should work' do
89
89
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
90
- # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy"])
90
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy", "Cache Only"])
91
91
  # validator.allowable_values.each do |value|
92
92
  # expect { @instance.mode = value }.not_to raise_error
93
93
  # end
@@ -145,7 +145,7 @@ describe 'DartUpstream' do
145
145
  describe 'test attribute "mode"' do
146
146
  it 'should work' do
147
147
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
148
- # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy"])
148
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy", "Cache Only"])
149
149
  # validator.allowable_values.each do |value|
150
150
  # expect { @instance.mode = value }.not_to raise_error
151
151
  # end
@@ -200,6 +200,12 @@ describe 'DebPackageUpload' do
200
200
  end
201
201
  end
202
202
 
203
+ describe 'test attribute "is_hidden"' do
204
+ it 'should work' do
205
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
206
+ end
207
+ end
208
+
203
209
  describe 'test attribute "is_moveable"' do
204
210
  it 'should work' do
205
211
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -302,6 +308,12 @@ describe 'DebPackageUpload' do
302
308
  end
303
309
  end
304
310
 
311
+ describe 'test attribute "osi_approved"' do
312
+ it 'should work' do
313
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
314
+ end
315
+ end
316
+
305
317
  describe 'test attribute "package_type"' do
306
318
  it 'should work' do
307
319
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -127,7 +127,7 @@ describe 'DebUpstreamRequestPatch' do
127
127
  describe 'test attribute "mode"' do
128
128
  it 'should work' do
129
129
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
130
- # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy"])
130
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy", "Cache Only"])
131
131
  # validator.allowable_values.each do |value|
132
132
  # expect { @instance.mode = value }.not_to raise_error
133
133
  # end
@@ -127,7 +127,7 @@ describe 'DebUpstreamRequest' do
127
127
  describe 'test attribute "mode"' do
128
128
  it 'should work' do
129
129
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
130
- # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy"])
130
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy", "Cache Only"])
131
131
  # validator.allowable_values.each do |value|
132
132
  # expect { @instance.mode = value }.not_to raise_error
133
133
  # end
@@ -191,7 +191,7 @@ describe 'DebUpstream' do
191
191
  describe 'test attribute "mode"' do
192
192
  it 'should work' do
193
193
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
194
- # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy"])
194
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy", "Cache Only"])
195
195
  # validator.allowable_values.each do |value|
196
196
  # expect { @instance.mode = value }.not_to raise_error
197
197
  # end
@@ -200,6 +200,12 @@ describe 'DockerPackageUpload' do
200
200
  end
201
201
  end
202
202
 
203
+ describe 'test attribute "is_hidden"' do
204
+ it 'should work' do
205
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
206
+ end
207
+ end
208
+
203
209
  describe 'test attribute "is_moveable"' do
204
210
  it 'should work' do
205
211
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -302,6 +308,12 @@ describe 'DockerPackageUpload' do
302
308
  end
303
309
  end
304
310
 
311
+ describe 'test attribute "osi_approved"' do
312
+ it 'should work' do
313
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
314
+ end
315
+ end
316
+
305
317
  describe 'test attribute "package_type"' do
306
318
  it 'should work' do
307
319
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -42,6 +42,12 @@ describe 'FormatSupportUpstream' do
42
42
  end
43
43
  end
44
44
 
45
+ describe 'test attribute "cache_only"' do
46
+ it 'should work' do
47
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
48
+ end
49
+ end
50
+
45
51
  describe 'test attribute "caching"' do
46
52
  it 'should work' do
47
53
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -200,6 +200,12 @@ describe 'GenericPackageUpload' do
200
200
  end
201
201
  end
202
202
 
203
+ describe 'test attribute "is_hidden"' do
204
+ it 'should work' do
205
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
206
+ end
207
+ end
208
+
203
209
  describe 'test attribute "is_moveable"' do
204
210
  it 'should work' do
205
211
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -302,6 +308,12 @@ describe 'GenericPackageUpload' do
302
308
  end
303
309
  end
304
310
 
311
+ describe 'test attribute "osi_approved"' do
312
+ it 'should work' do
313
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
314
+ end
315
+ end
316
+
305
317
  describe 'test attribute "package_type"' do
306
318
  it 'should work' do
307
319
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -87,7 +87,7 @@ describe 'GenericUpstreamRequestPatch' do
87
87
  describe 'test attribute "mode"' do
88
88
  it 'should work' do
89
89
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
90
- # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy"])
90
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy", "Cache Only"])
91
91
  # validator.allowable_values.each do |value|
92
92
  # expect { @instance.mode = value }.not_to raise_error
93
93
  # end
@@ -87,7 +87,7 @@ describe 'GenericUpstreamRequest' do
87
87
  describe 'test attribute "mode"' do
88
88
  it 'should work' do
89
89
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
90
- # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy"])
90
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy", "Cache Only"])
91
91
  # validator.allowable_values.each do |value|
92
92
  # expect { @instance.mode = value }.not_to raise_error
93
93
  # end
@@ -145,7 +145,7 @@ describe 'GenericUpstream' do
145
145
  describe 'test attribute "mode"' do
146
146
  it 'should work' do
147
147
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
148
- # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy"])
148
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy", "Cache Only"])
149
149
  # validator.allowable_values.each do |value|
150
150
  # expect { @instance.mode = value }.not_to raise_error
151
151
  # end
@@ -200,6 +200,12 @@ describe 'GoPackageUpload' do
200
200
  end
201
201
  end
202
202
 
203
+ describe 'test attribute "is_hidden"' do
204
+ it 'should work' do
205
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
206
+ end
207
+ end
208
+
203
209
  describe 'test attribute "is_moveable"' do
204
210
  it 'should work' do
205
211
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -302,6 +308,12 @@ describe 'GoPackageUpload' do
302
308
  end
303
309
  end
304
310
 
311
+ describe 'test attribute "osi_approved"' do
312
+ it 'should work' do
313
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
314
+ end
315
+ end
316
+
305
317
  describe 'test attribute "package_type"' do
306
318
  it 'should work' do
307
319
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -200,6 +200,12 @@ describe 'HelmPackageUpload' do
200
200
  end
201
201
  end
202
202
 
203
+ describe 'test attribute "is_hidden"' do
204
+ it 'should work' do
205
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
206
+ end
207
+ end
208
+
203
209
  describe 'test attribute "is_moveable"' do
204
210
  it 'should work' do
205
211
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -302,6 +308,12 @@ describe 'HelmPackageUpload' do
302
308
  end
303
309
  end
304
310
 
311
+ describe 'test attribute "osi_approved"' do
312
+ it 'should work' do
313
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
314
+ end
315
+ end
316
+
305
317
  describe 'test attribute "package_type"' do
306
318
  it 'should work' do
307
319
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -87,7 +87,7 @@ describe 'HelmUpstreamRequestPatch' do
87
87
  describe 'test attribute "mode"' do
88
88
  it 'should work' do
89
89
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
90
- # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy"])
90
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy", "Cache Only"])
91
91
  # validator.allowable_values.each do |value|
92
92
  # expect { @instance.mode = value }.not_to raise_error
93
93
  # end
@@ -87,7 +87,7 @@ describe 'HelmUpstreamRequest' do
87
87
  describe 'test attribute "mode"' do
88
88
  it 'should work' do
89
89
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
90
- # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy"])
90
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy", "Cache Only"])
91
91
  # validator.allowable_values.each do |value|
92
92
  # expect { @instance.mode = value }.not_to raise_error
93
93
  # end
@@ -145,7 +145,7 @@ describe 'HelmUpstream' do
145
145
  describe 'test attribute "mode"' do
146
146
  it 'should work' do
147
147
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
148
- # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy"])
148
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy", "Cache Only"])
149
149
  # validator.allowable_values.each do |value|
150
150
  # expect { @instance.mode = value }.not_to raise_error
151
151
  # end
@@ -200,6 +200,12 @@ describe 'HexPackageUpload' do
200
200
  end
201
201
  end
202
202
 
203
+ describe 'test attribute "is_hidden"' do
204
+ it 'should work' do
205
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
206
+ end
207
+ end
208
+
203
209
  describe 'test attribute "is_moveable"' do
204
210
  it 'should work' do
205
211
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -302,6 +308,12 @@ describe 'HexPackageUpload' do
302
308
  end
303
309
  end
304
310
 
311
+ describe 'test attribute "osi_approved"' do
312
+ it 'should work' do
313
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
314
+ end
315
+ end
316
+
305
317
  describe 'test attribute "package_type"' do
306
318
  it 'should work' do
307
319
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -87,7 +87,7 @@ describe 'HexUpstreamRequestPatch' do
87
87
  describe 'test attribute "mode"' do
88
88
  it 'should work' do
89
89
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
90
- # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy"])
90
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy", "Cache Only"])
91
91
  # validator.allowable_values.each do |value|
92
92
  # expect { @instance.mode = value }.not_to raise_error
93
93
  # end
@@ -87,7 +87,7 @@ describe 'HexUpstreamRequest' do
87
87
  describe 'test attribute "mode"' do
88
88
  it 'should work' do
89
89
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
90
- # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy"])
90
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy", "Cache Only"])
91
91
  # validator.allowable_values.each do |value|
92
92
  # expect { @instance.mode = value }.not_to raise_error
93
93
  # end
@@ -145,7 +145,7 @@ describe 'HexUpstream' do
145
145
  describe 'test attribute "mode"' do
146
146
  it 'should work' do
147
147
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
148
- # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy"])
148
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["Proxy Only", "Cache and Proxy", "Cache Only"])
149
149
  # validator.allowable_values.each do |value|
150
150
  # expect { @instance.mode = value }.not_to raise_error
151
151
  # end
@@ -200,6 +200,12 @@ describe 'HuggingfacePackageUpload' do
200
200
  end
201
201
  end
202
202
 
203
+ describe 'test attribute "is_hidden"' do
204
+ it 'should work' do
205
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
206
+ end
207
+ end
208
+
203
209
  describe 'test attribute "is_moveable"' do
204
210
  it 'should work' do
205
211
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -302,6 +308,12 @@ describe 'HuggingfacePackageUpload' do
302
308
  end
303
309
  end
304
310
 
311
+ describe 'test attribute "osi_approved"' do
312
+ it 'should work' do
313
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
314
+ end
315
+ end
316
+
305
317
  describe 'test attribute "package_type"' do
306
318
  it 'should work' do
307
319
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -0,0 +1,41 @@
1
+ =begin
2
+ #Cloudsmith API (v1)
3
+
4
+ #The API to the Cloudsmith Service
5
+
6
+ OpenAPI spec version: v1
7
+ Contact: support@cloudsmith.io
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.4.50
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for CloudsmithApi::InlineResponse2002
18
+ # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
19
+ # Please update as you see appropriate
20
+ describe 'InlineResponse2002' do
21
+ before do
22
+ # run before each test
23
+ @instance = CloudsmithApi::InlineResponse2002.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of InlineResponse2002' do
31
+ it 'should create an instance of InlineResponse2002' do
32
+ expect(@instance).to be_instance_of(CloudsmithApi::InlineResponse2002)
33
+ end
34
+ end
35
+ describe 'test attribute "results"' do
36
+ it 'should work' do
37
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
+ end
39
+ end
40
+
41
+ end
@@ -200,6 +200,12 @@ describe 'LuarocksPackageUpload' do
200
200
  end
201
201
  end
202
202
 
203
+ describe 'test attribute "is_hidden"' do
204
+ it 'should work' do
205
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
206
+ end
207
+ end
208
+
203
209
  describe 'test attribute "is_moveable"' do
204
210
  it 'should work' do
205
211
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -302,6 +308,12 @@ describe 'LuarocksPackageUpload' do
302
308
  end
303
309
  end
304
310
 
311
+ describe 'test attribute "osi_approved"' do
312
+ it 'should work' do
313
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
314
+ end
315
+ end
316
+
305
317
  describe 'test attribute "package_type"' do
306
318
  it 'should work' do
307
319
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -212,6 +212,12 @@ describe 'MavenPackageUpload' do
212
212
  end
213
213
  end
214
214
 
215
+ describe 'test attribute "is_hidden"' do
216
+ it 'should work' do
217
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
218
+ end
219
+ end
220
+
215
221
  describe 'test attribute "is_moveable"' do
216
222
  it 'should work' do
217
223
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -314,6 +320,12 @@ describe 'MavenPackageUpload' do
314
320
  end
315
321
  end
316
322
 
323
+ describe 'test attribute "osi_approved"' do
324
+ it 'should work' do
325
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
326
+ end
327
+ end
328
+
317
329
  describe 'test attribute "package_type"' do
318
330
  it 'should work' do
319
331
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -200,6 +200,12 @@ describe 'McpPackageUpload' do
200
200
  end
201
201
  end
202
202
 
203
+ describe 'test attribute "is_hidden"' do
204
+ it 'should work' do
205
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
206
+ end
207
+ end
208
+
203
209
  describe 'test attribute "is_moveable"' do
204
210
  it 'should work' do
205
211
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -302,6 +308,12 @@ describe 'McpPackageUpload' do
302
308
  end
303
309
  end
304
310
 
311
+ describe 'test attribute "osi_approved"' do
312
+ it 'should work' do
313
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
314
+ end
315
+ end
316
+
305
317
  describe 'test attribute "package_type"' do
306
318
  it 'should work' do
307
319
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers