cloudsmith-api 1.61.3 → 1.120.3

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 (193) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +2 -2
  3. data/README.md +51 -30
  4. data/build.json +1 -1
  5. data/docs/AuditLogApi.md +137 -0
  6. data/docs/FilesApi.md +13 -6
  7. data/docs/NamespaceAuditLog.md +23 -0
  8. data/docs/OrganizationGroupSync.md +12 -0
  9. data/docs/OrganizationInvite.md +16 -0
  10. data/docs/OrganizationTeam.md +12 -0
  11. data/docs/OrgsApi.md +713 -0
  12. data/docs/OrgsInvitesCreate.md +12 -0
  13. data/docs/OrgsInvitesExtend.md +11 -0
  14. data/docs/OrgsSamlgroupsyncCreate.md +12 -0
  15. data/docs/OrgsTeamsCreate.md +11 -0
  16. data/docs/OrgsTeamsPartialUpdate.md +11 -0
  17. data/docs/ReposApi.md +586 -0
  18. data/docs/ReposCreate.md +29 -1
  19. data/docs/ReposGpgCreate.md +9 -0
  20. data/docs/ReposPartialUpdate.md +28 -0
  21. data/docs/ReposRsaCreate.md +9 -0
  22. data/docs/Repository.md +28 -0
  23. data/docs/RepositoryAuditLog.md +20 -0
  24. data/docs/RepositoryCreate.md +29 -1
  25. data/docs/RepositoryGpgKey.md +14 -0
  26. data/docs/RepositoryPrivilegeList.md +8 -0
  27. data/docs/RepositoryRsaKey.md +13 -0
  28. data/lib/cloudsmith-api/api/audit_log_api.rb +147 -0
  29. data/lib/cloudsmith-api/api/files_api.rb +17 -7
  30. data/lib/cloudsmith-api/api/orgs_api.rb +671 -0
  31. data/lib/cloudsmith-api/api/repos_api.rb +566 -0
  32. data/lib/cloudsmith-api/models/alpine_package_upload.rb +34 -0
  33. data/lib/cloudsmith-api/models/conan_package_upload.rb +34 -0
  34. data/lib/cloudsmith-api/models/entitlements_create.rb +46 -0
  35. data/lib/cloudsmith-api/models/entitlements_partial_update.rb +46 -0
  36. data/lib/cloudsmith-api/models/entitlements_refresh.rb +46 -0
  37. data/lib/cloudsmith-api/models/files_abort.rb +34 -0
  38. data/lib/cloudsmith-api/models/files_complete.rb +34 -0
  39. data/lib/cloudsmith-api/models/files_create.rb +34 -0
  40. data/lib/cloudsmith-api/models/files_validate.rb +34 -0
  41. data/lib/cloudsmith-api/models/maven_package_upload.rb +34 -0
  42. data/lib/cloudsmith-api/models/namespace_audit_log.rb +395 -0
  43. data/lib/cloudsmith-api/models/organization_group_sync.rb +240 -0
  44. data/lib/cloudsmith-api/models/organization_invite.rb +299 -0
  45. data/lib/cloudsmith-api/models/organization_membership.rb +46 -0
  46. data/lib/cloudsmith-api/models/organization_team.rb +264 -0
  47. data/lib/cloudsmith-api/models/orgs_invites_create.rb +259 -0
  48. data/lib/cloudsmith-api/models/orgs_invites_extend.rb +249 -0
  49. data/lib/cloudsmith-api/models/orgs_samlgroupsync_create.rb +245 -0
  50. data/lib/cloudsmith-api/models/orgs_teams_create.rb +254 -0
  51. data/lib/cloudsmith-api/models/orgs_teams_partial_update.rb +249 -0
  52. data/lib/cloudsmith-api/models/package.rb +34 -0
  53. data/lib/cloudsmith-api/models/package_copy.rb +34 -0
  54. data/lib/cloudsmith-api/models/package_move.rb +34 -0
  55. data/lib/cloudsmith-api/models/packages_tag.rb +34 -0
  56. data/lib/cloudsmith-api/models/raw_package_upload.rb +34 -0
  57. data/lib/cloudsmith-api/models/repos_create.rb +403 -5
  58. data/lib/cloudsmith-api/models/repos_gpg_create.rb +200 -0
  59. data/lib/cloudsmith-api/models/repos_partial_update.rb +414 -4
  60. data/lib/cloudsmith-api/models/repos_rsa_create.rb +200 -0
  61. data/lib/cloudsmith-api/models/repository.rb +414 -4
  62. data/lib/cloudsmith-api/models/repository_audit_log.rb +355 -0
  63. data/lib/cloudsmith-api/models/repository_create.rb +403 -5
  64. data/lib/cloudsmith-api/models/repository_gpg_key.rb +250 -0
  65. data/lib/cloudsmith-api/models/repository_privilege_list.rb +185 -0
  66. data/lib/cloudsmith-api/models/repository_rsa_key.rb +235 -0
  67. data/lib/cloudsmith-api/models/repository_token.rb +46 -0
  68. data/lib/cloudsmith-api/models/repository_token_refresh.rb +46 -0
  69. data/lib/cloudsmith-api/models/vagrant_package_upload.rb +34 -0
  70. data/lib/cloudsmith-api/models/vulnerability_scan_results.rb +34 -0
  71. data/lib/cloudsmith-api/models/vulnerability_scan_results_list.rb +34 -0
  72. data/lib/cloudsmith-api/version.rb +1 -1
  73. data/lib/cloudsmith-api.rb +16 -0
  74. data/spec/api/audit_log_api_spec.rb +66 -0
  75. data/spec/api/files_api_spec.rb +4 -2
  76. data/spec/api/orgs_api_spec.rb +161 -0
  77. data/spec/api/repos_api_spec.rb +132 -0
  78. data/spec/models/alpine_package_upload_spec.rb +4 -0
  79. data/spec/models/conan_package_upload_spec.rb +4 -0
  80. data/spec/models/entitlements_create_spec.rb +8 -0
  81. data/spec/models/entitlements_partial_update_spec.rb +8 -0
  82. data/spec/models/entitlements_refresh_spec.rb +8 -0
  83. data/spec/models/files_abort_spec.rb +4 -0
  84. data/spec/models/files_complete_spec.rb +4 -0
  85. data/spec/models/files_create_spec.rb +4 -0
  86. data/spec/models/files_validate_spec.rb +4 -0
  87. data/spec/models/maven_package_upload_spec.rb +4 -0
  88. data/spec/models/namespace_audit_log_spec.rb +131 -0
  89. data/spec/models/organization_group_sync_spec.rb +65 -0
  90. data/spec/models/organization_invite_spec.rb +93 -0
  91. data/spec/models/organization_membership_spec.rb +8 -0
  92. data/spec/models/organization_team_spec.rb +69 -0
  93. data/spec/models/orgs_invites_create_spec.rb +69 -0
  94. data/spec/models/orgs_invites_extend_spec.rb +63 -0
  95. data/spec/models/orgs_samlgroupsync_create_spec.rb +65 -0
  96. data/spec/models/orgs_teams_create_spec.rb +63 -0
  97. data/spec/models/orgs_teams_partial_update_spec.rb +63 -0
  98. data/spec/models/package_copy_spec.rb +4 -0
  99. data/spec/models/package_move_spec.rb +4 -0
  100. data/spec/models/package_spec.rb +4 -0
  101. data/spec/models/packages_tag_spec.rb +4 -0
  102. data/spec/models/raw_package_upload_spec.rb +4 -0
  103. data/spec/models/repos_create_spec.rb +200 -0
  104. data/spec/models/repos_gpg_create_spec.rb +47 -0
  105. data/spec/models/repos_partial_update_spec.rb +204 -0
  106. data/spec/models/repos_rsa_create_spec.rb +47 -0
  107. data/spec/models/repository_audit_log_spec.rb +113 -0
  108. data/spec/models/repository_create_spec.rb +200 -0
  109. data/spec/models/repository_gpg_key_spec.rb +77 -0
  110. data/spec/models/repository_privilege_list_spec.rb +41 -0
  111. data/spec/models/repository_rsa_key_spec.rb +71 -0
  112. data/spec/models/repository_spec.rb +204 -0
  113. data/spec/models/repository_token_refresh_spec.rb +8 -0
  114. data/spec/models/repository_token_spec.rb +8 -0
  115. data/spec/models/vagrant_package_upload_spec.rb +4 -0
  116. data/spec/models/vulnerability_scan_results_list_spec.rb +4 -0
  117. data/spec/models/vulnerability_scan_results_spec.rb +4 -0
  118. data/vendor/bundle/ruby/2.6.0/bin/htmldiff +3 -3
  119. data/vendor/bundle/ruby/2.6.0/bin/ldiff +3 -3
  120. data/vendor/bundle/ruby/2.6.0/bin/multigem +3 -3
  121. data/vendor/bundle/ruby/2.6.0/bin/multiruby +3 -3
  122. data/vendor/bundle/ruby/2.6.0/bin/rake +2 -0
  123. data/vendor/bundle/ruby/2.6.0/bin/rspec +2 -0
  124. data/vendor/bundle/ruby/2.6.0/bin/unit_diff +3 -3
  125. data/vendor/bundle/ruby/2.6.0/bin/zentest +3 -3
  126. data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/autotest-fsevent-0.2.19/gem_make.out +4 -4
  127. data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/ffi-1.15.5/ffi_c.so +0 -0
  128. data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/ffi-1.15.5/gem_make.out +5 -5
  129. data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/ffi-1.15.5/mkmf.log +9 -9
  130. data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/json-2.6.2/gem_make.out +4 -4
  131. data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/json-2.6.2/json/ext/generator.so +0 -0
  132. data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/json-2.6.2/json/ext/parser.so +0 -0
  133. data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/json-2.6.2/mkmf.log +7 -7
  134. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/AbstractMemory.o +0 -0
  135. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/ArrayType.o +0 -0
  136. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/Buffer.o +0 -0
  137. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/Call.o +0 -0
  138. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/ClosurePool.o +0 -0
  139. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/DynamicLibrary.o +0 -0
  140. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/Function.o +0 -0
  141. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/FunctionInfo.o +0 -0
  142. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/LastError.o +0 -0
  143. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/LongDouble.o +0 -0
  144. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/Makefile +3 -3
  145. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/MappedType.o +0 -0
  146. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/MemoryPointer.o +0 -0
  147. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/MethodHandle.o +0 -0
  148. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/Platform.o +0 -0
  149. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/Pointer.o +0 -0
  150. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/Struct.o +0 -0
  151. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/StructByValue.o +0 -0
  152. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/StructLayout.o +0 -0
  153. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/Thread.o +0 -0
  154. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/Type.o +0 -0
  155. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/Types.o +0 -0
  156. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/Variadic.o +0 -0
  157. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/ffi.o +0 -0
  158. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/ffi_c.so +0 -0
  159. data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/lib/ffi_c.so +0 -0
  160. data/vendor/bundle/ruby/2.6.0/gems/json-2.6.2/ext/json/Makefile +3 -3
  161. data/vendor/bundle/ruby/2.6.0/gems/json-2.6.2/ext/json/ext/generator/Makefile +3 -3
  162. data/vendor/bundle/ruby/2.6.0/gems/json-2.6.2/ext/json/ext/generator/generator.o +0 -0
  163. data/vendor/bundle/ruby/2.6.0/gems/json-2.6.2/ext/json/ext/generator/generator.so +0 -0
  164. data/vendor/bundle/ruby/2.6.0/gems/json-2.6.2/ext/json/ext/parser/Makefile +3 -3
  165. data/vendor/bundle/ruby/2.6.0/gems/json-2.6.2/ext/json/ext/parser/parser.o +0 -0
  166. data/vendor/bundle/ruby/2.6.0/gems/json-2.6.2/ext/json/ext/parser/parser.so +0 -0
  167. data/vendor/bundle/ruby/2.6.0/gems/json-2.6.2/lib/json/ext/generator.so +0 -0
  168. data/vendor/bundle/ruby/2.6.0/gems/json-2.6.2/lib/json/ext/parser.so +0 -0
  169. data/vendor/bundle/ruby/2.6.0/specifications/ZenTest-4.12.1.gemspec +6 -9
  170. data/vendor/bundle/ruby/2.6.0/specifications/addressable-2.8.0.gemspec +6 -9
  171. data/vendor/bundle/ruby/2.6.0/specifications/autotest-4.4.6.gemspec +8 -13
  172. data/vendor/bundle/ruby/2.6.0/specifications/autotest-fsevent-0.2.19.gemspec +8 -13
  173. data/vendor/bundle/ruby/2.6.0/specifications/autotest-growl-0.2.16.gemspec +7 -11
  174. data/vendor/bundle/ruby/2.6.0/specifications/autotest-rails-pure-4.1.2.gemspec +2 -2
  175. data/vendor/bundle/ruby/2.6.0/specifications/crack-0.4.5.gemspec +5 -7
  176. data/vendor/bundle/ruby/2.6.0/specifications/diff-lcs-1.5.0.gemspec +12 -21
  177. data/vendor/bundle/ruby/2.6.0/specifications/ethon-0.15.0.gemspec +5 -7
  178. data/vendor/bundle/ruby/2.6.0/specifications/ffi-1.15.5.gemspec +8 -13
  179. data/vendor/bundle/ruby/2.6.0/specifications/hashdiff-1.0.1.gemspec +9 -15
  180. data/vendor/bundle/ruby/2.6.0/specifications/json-2.6.2.gemspec +0 -0
  181. data/vendor/bundle/ruby/2.6.0/specifications/public_suffix-4.0.7.gemspec +2 -2
  182. data/vendor/bundle/ruby/2.6.0/specifications/rake-12.3.3.gemspec +9 -15
  183. data/vendor/bundle/ruby/2.6.0/specifications/rexml-3.2.5.gemspec +7 -11
  184. data/vendor/bundle/ruby/2.6.0/specifications/rspec-3.11.0.gemspec +7 -11
  185. data/vendor/bundle/ruby/2.6.0/specifications/rspec-core-3.11.0.gemspec +13 -23
  186. data/vendor/bundle/ruby/2.6.0/specifications/rspec-expectations-3.11.0.gemspec +10 -17
  187. data/vendor/bundle/ruby/2.6.0/specifications/rspec-mocks-3.11.1.gemspec +10 -17
  188. data/vendor/bundle/ruby/2.6.0/specifications/rspec-support-3.11.0.gemspec +6 -9
  189. data/vendor/bundle/ruby/2.6.0/specifications/sys-uname-1.2.2.gemspec +7 -11
  190. data/vendor/bundle/ruby/2.6.0/specifications/typhoeus-1.4.0.gemspec +5 -7
  191. data/vendor/bundle/ruby/2.6.0/specifications/vcr-3.0.3.gemspec +26 -49
  192. data/vendor/bundle/ruby/2.6.0/specifications/webmock-1.24.6.gemspec +19 -35
  193. metadata +85 -21
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3791a9f63b2add1beb49089e7141d2731e90fd91f2de2af3fdd3227d4778e7b5
4
- data.tar.gz: a024c8366d22871a13a038385e5afe3a22124249457a717639f47f2f1a47d7ad
3
+ metadata.gz: 3284174d2cedbf3c075ea66eb2330cfe57d0e3fc7c14f18700168132d92e028e
4
+ data.tar.gz: 980121fea8baf0330ed752371230016cc7b6b14f868f34ec2a309936b045b494
5
5
  SHA512:
6
- metadata.gz: c26f67fcd7bcf7bb8dd64748e69c87e7ae87fd63a5ca93fa62f713addf02896577e5b9ca36250b29bd5fb6ff1c8829357748ad86ae219a2980935726179f4d92
7
- data.tar.gz: 0f37ec70127f070e20b3f90114941a89feaa85579ff37aa34a1ec9b35d465259965baef188a827d702ee50d956c015b83253a79025b3576dadb47fe53a43ce91
6
+ metadata.gz: babbb20f2fe82157586a0dbfb46a98043f97ff9a41ee9c04e9042e46f4c449c2bccbcbea121f4f8b60bca256fee190c7d790bd58f309683635c0dac33b5333a1
7
+ data.tar.gz: 402140cb84c5224a59ad0c1ebcd71a2e8c71740085f09da2f43ec51db6bbf31a8e2b1c67dc96c48034d40fbe9e2fd1b52b43e049941cdecaa34aedfbda17768b
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- cloudsmith-api (1.61.3)
4
+ cloudsmith-api (1.120.3)
5
5
  addressable (~> 2.3, >= 2.3.0)
6
6
  json (~> 2.1, >= 2.1.0)
7
7
  typhoeus (~> 1.0, >= 1.0.1)
@@ -67,4 +67,4 @@ DEPENDENCIES
67
67
  webmock (~> 1.24, >= 1.24.3)
68
68
 
69
69
  BUNDLED WITH
70
- 2.3.13
70
+ 2.3.20
data/README.md CHANGED
@@ -7,7 +7,7 @@ The API to the Cloudsmith Service
7
7
  This SDK is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:
8
8
 
9
9
  - API version: v1
10
- - Package version: 1.61.3
10
+ - Package version: 1.120.3
11
11
  - Build package: io.swagger.codegen.languages.RubyClientCodegen
12
12
  For more information, please visit [https://help.cloudsmith.io](https://help.cloudsmith.io)
13
13
 
@@ -24,15 +24,15 @@ gem build cloudsmith-api.gemspec
24
24
  Then either install the gem locally:
25
25
 
26
26
  ```shell
27
- gem install ./cloudsmith-api-1.61.3.gem
27
+ gem install ./cloudsmith-api-1.120.3.gem
28
28
  ```
29
- (for development, run `gem install --dev ./cloudsmith-api-1.61.3.gem` to install the development dependencies)
29
+ (for development, run `gem install --dev ./cloudsmith-api-1.120.3.gem` to install the development dependencies)
30
30
 
31
31
  or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
32
32
 
33
33
  Finally add this to the Gemfile:
34
34
 
35
- gem 'cloudsmith-api', '~> 1.61.3'
35
+ gem 'cloudsmith-api', '~> 1.120.3'
36
36
 
37
37
  ### Install from Git
38
38
 
@@ -63,40 +63,22 @@ CloudsmithApi.configure do |config|
63
63
  #config.api_key_prefix['X-Api-Key'] = 'Bearer'
64
64
  end
65
65
 
66
- api_instance = CloudsmithApi::BadgesApi.new
66
+ api_instance = CloudsmithApi::AuditLogApi.new
67
67
 
68
68
  owner = 'owner_example' # String |
69
69
 
70
- repo = 'repo_example' # String |
71
-
72
- package_format = 'package_format_example' # String |
73
-
74
- package_name = 'package_name_example' # String |
75
-
76
- package_version = 'package_version_example' # String |
77
-
78
- package_identifiers = 'package_identifiers_example' # String |
79
-
80
70
  opts = {
81
- badge_token: 'badge_token_example', # String | Badge token to authenticate for private packages
82
- cache_seconds: 'cache_seconds_example', # String | Override the shields.io badge cacheSeconds value.
83
- color: 'color_example', # String | Override the shields.io badge color value.
84
- label: 'label_example', # String | Override the shields.io badge label value.
85
- label_color: 'label_color_example', # String | Override the shields.io badge labelColor value.
86
- logo_color: 'logo_color_example', # String | Override the shields.io badge logoColor value.
87
- logo_width: 'logo_width_example', # String | Override the shields.io badge logoWidth value.
88
- render: true, # BOOLEAN | If true, badge will be rendered
89
- shields: true, # BOOLEAN | If true, a shields response will be generated
90
- show_latest: true, # BOOLEAN | If true, for latest version badges a '(latest)' suffix is added
91
- style: 'style_example' # String | Override the shields.io badge style value.
71
+ page: 56, # Integer | A page number within the paginated result set.
72
+ page_size: 56, # Integer | Number of results to return per page.
73
+ query: 'query_example' # String | A search term for querying events, actors, or timestamps of log records.
92
74
  }
93
75
 
94
76
  begin
95
- #Get latest package version for a package or package group.
96
- result = api_instance.badges_version_list(owner, repo, package_format, package_name, package_version, package_identifiers, opts)
77
+ #Lists audit log entries for a specific namespace.
78
+ result = api_instance.audit_log_list(owner, opts)
97
79
  p result
98
80
  rescue CloudsmithApi::ApiError => e
99
- puts "Exception when calling BadgesApi->badges_version_list: #{e}"
81
+ puts "Exception when calling AuditLogApi->audit_log_list: #{e}"
100
82
  end
101
83
 
102
84
  ```
@@ -107,6 +89,8 @@ All URIs are relative to *https://api.cloudsmith.io/v1*
107
89
 
108
90
  Class | Method | HTTP request | Description
109
91
  ------------ | ------------- | ------------- | -------------
92
+ *CloudsmithApi::AuditLogApi* | [**audit_log_list**](docs/AuditLogApi.md#audit_log_list) | **GET** /audit-log/{owner}/ | Lists audit log entries for a specific namespace.
93
+ *CloudsmithApi::AuditLogApi* | [**audit_log_list0**](docs/AuditLogApi.md#audit_log_list0) | **GET** /audit-log/{owner}/{repo}/ | Lists audit log entries for a specific repository.
110
94
  *CloudsmithApi::BadgesApi* | [**badges_version_list**](docs/BadgesApi.md#badges_version_list) | **GET** /badges/version/{owner}/{repo}/{package_format}/{package_name}/{package_version}/{package_identifiers}/ | Get latest package version for a package or package group.
111
95
  *CloudsmithApi::DistrosApi* | [**distros_list**](docs/DistrosApi.md#distros_list) | **GET** /distros/ | Get a list of all supported distributions.
112
96
  *CloudsmithApi::DistrosApi* | [**distros_read**](docs/DistrosApi.md#distros_read) | **GET** /distros/{slug}/ | View for viewing/listing distributions.
@@ -123,7 +107,7 @@ Class | Method | HTTP request | Description
123
107
  *CloudsmithApi::FilesApi* | [**files_abort**](docs/FilesApi.md#files_abort) | **POST** /files/{owner}/{repo}/{identifier}/abort/ | Abort a multipart file upload.
124
108
  *CloudsmithApi::FilesApi* | [**files_complete**](docs/FilesApi.md#files_complete) | **POST** /files/{owner}/{repo}/{identifier}/complete/ | Complete a multipart file upload.
125
109
  *CloudsmithApi::FilesApi* | [**files_create**](docs/FilesApi.md#files_create) | **POST** /files/{owner}/{repo}/ | Request URL(s) to upload new package file upload(s) to.
126
- *CloudsmithApi::FilesApi* | [**files_info**](docs/FilesApi.md#files_info) | **GET** /files/{owner}/{repo}/{identifier}/info/ | Get upload information for a multipart file upload.
110
+ *CloudsmithApi::FilesApi* | [**files_info**](docs/FilesApi.md#files_info) | **GET** /files/{owner}/{repo}/{identifier}/info/ | Get upload information to perform a multipart file upload.
127
111
  *CloudsmithApi::FilesApi* | [**files_validate**](docs/FilesApi.md#files_validate) | **POST** /files/{owner}/{repo}/validate/ | Validate parameters used for create.
128
112
  *CloudsmithApi::FormatsApi* | [**formats_list**](docs/FormatsApi.md#formats_list) | **GET** /formats/ | Get a list of all supported package formats.
129
113
  *CloudsmithApi::FormatsApi* | [**formats_read**](docs/FormatsApi.md#formats_read) | **GET** /formats/{slug}/ | Get a specific supported package format.
@@ -132,11 +116,23 @@ Class | Method | HTTP request | Description
132
116
  *CloudsmithApi::MetricsApi* | [**metrics_packages_list**](docs/MetricsApi.md#metrics_packages_list) | **GET** /metrics/packages/{owner}/{repo}/ | View for listing package usage metrics, for a repository.
133
117
  *CloudsmithApi::NamespacesApi* | [**namespaces_list**](docs/NamespacesApi.md#namespaces_list) | **GET** /namespaces/ | Get a list of all namespaces the user belongs to.
134
118
  *CloudsmithApi::NamespacesApi* | [**namespaces_read**](docs/NamespacesApi.md#namespaces_read) | **GET** /namespaces/{slug}/ | Views for working with namespaces.
119
+ *CloudsmithApi::OrgsApi* | [**orgs_invites_create**](docs/OrgsApi.md#orgs_invites_create) | **POST** /orgs/{org}/invites/ | Create an organization invite for a specific user
120
+ *CloudsmithApi::OrgsApi* | [**orgs_invites_delete**](docs/OrgsApi.md#orgs_invites_delete) | **DELETE** /orgs/{org}/invites/{slug_perm}/ | Delete a specific organization invite
121
+ *CloudsmithApi::OrgsApi* | [**orgs_invites_extend**](docs/OrgsApi.md#orgs_invites_extend) | **POST** /orgs/{org}/invites/{slug_perm}/extend/ | Extend an organization invite.
122
+ *CloudsmithApi::OrgsApi* | [**orgs_invites_list**](docs/OrgsApi.md#orgs_invites_list) | **GET** /orgs/{org}/invites/ | Get a list of all invites for an organization.
135
123
  *CloudsmithApi::OrgsApi* | [**orgs_list**](docs/OrgsApi.md#orgs_list) | **GET** /orgs/ | Get a list of all the organizations you are associated with.
136
124
  *CloudsmithApi::OrgsApi* | [**orgs_members_list**](docs/OrgsApi.md#orgs_members_list) | **GET** /orgs/{org}/members/ | Get the details for all organization members.
137
125
  *CloudsmithApi::OrgsApi* | [**orgs_members_read**](docs/OrgsApi.md#orgs_members_read) | **GET** /orgs/{org}/members/{member}/ | Get the details for a specific organization member.
138
126
  *CloudsmithApi::OrgsApi* | [**orgs_members_remove**](docs/OrgsApi.md#orgs_members_remove) | **GET** /orgs/{org}/members/{member}/remove/ | Removes a member from the organization.
139
127
  *CloudsmithApi::OrgsApi* | [**orgs_read**](docs/OrgsApi.md#orgs_read) | **GET** /orgs/{org}/ | Get the details for the specific organization.
128
+ *CloudsmithApi::OrgsApi* | [**orgs_saml_group_sync_create**](docs/OrgsApi.md#orgs_saml_group_sync_create) | **POST** /orgs/{org}/saml-group-sync/ | Create a new SAML Group Sync mapping within an organization.
129
+ *CloudsmithApi::OrgsApi* | [**orgs_saml_group_sync_delete**](docs/OrgsApi.md#orgs_saml_group_sync_delete) | **DELETE** /orgs/{org}/saml-group-sync/{slug_perm}/ | Delete a SAML Group Sync mapping from an organization.
130
+ *CloudsmithApi::OrgsApi* | [**orgs_saml_group_sync_list**](docs/OrgsApi.md#orgs_saml_group_sync_list) | **GET** /orgs/{org}/saml-group-sync/ | Get the details of all SAML Group Sync mapping within an organization.
131
+ *CloudsmithApi::OrgsApi* | [**orgs_teams_create**](docs/OrgsApi.md#orgs_teams_create) | **POST** /orgs/{org}/teams/ | Create a team for this organization.
132
+ *CloudsmithApi::OrgsApi* | [**orgs_teams_delete**](docs/OrgsApi.md#orgs_teams_delete) | **DELETE** /orgs/{org}/teams/{slug_perm}/ | Delete a specific team in a organization.
133
+ *CloudsmithApi::OrgsApi* | [**orgs_teams_list**](docs/OrgsApi.md#orgs_teams_list) | **GET** /orgs/{org}/teams/ | Get the details of all teams within an organization.
134
+ *CloudsmithApi::OrgsApi* | [**orgs_teams_partial_update**](docs/OrgsApi.md#orgs_teams_partial_update) | **PATCH** /orgs/{org}/teams/{slug_perm}/ | Update a specific team in a organization.
135
+ *CloudsmithApi::OrgsApi* | [**orgs_teams_read**](docs/OrgsApi.md#orgs_teams_read) | **GET** /orgs/{org}/teams/{slug_perm}/ | Viewset for working with Organization teams.
140
136
  *CloudsmithApi::PackagesApi* | [**packages_copy**](docs/PackagesApi.md#packages_copy) | **POST** /packages/{owner}/{repo}/{identifier}/copy/ | Copy a package to another repository.
141
137
  *CloudsmithApi::PackagesApi* | [**packages_delete**](docs/PackagesApi.md#packages_delete) | **DELETE** /packages/{owner}/{repo}/{identifier}/ | Delete a specific package in a repository.
142
138
  *CloudsmithApi::PackagesApi* | [**packages_dependencies**](docs/PackagesApi.md#packages_dependencies) | **GET** /packages/{owner}/{repo}/{identifier}/dependencies/ | Get the direct (non-transitive) dependencies list for a package.
@@ -202,9 +198,19 @@ Class | Method | HTTP request | Description
202
198
  *CloudsmithApi::ReposApi* | [**repos_all_list**](docs/ReposApi.md#repos_all_list) | **GET** /repos/ | Get a list of all repositories associated with current user.
203
199
  *CloudsmithApi::ReposApi* | [**repos_create**](docs/ReposApi.md#repos_create) | **POST** /repos/{owner}/ | Create a new repository in a given namespace.
204
200
  *CloudsmithApi::ReposApi* | [**repos_delete**](docs/ReposApi.md#repos_delete) | **DELETE** /repos/{owner}/{identifier}/ | Delete a repository in a given namespace.
201
+ *CloudsmithApi::ReposApi* | [**repos_gpg_create**](docs/ReposApi.md#repos_gpg_create) | **POST** /repos/{owner}/{identifier}/gpg/ | Set the active GPG key for the Repository.
202
+ *CloudsmithApi::ReposApi* | [**repos_gpg_list**](docs/ReposApi.md#repos_gpg_list) | **GET** /repos/{owner}/{identifier}/gpg/ | Retrieve the active GPG key for the Repository.
203
+ *CloudsmithApi::ReposApi* | [**repos_gpg_regenerate**](docs/ReposApi.md#repos_gpg_regenerate) | **POST** /repos/{owner}/{identifier}/gpg/regenerate/ | Regenerate GPG Key for the Repository.
205
204
  *CloudsmithApi::ReposApi* | [**repos_list**](docs/ReposApi.md#repos_list) | **GET** /repos/{owner}/ | Get a list of all repositories within a namespace.
206
205
  *CloudsmithApi::ReposApi* | [**repos_partial_update**](docs/ReposApi.md#repos_partial_update) | **PATCH** /repos/{owner}/{identifier}/ | Update details about a repository in a given namespace.
206
+ *CloudsmithApi::ReposApi* | [**repos_privileges_delete**](docs/ReposApi.md#repos_privileges_delete) | **DELETE** /repos/{owner}/{identifier}/privileges | Remove the specified repository privileges.
207
+ *CloudsmithApi::ReposApi* | [**repos_privileges_list**](docs/ReposApi.md#repos_privileges_list) | **GET** /repos/{owner}/{identifier}/privileges | List all explicity created privileges for the repository.
208
+ *CloudsmithApi::ReposApi* | [**repos_privileges_partial_update**](docs/ReposApi.md#repos_privileges_partial_update) | **PATCH** /repos/{owner}/{identifier}/privileges | Update the specified repository privileges.
209
+ *CloudsmithApi::ReposApi* | [**repos_privileges_update**](docs/ReposApi.md#repos_privileges_update) | **PUT** /repos/{owner}/{identifier}/privileges | Replace all existing repository privileges with those specified.
207
210
  *CloudsmithApi::ReposApi* | [**repos_read**](docs/ReposApi.md#repos_read) | **GET** /repos/{owner}/{identifier}/ | Get a specific repository.
211
+ *CloudsmithApi::ReposApi* | [**repos_rsa_create**](docs/ReposApi.md#repos_rsa_create) | **POST** /repos/{owner}/{identifier}/rsa/ | Set the active RSA key for the Repository.
212
+ *CloudsmithApi::ReposApi* | [**repos_rsa_list**](docs/ReposApi.md#repos_rsa_list) | **GET** /repos/{owner}/{identifier}/rsa/ | Retrieve the active RSA key for the Repository.
213
+ *CloudsmithApi::ReposApi* | [**repos_rsa_regenerate**](docs/ReposApi.md#repos_rsa_regenerate) | **POST** /repos/{owner}/{identifier}/rsa/regenerate/ | Regenerate RSA Key for the Repository.
208
214
  *CloudsmithApi::StatusApi* | [**status_check_basic**](docs/StatusApi.md#status_check_basic) | **GET** /status/check/basic/ | Endpoint to check basic API connectivity.
209
215
  *CloudsmithApi::StorageRegionsApi* | [**storage_regions_list**](docs/StorageRegionsApi.md#storage_regions_list) | **GET** /storage-regions/ | Get a list of all available storage regions.
210
216
  *CloudsmithApi::StorageRegionsApi* | [**storage_regions_read**](docs/StorageRegionsApi.md#storage_regions_read) | **GET** /storage-regions/{slug}/ | Get a specific storage region.
@@ -241,8 +247,17 @@ Class | Method | HTTP request | Description
241
247
  - [CloudsmithApi::FormatsDistributions](docs/FormatsDistributions.md)
242
248
  - [CloudsmithApi::MavenPackageUpload](docs/MavenPackageUpload.md)
243
249
  - [CloudsmithApi::Namespace](docs/Namespace.md)
250
+ - [CloudsmithApi::NamespaceAuditLog](docs/NamespaceAuditLog.md)
244
251
  - [CloudsmithApi::Organization](docs/Organization.md)
252
+ - [CloudsmithApi::OrganizationGroupSync](docs/OrganizationGroupSync.md)
253
+ - [CloudsmithApi::OrganizationInvite](docs/OrganizationInvite.md)
245
254
  - [CloudsmithApi::OrganizationMembership](docs/OrganizationMembership.md)
255
+ - [CloudsmithApi::OrganizationTeam](docs/OrganizationTeam.md)
256
+ - [CloudsmithApi::OrgsInvitesCreate](docs/OrgsInvitesCreate.md)
257
+ - [CloudsmithApi::OrgsInvitesExtend](docs/OrgsInvitesExtend.md)
258
+ - [CloudsmithApi::OrgsSamlgroupsyncCreate](docs/OrgsSamlgroupsyncCreate.md)
259
+ - [CloudsmithApi::OrgsTeamsCreate](docs/OrgsTeamsCreate.md)
260
+ - [CloudsmithApi::OrgsTeamsPartialUpdate](docs/OrgsTeamsPartialUpdate.md)
246
261
  - [CloudsmithApi::Package](docs/Package.md)
247
262
  - [CloudsmithApi::PackageCopy](docs/PackageCopy.md)
248
263
  - [CloudsmithApi::PackageDependencies](docs/PackageDependencies.md)
@@ -309,10 +324,16 @@ Class | Method | HTTP request | Description
309
324
  - [CloudsmithApi::QuotaHistoryHistory](docs/QuotaHistoryHistory.md)
310
325
  - [CloudsmithApi::RawPackageUpload](docs/RawPackageUpload.md)
311
326
  - [CloudsmithApi::ReposCreate](docs/ReposCreate.md)
327
+ - [CloudsmithApi::ReposGpgCreate](docs/ReposGpgCreate.md)
312
328
  - [CloudsmithApi::ReposGpgKeys](docs/ReposGpgKeys.md)
313
329
  - [CloudsmithApi::ReposPartialUpdate](docs/ReposPartialUpdate.md)
330
+ - [CloudsmithApi::ReposRsaCreate](docs/ReposRsaCreate.md)
314
331
  - [CloudsmithApi::Repository](docs/Repository.md)
332
+ - [CloudsmithApi::RepositoryAuditLog](docs/RepositoryAuditLog.md)
315
333
  - [CloudsmithApi::RepositoryCreate](docs/RepositoryCreate.md)
334
+ - [CloudsmithApi::RepositoryGpgKey](docs/RepositoryGpgKey.md)
335
+ - [CloudsmithApi::RepositoryPrivilegeList](docs/RepositoryPrivilegeList.md)
336
+ - [CloudsmithApi::RepositoryRsaKey](docs/RepositoryRsaKey.md)
316
337
  - [CloudsmithApi::RepositoryToken](docs/RepositoryToken.md)
317
338
  - [CloudsmithApi::RepositoryTokenRefresh](docs/RepositoryTokenRefresh.md)
318
339
  - [CloudsmithApi::RepositoryTokenSync](docs/RepositoryTokenSync.md)
data/build.json CHANGED
@@ -8,7 +8,7 @@
8
8
  "gemName": "cloudsmith-api",
9
9
  "gemRequiredRubyVersion": ">= 1.9",
10
10
  "gemSummary": "Cloudsmith API",
11
- "gemVersion": "1.61.3",
11
+ "gemVersion": "1.120.3",
12
12
  "hideGenerationTimestamp": true,
13
13
  "moduleName": "CloudsmithApi",
14
14
  "sortParamsByRequiredFlag": true
@@ -0,0 +1,137 @@
1
+ # CloudsmithApi::AuditLogApi
2
+
3
+ All URIs are relative to *https://api.cloudsmith.io/v1*
4
+
5
+ Method | HTTP request | Description
6
+ ------------- | ------------- | -------------
7
+ [**audit_log_list**](AuditLogApi.md#audit_log_list) | **GET** /audit-log/{owner}/ | Lists audit log entries for a specific namespace.
8
+ [**audit_log_list0**](AuditLogApi.md#audit_log_list0) | **GET** /audit-log/{owner}/{repo}/ | Lists audit log entries for a specific repository.
9
+
10
+
11
+ # **audit_log_list**
12
+ > Array<NamespaceAuditLog> audit_log_list(owner, opts)
13
+
14
+ Lists audit log entries for a specific namespace.
15
+
16
+ Lists audit log entries for a specific namespace.
17
+
18
+ ### Example
19
+ ```ruby
20
+ # load the gem
21
+ require 'cloudsmith-api'
22
+ # setup authorization
23
+ CloudsmithApi.configure do |config|
24
+ # Configure API key authorization: apikey
25
+ config.api_key['X-Api-Key'] = 'YOUR API KEY'
26
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
27
+ #config.api_key_prefix['X-Api-Key'] = 'Bearer'
28
+ end
29
+
30
+ api_instance = CloudsmithApi::AuditLogApi.new
31
+
32
+ owner = 'owner_example' # String |
33
+
34
+ opts = {
35
+ page: 56, # Integer | A page number within the paginated result set.
36
+ page_size: 56, # Integer | Number of results to return per page.
37
+ query: 'query_example' # String | A search term for querying events, actors, or timestamps of log records.
38
+ }
39
+
40
+ begin
41
+ #Lists audit log entries for a specific namespace.
42
+ result = api_instance.audit_log_list(owner, opts)
43
+ p result
44
+ rescue CloudsmithApi::ApiError => e
45
+ puts "Exception when calling AuditLogApi->audit_log_list: #{e}"
46
+ end
47
+ ```
48
+
49
+ ### Parameters
50
+
51
+ Name | Type | Description | Notes
52
+ ------------- | ------------- | ------------- | -------------
53
+ **owner** | **String**| |
54
+ **page** | **Integer**| A page number within the paginated result set. | [optional]
55
+ **page_size** | **Integer**| Number of results to return per page. | [optional]
56
+ **query** | **String**| A search term for querying events, actors, or timestamps of log records. | [optional]
57
+
58
+ ### Return type
59
+
60
+ [**Array<NamespaceAuditLog>**](NamespaceAuditLog.md)
61
+
62
+ ### Authorization
63
+
64
+ [apikey](../README.md#apikey)
65
+
66
+ ### HTTP request headers
67
+
68
+ - **Content-Type**: Not defined
69
+ - **Accept**: Not defined
70
+
71
+
72
+
73
+ # **audit_log_list0**
74
+ > Array<RepositoryAuditLog> audit_log_list0(owner, repo, opts)
75
+
76
+ Lists audit log entries for a specific repository.
77
+
78
+ Lists audit log entries for a specific repository.
79
+
80
+ ### Example
81
+ ```ruby
82
+ # load the gem
83
+ require 'cloudsmith-api'
84
+ # setup authorization
85
+ CloudsmithApi.configure do |config|
86
+ # Configure API key authorization: apikey
87
+ config.api_key['X-Api-Key'] = 'YOUR API KEY'
88
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
89
+ #config.api_key_prefix['X-Api-Key'] = 'Bearer'
90
+ end
91
+
92
+ api_instance = CloudsmithApi::AuditLogApi.new
93
+
94
+ owner = 'owner_example' # String |
95
+
96
+ repo = 'repo_example' # String |
97
+
98
+ opts = {
99
+ page: 56, # Integer | A page number within the paginated result set.
100
+ page_size: 56, # Integer | Number of results to return per page.
101
+ query: 'query_example' # String | A search term for querying events, actors, or timestamps of log records.
102
+ }
103
+
104
+ begin
105
+ #Lists audit log entries for a specific repository.
106
+ result = api_instance.audit_log_list0(owner, repo, opts)
107
+ p result
108
+ rescue CloudsmithApi::ApiError => e
109
+ puts "Exception when calling AuditLogApi->audit_log_list0: #{e}"
110
+ end
111
+ ```
112
+
113
+ ### Parameters
114
+
115
+ Name | Type | Description | Notes
116
+ ------------- | ------------- | ------------- | -------------
117
+ **owner** | **String**| |
118
+ **repo** | **String**| |
119
+ **page** | **Integer**| A page number within the paginated result set. | [optional]
120
+ **page_size** | **Integer**| Number of results to return per page. | [optional]
121
+ **query** | **String**| A search term for querying events, actors, or timestamps of log records. | [optional]
122
+
123
+ ### Return type
124
+
125
+ [**Array<RepositoryAuditLog>**](RepositoryAuditLog.md)
126
+
127
+ ### Authorization
128
+
129
+ [apikey](../README.md#apikey)
130
+
131
+ ### HTTP request headers
132
+
133
+ - **Content-Type**: Not defined
134
+ - **Accept**: Not defined
135
+
136
+
137
+
data/docs/FilesApi.md CHANGED
@@ -7,7 +7,7 @@ Method | HTTP request | Description
7
7
  [**files_abort**](FilesApi.md#files_abort) | **POST** /files/{owner}/{repo}/{identifier}/abort/ | Abort a multipart file upload.
8
8
  [**files_complete**](FilesApi.md#files_complete) | **POST** /files/{owner}/{repo}/{identifier}/complete/ | Complete a multipart file upload.
9
9
  [**files_create**](FilesApi.md#files_create) | **POST** /files/{owner}/{repo}/ | Request URL(s) to upload new package file upload(s) to.
10
- [**files_info**](FilesApi.md#files_info) | **GET** /files/{owner}/{repo}/{identifier}/info/ | Get upload information for a multipart file upload.
10
+ [**files_info**](FilesApi.md#files_info) | **GET** /files/{owner}/{repo}/{identifier}/info/ | Get upload information to perform a multipart file upload.
11
11
  [**files_validate**](FilesApi.md#files_validate) | **POST** /files/{owner}/{repo}/validate/ | Validate parameters used for create.
12
12
 
13
13
 
@@ -200,11 +200,11 @@ Name | Type | Description | Notes
200
200
 
201
201
 
202
202
  # **files_info**
203
- > PackageFilePartsUpload files_info(owner, repo, identifier)
203
+ > PackageFilePartsUpload files_info(owner, repo, identifier, filename, opts)
204
204
 
205
- Get upload information for a multipart file upload.
205
+ Get upload information to perform a multipart file upload.
206
206
 
207
- Get upload information for a multipart file upload.
207
+ Get upload information to perform a multipart file upload.
208
208
 
209
209
  ### Example
210
210
  ```ruby
@@ -226,10 +226,15 @@ repo = 'repo_example' # String |
226
226
 
227
227
  identifier = 'identifier_example' # String |
228
228
 
229
+ filename = 'filename_example' # String | The filename of the file being uploaded
230
+
231
+ opts = {
232
+ part_number: 56 # Integer | The part number to be uploaded next
233
+ }
229
234
 
230
235
  begin
231
- #Get upload information for a multipart file upload.
232
- result = api_instance.files_info(owner, repo, identifier)
236
+ #Get upload information to perform a multipart file upload.
237
+ result = api_instance.files_info(owner, repo, identifier, filename, opts)
233
238
  p result
234
239
  rescue CloudsmithApi::ApiError => e
235
240
  puts "Exception when calling FilesApi->files_info: #{e}"
@@ -243,6 +248,8 @@ Name | Type | Description | Notes
243
248
  **owner** | **String**| |
244
249
  **repo** | **String**| |
245
250
  **identifier** | **String**| |
251
+ **filename** | **String**| The filename of the file being uploaded |
252
+ **part_number** | **Integer**| The part number to be uploaded next | [optional]
246
253
 
247
254
  ### Return type
248
255
 
@@ -0,0 +1,23 @@
1
+ # CloudsmithApi::NamespaceAuditLog
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **actor** | **String** | |
7
+ **actor_ip_address** | **String** | |
8
+ **actor_kind** | **String** | | [optional]
9
+ **actor_location** | **Object** | |
10
+ **actor_slug_perm** | **String** | |
11
+ **actor_url** | **String** | | [optional]
12
+ **context** | **String** | |
13
+ **event** | **String** | |
14
+ **event_at** | **String** | |
15
+ **object** | **String** | |
16
+ **object_kind** | **String** | |
17
+ **object_slug_perm** | **String** | |
18
+ **target** | **String** | |
19
+ **target_kind** | **String** | |
20
+ **target_slug_perm** | **String** | | [optional]
21
+ **uuid** | **String** | | [optional]
22
+
23
+
@@ -0,0 +1,12 @@
1
+ # CloudsmithApi::OrganizationGroupSync
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **idp_key** | **String** | |
7
+ **idp_value** | **String** | |
8
+ **role** | **String** | User role within the team. A `manager` is capable of adding/removing others to/from the team, and can set the role of other users and other settings pertaining to the team. A 'member' is a normal user that inherits the settings and privileges assigned to the team. | [optional]
9
+ **slug_perm** | **String** | | [optional]
10
+ **team** | **String** | |
11
+
12
+
@@ -0,0 +1,16 @@
1
+ # CloudsmithApi::OrganizationInvite
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **email** | **String** | | [optional]
7
+ **expires_at** | **String** | | [optional]
8
+ **inviter** | **String** | | [optional]
9
+ **inviter_url** | **String** | | [optional]
10
+ **org** | **String** | | [optional]
11
+ **role** | **String** | | [optional]
12
+ **slug_perm** | **String** | | [optional]
13
+ **user** | **String** | | [optional]
14
+ **user_url** | **String** | | [optional]
15
+
16
+
@@ -0,0 +1,12 @@
1
+ # CloudsmithApi::OrganizationTeam
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **description** | **String** | | [optional]
7
+ **name** | **String** | |
8
+ **slug** | **String** | | [optional]
9
+ **slug_perm** | **String** | | [optional]
10
+ **visibility** | **String** | | [optional]
11
+
12
+