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.
- checksums.yaml +4 -4
- data/Gemfile.lock +2 -2
- data/README.md +51 -30
- data/build.json +1 -1
- data/docs/AuditLogApi.md +137 -0
- data/docs/FilesApi.md +13 -6
- data/docs/NamespaceAuditLog.md +23 -0
- data/docs/OrganizationGroupSync.md +12 -0
- data/docs/OrganizationInvite.md +16 -0
- data/docs/OrganizationTeam.md +12 -0
- data/docs/OrgsApi.md +713 -0
- data/docs/OrgsInvitesCreate.md +12 -0
- data/docs/OrgsInvitesExtend.md +11 -0
- data/docs/OrgsSamlgroupsyncCreate.md +12 -0
- data/docs/OrgsTeamsCreate.md +11 -0
- data/docs/OrgsTeamsPartialUpdate.md +11 -0
- data/docs/ReposApi.md +586 -0
- data/docs/ReposCreate.md +29 -1
- data/docs/ReposGpgCreate.md +9 -0
- data/docs/ReposPartialUpdate.md +28 -0
- data/docs/ReposRsaCreate.md +9 -0
- data/docs/Repository.md +28 -0
- data/docs/RepositoryAuditLog.md +20 -0
- data/docs/RepositoryCreate.md +29 -1
- data/docs/RepositoryGpgKey.md +14 -0
- data/docs/RepositoryPrivilegeList.md +8 -0
- data/docs/RepositoryRsaKey.md +13 -0
- data/lib/cloudsmith-api/api/audit_log_api.rb +147 -0
- data/lib/cloudsmith-api/api/files_api.rb +17 -7
- data/lib/cloudsmith-api/api/orgs_api.rb +671 -0
- data/lib/cloudsmith-api/api/repos_api.rb +566 -0
- data/lib/cloudsmith-api/models/alpine_package_upload.rb +34 -0
- data/lib/cloudsmith-api/models/conan_package_upload.rb +34 -0
- data/lib/cloudsmith-api/models/entitlements_create.rb +46 -0
- data/lib/cloudsmith-api/models/entitlements_partial_update.rb +46 -0
- data/lib/cloudsmith-api/models/entitlements_refresh.rb +46 -0
- data/lib/cloudsmith-api/models/files_abort.rb +34 -0
- data/lib/cloudsmith-api/models/files_complete.rb +34 -0
- data/lib/cloudsmith-api/models/files_create.rb +34 -0
- data/lib/cloudsmith-api/models/files_validate.rb +34 -0
- data/lib/cloudsmith-api/models/maven_package_upload.rb +34 -0
- data/lib/cloudsmith-api/models/namespace_audit_log.rb +395 -0
- data/lib/cloudsmith-api/models/organization_group_sync.rb +240 -0
- data/lib/cloudsmith-api/models/organization_invite.rb +299 -0
- data/lib/cloudsmith-api/models/organization_membership.rb +46 -0
- data/lib/cloudsmith-api/models/organization_team.rb +264 -0
- data/lib/cloudsmith-api/models/orgs_invites_create.rb +259 -0
- data/lib/cloudsmith-api/models/orgs_invites_extend.rb +249 -0
- data/lib/cloudsmith-api/models/orgs_samlgroupsync_create.rb +245 -0
- data/lib/cloudsmith-api/models/orgs_teams_create.rb +254 -0
- data/lib/cloudsmith-api/models/orgs_teams_partial_update.rb +249 -0
- data/lib/cloudsmith-api/models/package.rb +34 -0
- data/lib/cloudsmith-api/models/package_copy.rb +34 -0
- data/lib/cloudsmith-api/models/package_move.rb +34 -0
- data/lib/cloudsmith-api/models/packages_tag.rb +34 -0
- data/lib/cloudsmith-api/models/raw_package_upload.rb +34 -0
- data/lib/cloudsmith-api/models/repos_create.rb +403 -5
- data/lib/cloudsmith-api/models/repos_gpg_create.rb +200 -0
- data/lib/cloudsmith-api/models/repos_partial_update.rb +414 -4
- data/lib/cloudsmith-api/models/repos_rsa_create.rb +200 -0
- data/lib/cloudsmith-api/models/repository.rb +414 -4
- data/lib/cloudsmith-api/models/repository_audit_log.rb +355 -0
- data/lib/cloudsmith-api/models/repository_create.rb +403 -5
- data/lib/cloudsmith-api/models/repository_gpg_key.rb +250 -0
- data/lib/cloudsmith-api/models/repository_privilege_list.rb +185 -0
- data/lib/cloudsmith-api/models/repository_rsa_key.rb +235 -0
- data/lib/cloudsmith-api/models/repository_token.rb +46 -0
- data/lib/cloudsmith-api/models/repository_token_refresh.rb +46 -0
- data/lib/cloudsmith-api/models/vagrant_package_upload.rb +34 -0
- data/lib/cloudsmith-api/models/vulnerability_scan_results.rb +34 -0
- data/lib/cloudsmith-api/models/vulnerability_scan_results_list.rb +34 -0
- data/lib/cloudsmith-api/version.rb +1 -1
- data/lib/cloudsmith-api.rb +16 -0
- data/spec/api/audit_log_api_spec.rb +66 -0
- data/spec/api/files_api_spec.rb +4 -2
- data/spec/api/orgs_api_spec.rb +161 -0
- data/spec/api/repos_api_spec.rb +132 -0
- data/spec/models/alpine_package_upload_spec.rb +4 -0
- data/spec/models/conan_package_upload_spec.rb +4 -0
- data/spec/models/entitlements_create_spec.rb +8 -0
- data/spec/models/entitlements_partial_update_spec.rb +8 -0
- data/spec/models/entitlements_refresh_spec.rb +8 -0
- data/spec/models/files_abort_spec.rb +4 -0
- data/spec/models/files_complete_spec.rb +4 -0
- data/spec/models/files_create_spec.rb +4 -0
- data/spec/models/files_validate_spec.rb +4 -0
- data/spec/models/maven_package_upload_spec.rb +4 -0
- data/spec/models/namespace_audit_log_spec.rb +131 -0
- data/spec/models/organization_group_sync_spec.rb +65 -0
- data/spec/models/organization_invite_spec.rb +93 -0
- data/spec/models/organization_membership_spec.rb +8 -0
- data/spec/models/organization_team_spec.rb +69 -0
- data/spec/models/orgs_invites_create_spec.rb +69 -0
- data/spec/models/orgs_invites_extend_spec.rb +63 -0
- data/spec/models/orgs_samlgroupsync_create_spec.rb +65 -0
- data/spec/models/orgs_teams_create_spec.rb +63 -0
- data/spec/models/orgs_teams_partial_update_spec.rb +63 -0
- data/spec/models/package_copy_spec.rb +4 -0
- data/spec/models/package_move_spec.rb +4 -0
- data/spec/models/package_spec.rb +4 -0
- data/spec/models/packages_tag_spec.rb +4 -0
- data/spec/models/raw_package_upload_spec.rb +4 -0
- data/spec/models/repos_create_spec.rb +200 -0
- data/spec/models/repos_gpg_create_spec.rb +47 -0
- data/spec/models/repos_partial_update_spec.rb +204 -0
- data/spec/models/repos_rsa_create_spec.rb +47 -0
- data/spec/models/repository_audit_log_spec.rb +113 -0
- data/spec/models/repository_create_spec.rb +200 -0
- data/spec/models/repository_gpg_key_spec.rb +77 -0
- data/spec/models/repository_privilege_list_spec.rb +41 -0
- data/spec/models/repository_rsa_key_spec.rb +71 -0
- data/spec/models/repository_spec.rb +204 -0
- data/spec/models/repository_token_refresh_spec.rb +8 -0
- data/spec/models/repository_token_spec.rb +8 -0
- data/spec/models/vagrant_package_upload_spec.rb +4 -0
- data/spec/models/vulnerability_scan_results_list_spec.rb +4 -0
- data/spec/models/vulnerability_scan_results_spec.rb +4 -0
- data/vendor/bundle/ruby/2.6.0/bin/htmldiff +3 -3
- data/vendor/bundle/ruby/2.6.0/bin/ldiff +3 -3
- data/vendor/bundle/ruby/2.6.0/bin/multigem +3 -3
- data/vendor/bundle/ruby/2.6.0/bin/multiruby +3 -3
- data/vendor/bundle/ruby/2.6.0/bin/rake +2 -0
- data/vendor/bundle/ruby/2.6.0/bin/rspec +2 -0
- data/vendor/bundle/ruby/2.6.0/bin/unit_diff +3 -3
- data/vendor/bundle/ruby/2.6.0/bin/zentest +3 -3
- data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/autotest-fsevent-0.2.19/gem_make.out +4 -4
- data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/ffi-1.15.5/ffi_c.so +0 -0
- data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/ffi-1.15.5/gem_make.out +5 -5
- data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/ffi-1.15.5/mkmf.log +9 -9
- data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/json-2.6.2/gem_make.out +4 -4
- data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/json-2.6.2/json/ext/generator.so +0 -0
- data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/json-2.6.2/json/ext/parser.so +0 -0
- data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/json-2.6.2/mkmf.log +7 -7
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/AbstractMemory.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/ArrayType.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/Buffer.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/Call.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/ClosurePool.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/DynamicLibrary.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/Function.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/FunctionInfo.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/LastError.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/LongDouble.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/Makefile +3 -3
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/MappedType.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/MemoryPointer.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/MethodHandle.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/Platform.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/Pointer.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/Struct.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/StructByValue.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/StructLayout.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/Thread.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/Type.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/Types.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/Variadic.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/ffi.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/ffi_c.so +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/lib/ffi_c.so +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.6.2/ext/json/Makefile +3 -3
- data/vendor/bundle/ruby/2.6.0/gems/json-2.6.2/ext/json/ext/generator/Makefile +3 -3
- data/vendor/bundle/ruby/2.6.0/gems/json-2.6.2/ext/json/ext/generator/generator.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.6.2/ext/json/ext/generator/generator.so +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.6.2/ext/json/ext/parser/Makefile +3 -3
- data/vendor/bundle/ruby/2.6.0/gems/json-2.6.2/ext/json/ext/parser/parser.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.6.2/ext/json/ext/parser/parser.so +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.6.2/lib/json/ext/generator.so +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.6.2/lib/json/ext/parser.so +0 -0
- data/vendor/bundle/ruby/2.6.0/specifications/ZenTest-4.12.1.gemspec +6 -9
- data/vendor/bundle/ruby/2.6.0/specifications/addressable-2.8.0.gemspec +6 -9
- data/vendor/bundle/ruby/2.6.0/specifications/autotest-4.4.6.gemspec +8 -13
- data/vendor/bundle/ruby/2.6.0/specifications/autotest-fsevent-0.2.19.gemspec +8 -13
- data/vendor/bundle/ruby/2.6.0/specifications/autotest-growl-0.2.16.gemspec +7 -11
- data/vendor/bundle/ruby/2.6.0/specifications/autotest-rails-pure-4.1.2.gemspec +2 -2
- data/vendor/bundle/ruby/2.6.0/specifications/crack-0.4.5.gemspec +5 -7
- data/vendor/bundle/ruby/2.6.0/specifications/diff-lcs-1.5.0.gemspec +12 -21
- data/vendor/bundle/ruby/2.6.0/specifications/ethon-0.15.0.gemspec +5 -7
- data/vendor/bundle/ruby/2.6.0/specifications/ffi-1.15.5.gemspec +8 -13
- data/vendor/bundle/ruby/2.6.0/specifications/hashdiff-1.0.1.gemspec +9 -15
- data/vendor/bundle/ruby/2.6.0/specifications/json-2.6.2.gemspec +0 -0
- data/vendor/bundle/ruby/2.6.0/specifications/public_suffix-4.0.7.gemspec +2 -2
- data/vendor/bundle/ruby/2.6.0/specifications/rake-12.3.3.gemspec +9 -15
- data/vendor/bundle/ruby/2.6.0/specifications/rexml-3.2.5.gemspec +7 -11
- data/vendor/bundle/ruby/2.6.0/specifications/rspec-3.11.0.gemspec +7 -11
- data/vendor/bundle/ruby/2.6.0/specifications/rspec-core-3.11.0.gemspec +13 -23
- data/vendor/bundle/ruby/2.6.0/specifications/rspec-expectations-3.11.0.gemspec +10 -17
- data/vendor/bundle/ruby/2.6.0/specifications/rspec-mocks-3.11.1.gemspec +10 -17
- data/vendor/bundle/ruby/2.6.0/specifications/rspec-support-3.11.0.gemspec +6 -9
- data/vendor/bundle/ruby/2.6.0/specifications/sys-uname-1.2.2.gemspec +7 -11
- data/vendor/bundle/ruby/2.6.0/specifications/typhoeus-1.4.0.gemspec +5 -7
- data/vendor/bundle/ruby/2.6.0/specifications/vcr-3.0.3.gemspec +26 -49
- data/vendor/bundle/ruby/2.6.0/specifications/webmock-1.24.6.gemspec +19 -35
- metadata +85 -21
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3284174d2cedbf3c075ea66eb2330cfe57d0e3fc7c14f18700168132d92e028e
|
4
|
+
data.tar.gz: 980121fea8baf0330ed752371230016cc7b6b14f868f34ec2a309936b045b494
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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.
|
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.
|
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.
|
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.
|
27
|
+
gem install ./cloudsmith-api-1.120.3.gem
|
28
28
|
```
|
29
|
-
(for development, run `gem install --dev ./cloudsmith-api-1.
|
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.
|
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::
|
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
|
-
|
82
|
-
|
83
|
-
|
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
|
-
#
|
96
|
-
result = api_instance.
|
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
|
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
|
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.
|
11
|
+
"gemVersion": "1.120.3",
|
12
12
|
"hideGenerationTimestamp": true,
|
13
13
|
"moduleName": "CloudsmithApi",
|
14
14
|
"sortParamsByRequiredFlag": true
|
data/docs/AuditLogApi.md
ADDED
@@ -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
|
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
|
205
|
+
Get upload information to perform a multipart file upload.
|
206
206
|
|
207
|
-
Get upload information
|
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
|
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
|
+
|