cloudsmith-api 1.61.3 → 1.142.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +7 -7
- data/README.md +62 -31
- data/build.json +1 -1
- data/docs/AlpinePackageUpload.md +2 -0
- data/docs/AuditLogApi.md +137 -0
- data/docs/ConanPackageUpload.md +2 -0
- data/docs/FilesApi.md +13 -6
- data/docs/MavenPackageUpload.md +2 -0
- 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/OrganizationTeamMembers.md +8 -0
- data/docs/OrganizationTeamMembersMembers.md +9 -0
- data/docs/OrgsApi.md +958 -8
- 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/OrgsTeamsMembersCreate.md +8 -0
- data/docs/OrgsTeamsMembersUpdate.md +8 -0
- data/docs/OrgsTeamsPartialUpdate.md +11 -0
- data/docs/Package.md +2 -0
- data/docs/PackageCopy.md +2 -0
- data/docs/PackageMove.md +2 -0
- data/docs/RawPackageUpload.md +2 -0
- data/docs/ReposApi.md +542 -0
- data/docs/ReposCreate.md +31 -1
- data/docs/ReposGpgCreate.md +9 -0
- data/docs/ReposPartialUpdate.md +30 -0
- data/docs/ReposPrivilegesPartialUpdate.md +8 -0
- data/docs/ReposPrivilegesUpdate.md +8 -0
- data/docs/ReposRsaCreate.md +9 -0
- data/docs/Repository.md +30 -0
- data/docs/RepositoryAuditLog.md +20 -0
- data/docs/RepositoryCreate.md +31 -1
- data/docs/RepositoryGpgKey.md +14 -0
- data/docs/RepositoryPrivilegeInput.md +8 -0
- data/docs/RepositoryPrivilegeInputPrivileges.md +10 -0
- data/docs/RepositoryRsaKey.md +13 -0
- data/docs/VagrantPackageUpload.md +2 -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 +910 -10
- data/lib/cloudsmith-api/api/repos_api.rb +524 -0
- data/lib/cloudsmith-api/models/alpine_package_upload.rb +55 -1
- data/lib/cloudsmith-api/models/conan_package_upload.rb +55 -1
- 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 +55 -1
- 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/organization_team_members.rb +192 -0
- data/lib/cloudsmith-api/models/organization_team_members_members.rb +195 -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_members_create.rb +192 -0
- data/lib/cloudsmith-api/models/orgs_teams_members_update.rb +192 -0
- data/lib/cloudsmith-api/models/orgs_teams_partial_update.rb +249 -0
- data/lib/cloudsmith-api/models/package.rb +55 -1
- data/lib/cloudsmith-api/models/package_copy.rb +55 -1
- data/lib/cloudsmith-api/models/package_move.rb +55 -1
- data/lib/cloudsmith-api/models/packages_tag.rb +34 -0
- data/lib/cloudsmith-api/models/raw_package_upload.rb +55 -1
- data/lib/cloudsmith-api/models/repos_create.rb +437 -5
- data/lib/cloudsmith-api/models/repos_gpg_create.rb +200 -0
- data/lib/cloudsmith-api/models/repos_partial_update.rb +448 -4
- data/lib/cloudsmith-api/models/repos_privileges_partial_update.rb +187 -0
- data/lib/cloudsmith-api/models/repos_privileges_update.rb +192 -0
- data/lib/cloudsmith-api/models/repos_rsa_create.rb +200 -0
- data/lib/cloudsmith-api/models/repository.rb +448 -4
- data/lib/cloudsmith-api/models/repository_audit_log.rb +355 -0
- data/lib/cloudsmith-api/models/repository_create.rb +437 -5
- data/lib/cloudsmith-api/models/repository_gpg_key.rb +250 -0
- data/lib/cloudsmith-api/models/repository_privilege_input.rb +192 -0
- data/lib/cloudsmith-api/models/repository_privilege_input_privileges.rb +205 -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 +55 -1
- 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 +23 -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 +218 -3
- data/spec/api/repos_api_spec.rb +123 -0
- data/spec/models/alpine_package_upload_spec.rb +16 -0
- data/spec/models/conan_package_upload_spec.rb +16 -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 +16 -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_members_members_spec.rb +47 -0
- data/spec/models/organization_team_members_spec.rb +41 -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_members_create_spec.rb +41 -0
- data/spec/models/orgs_teams_members_update_spec.rb +41 -0
- data/spec/models/orgs_teams_partial_update_spec.rb +63 -0
- data/spec/models/package_copy_spec.rb +16 -0
- data/spec/models/package_move_spec.rb +16 -0
- data/spec/models/package_spec.rb +16 -0
- data/spec/models/packages_tag_spec.rb +4 -0
- data/spec/models/raw_package_upload_spec.rb +16 -0
- data/spec/models/repos_create_spec.rb +216 -0
- data/spec/models/repos_gpg_create_spec.rb +47 -0
- data/spec/models/repos_partial_update_spec.rb +220 -0
- data/spec/models/repos_privileges_partial_update_spec.rb +41 -0
- data/spec/models/repos_privileges_update_spec.rb +41 -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 +216 -0
- data/spec/models/repository_gpg_key_spec.rb +77 -0
- data/spec/models/repository_privilege_input_privileges_spec.rb +53 -0
- data/spec/models/repository_privilege_input_spec.rb +41 -0
- data/spec/models/repository_rsa_key_spec.rb +71 -0
- data/spec/models/repository_spec.rb +220 -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 +16 -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/cache/addressable-2.8.1.gem +0 -0
- data/vendor/bundle/ruby/2.6.0/cache/public_suffix-5.0.0.gem +0 -0
- data/vendor/bundle/ruby/2.6.0/cache/rspec-expectations-3.11.1.gem +0 -0
- data/vendor/bundle/ruby/2.6.0/cache/rspec-support-3.11.1.gem +0 -0
- 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/{addressable-2.8.0 → addressable-2.8.1}/CHANGELOG.md +16 -0
- data/vendor/bundle/ruby/2.6.0/gems/{addressable-2.8.0 → addressable-2.8.1}/Gemfile +4 -2
- data/vendor/bundle/ruby/2.6.0/gems/{addressable-2.8.0 → addressable-2.8.1}/LICENSE.txt +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{addressable-2.8.0 → addressable-2.8.1}/README.md +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{addressable-2.8.0 → addressable-2.8.1}/Rakefile +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{addressable-2.8.0 → addressable-2.8.1}/data/unicode.data +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{addressable-2.8.0 → addressable-2.8.1}/lib/addressable/idna/native.rb +0 -1
- data/vendor/bundle/ruby/2.6.0/gems/{addressable-2.8.0 → addressable-2.8.1}/lib/addressable/idna/pure.rb +0 -1
- data/vendor/bundle/ruby/2.6.0/gems/{addressable-2.8.0 → addressable-2.8.1}/lib/addressable/idna.rb +0 -1
- data/vendor/bundle/ruby/2.6.0/gems/{addressable-2.8.0 → addressable-2.8.1}/lib/addressable/template.rb +3 -4
- data/vendor/bundle/ruby/2.6.0/gems/{addressable-2.8.0 → addressable-2.8.1}/lib/addressable/uri.rb +57 -53
- data/vendor/bundle/ruby/2.6.0/gems/{addressable-2.8.0 → addressable-2.8.1}/lib/addressable/version.rb +1 -2
- data/vendor/bundle/ruby/2.6.0/gems/{addressable-2.8.0 → addressable-2.8.1}/lib/addressable.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{addressable-2.8.0 → addressable-2.8.1}/spec/addressable/idna_spec.rb +0 -1
- data/vendor/bundle/ruby/2.6.0/gems/{addressable-2.8.0 → addressable-2.8.1}/spec/addressable/net_http_compat_spec.rb +0 -1
- data/vendor/bundle/ruby/2.6.0/gems/{addressable-2.8.0 → addressable-2.8.1}/spec/addressable/security_spec.rb +0 -1
- data/vendor/bundle/ruby/2.6.0/gems/{addressable-2.8.0 → addressable-2.8.1}/spec/addressable/template_spec.rb +9 -1
- data/vendor/bundle/ruby/2.6.0/gems/{addressable-2.8.0 → addressable-2.8.1}/spec/addressable/uri_spec.rb +81 -1
- data/vendor/bundle/ruby/2.6.0/gems/{addressable-2.8.0 → addressable-2.8.1}/spec/spec_helper.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{addressable-2.8.0 → addressable-2.8.1}/tasks/clobber.rake +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{addressable-2.8.0 → addressable-2.8.1}/tasks/gem.rake +5 -2
- data/vendor/bundle/ruby/2.6.0/gems/{addressable-2.8.0 → addressable-2.8.1}/tasks/git.rake +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{addressable-2.8.0 → addressable-2.8.1}/tasks/metrics.rake +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{addressable-2.8.0 → addressable-2.8.1}/tasks/profile.rake +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{addressable-2.8.0 → addressable-2.8.1}/tasks/rspec.rake +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{addressable-2.8.0 → addressable-2.8.1}/tasks/yard.rake +0 -0
- 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/gems/{public_suffix-4.0.7 → public_suffix-5.0.0}/.github/FUNDING.yml +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.7 → public_suffix-5.0.0}/.github/dependabot.yml +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/public_suffix-5.0.0/.github/workflows/psl-update.yml +38 -0
- data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.7 → public_suffix-5.0.0}/.github/workflows/release.yml +4 -2
- data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.7 → public_suffix-5.0.0}/.github/workflows/tests.yml +8 -7
- data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.7 → public_suffix-5.0.0}/.gitignore +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.7 → public_suffix-5.0.0}/.rubocop.yml +1 -0
- data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.7 → public_suffix-5.0.0}/.rubocop_opinionated.yml +0 -28
- data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.7 → public_suffix-5.0.0}/.yardopts +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.7 → public_suffix-5.0.0}/2.0-Upgrade.md +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.7 → public_suffix-5.0.0}/CHANGELOG.md +9 -0
- data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.7 → public_suffix-5.0.0}/Gemfile +1 -1
- data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.7 → public_suffix-5.0.0}/LICENSE.txt +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.7 → public_suffix-5.0.0}/README.md +1 -1
- data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.7 → public_suffix-5.0.0}/Rakefile +3 -3
- data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.7 → public_suffix-5.0.0}/SECURITY.md +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.7 → public_suffix-5.0.0}/bin/console +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.7 → public_suffix-5.0.0}/data/list.txt +52 -21
- data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.7 → public_suffix-5.0.0}/lib/public_suffix/domain.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.7 → public_suffix-5.0.0}/lib/public_suffix/errors.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.7 → public_suffix-5.0.0}/lib/public_suffix/list.rb +1 -1
- data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.7 → public_suffix-5.0.0}/lib/public_suffix/rule.rb +5 -5
- data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.7 → public_suffix-5.0.0}/lib/public_suffix/version.rb +1 -1
- data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.7 → public_suffix-5.0.0}/lib/public_suffix.rb +1 -1
- data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.7 → public_suffix-5.0.0}/public_suffix.gemspec +1 -1
- data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.7 → public_suffix-5.0.0}/test/.empty +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.7 → public_suffix-5.0.0}/test/acceptance_test.rb +4 -4
- data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.7 → public_suffix-5.0.0}/test/benchmarks/bm_find.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.7 → public_suffix-5.0.0}/test/benchmarks/bm_find_all.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.7 → public_suffix-5.0.0}/test/benchmarks/bm_names.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.7 → public_suffix-5.0.0}/test/benchmarks/bm_select.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.7 → public_suffix-5.0.0}/test/benchmarks/bm_select_incremental.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.7 → public_suffix-5.0.0}/test/benchmarks/bm_valid.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.7 → public_suffix-5.0.0}/test/profilers/domain_profiler.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.7 → public_suffix-5.0.0}/test/profilers/find_profiler.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.7 → public_suffix-5.0.0}/test/profilers/find_profiler_jp.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.7 → public_suffix-5.0.0}/test/profilers/initialization_profiler.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.7 → public_suffix-5.0.0}/test/profilers/list_profsize.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.7 → public_suffix-5.0.0}/test/profilers/object_binsize.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.7 → public_suffix-5.0.0}/test/psl_test.rb +1 -1
- data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.7 → public_suffix-5.0.0}/test/test_helper.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.7 → public_suffix-5.0.0}/test/tests.txt +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.7 → public_suffix-5.0.0}/test/unit/domain_test.rb +3 -3
- data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.7 → public_suffix-5.0.0}/test/unit/errors_test.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.7 → public_suffix-5.0.0}/test/unit/list_test.rb +1 -1
- data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.7 → public_suffix-5.0.0}/test/unit/public_suffix_test.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{public_suffix-4.0.7 → public_suffix-5.0.0}/test/unit/rule_test.rb +15 -15
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.11.0 → rspec-expectations-3.11.1}/.document +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.11.0 → rspec-expectations-3.11.1}/.yardopts +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.11.0 → rspec-expectations-3.11.1}/Changelog.md +11 -1
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.11.0 → rspec-expectations-3.11.1}/LICENSE.md +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.11.0 → rspec-expectations-3.11.1}/README.md +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.11.0 → rspec-expectations-3.11.1}/lib/rspec/expectations/block_snippet_extractor.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.11.0 → rspec-expectations-3.11.1}/lib/rspec/expectations/configuration.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.11.0 → rspec-expectations-3.11.1}/lib/rspec/expectations/expectation_target.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.11.0 → rspec-expectations-3.11.1}/lib/rspec/expectations/fail_with.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.11.0 → rspec-expectations-3.11.1}/lib/rspec/expectations/failure_aggregator.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.11.0 → rspec-expectations-3.11.1}/lib/rspec/expectations/handler.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.11.0 → rspec-expectations-3.11.1}/lib/rspec/expectations/minitest_integration.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.11.0 → rspec-expectations-3.11.1}/lib/rspec/expectations/syntax.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.11.0 → rspec-expectations-3.11.1}/lib/rspec/expectations/version.rb +1 -1
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.11.0 → rspec-expectations-3.11.1}/lib/rspec/expectations.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.11.0 → rspec-expectations-3.11.1}/lib/rspec/matchers/aliased_matcher.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.11.0 → rspec-expectations-3.11.1}/lib/rspec/matchers/built_in/all.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.11.0 → rspec-expectations-3.11.1}/lib/rspec/matchers/built_in/base_matcher.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.11.0 → rspec-expectations-3.11.1}/lib/rspec/matchers/built_in/be.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.11.0 → rspec-expectations-3.11.1}/lib/rspec/matchers/built_in/be_between.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.11.0 → rspec-expectations-3.11.1}/lib/rspec/matchers/built_in/be_instance_of.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.11.0 → rspec-expectations-3.11.1}/lib/rspec/matchers/built_in/be_kind_of.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.11.0 → rspec-expectations-3.11.1}/lib/rspec/matchers/built_in/be_within.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.11.0 → rspec-expectations-3.11.1}/lib/rspec/matchers/built_in/change.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.11.0 → rspec-expectations-3.11.1}/lib/rspec/matchers/built_in/compound.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.11.0 → rspec-expectations-3.11.1}/lib/rspec/matchers/built_in/contain_exactly.rb +10 -2
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.11.0 → rspec-expectations-3.11.1}/lib/rspec/matchers/built_in/count_expectation.rb +1 -1
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.11.0 → rspec-expectations-3.11.1}/lib/rspec/matchers/built_in/cover.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.11.0 → rspec-expectations-3.11.1}/lib/rspec/matchers/built_in/eq.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.11.0 → rspec-expectations-3.11.1}/lib/rspec/matchers/built_in/eql.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.11.0 → rspec-expectations-3.11.1}/lib/rspec/matchers/built_in/equal.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.11.0 → rspec-expectations-3.11.1}/lib/rspec/matchers/built_in/exist.rb +1 -1
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.11.0 → rspec-expectations-3.11.1}/lib/rspec/matchers/built_in/has.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.11.0 → rspec-expectations-3.11.1}/lib/rspec/matchers/built_in/have_attributes.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.11.0 → rspec-expectations-3.11.1}/lib/rspec/matchers/built_in/include.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.11.0 → rspec-expectations-3.11.1}/lib/rspec/matchers/built_in/match.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.11.0 → rspec-expectations-3.11.1}/lib/rspec/matchers/built_in/operators.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.11.0 → rspec-expectations-3.11.1}/lib/rspec/matchers/built_in/output.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.11.0 → rspec-expectations-3.11.1}/lib/rspec/matchers/built_in/raise_error.rb +6 -6
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.11.0 → rspec-expectations-3.11.1}/lib/rspec/matchers/built_in/respond_to.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.11.0 → rspec-expectations-3.11.1}/lib/rspec/matchers/built_in/satisfy.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.11.0 → rspec-expectations-3.11.1}/lib/rspec/matchers/built_in/start_or_end_with.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.11.0 → rspec-expectations-3.11.1}/lib/rspec/matchers/built_in/throw_symbol.rb +4 -4
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.11.0 → rspec-expectations-3.11.1}/lib/rspec/matchers/built_in/yield.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.11.0 → rspec-expectations-3.11.1}/lib/rspec/matchers/built_in.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.11.0 → rspec-expectations-3.11.1}/lib/rspec/matchers/composable.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.11.0 → rspec-expectations-3.11.1}/lib/rspec/matchers/dsl.rb +2 -2
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.11.0 → rspec-expectations-3.11.1}/lib/rspec/matchers/english_phrasing.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.11.0 → rspec-expectations-3.11.1}/lib/rspec/matchers/expecteds_for_multiple_diffs.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.11.0 → rspec-expectations-3.11.1}/lib/rspec/matchers/fail_matchers.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.11.0 → rspec-expectations-3.11.1}/lib/rspec/matchers/generated_descriptions.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.11.0 → rspec-expectations-3.11.1}/lib/rspec/matchers/matcher_delegator.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.11.0 → rspec-expectations-3.11.1}/lib/rspec/matchers/matcher_protocol.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.11.0 → rspec-expectations-3.11.1}/lib/rspec/matchers.rb +3 -3
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.11.0 → rspec-support-3.11.1}/Changelog.md +8 -1
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.11.0 → rspec-support-3.11.1}/LICENSE.md +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.11.0 → rspec-support-3.11.1}/README.md +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.11.0 → rspec-support-3.11.1}/lib/rspec/support/caller_filter.rb +2 -2
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.11.0 → rspec-support-3.11.1}/lib/rspec/support/comparable_version.rb +1 -1
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.11.0 → rspec-support-3.11.1}/lib/rspec/support/differ.rb +4 -4
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.11.0 → rspec-support-3.11.1}/lib/rspec/support/directory_maker.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.11.0 → rspec-support-3.11.1}/lib/rspec/support/encoded_string.rb +3 -3
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.11.0 → rspec-support-3.11.1}/lib/rspec/support/fuzzy_matcher.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.11.0 → rspec-support-3.11.1}/lib/rspec/support/hunk_generator.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.11.0 → rspec-support-3.11.1}/lib/rspec/support/matcher_definition.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.11.0 → rspec-support-3.11.1}/lib/rspec/support/method_signature_verifier.rb +2 -2
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.11.0 → rspec-support-3.11.1}/lib/rspec/support/mutex.rb +1 -1
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.11.0 → rspec-support-3.11.1}/lib/rspec/support/object_formatter.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.11.0 → rspec-support-3.11.1}/lib/rspec/support/recursive_const_methods.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.11.0 → rspec-support-3.11.1}/lib/rspec/support/reentrant_mutex.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.11.0 → rspec-support-3.11.1}/lib/rspec/support/ruby_features.rb +3 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.11.0 → rspec-support-3.11.1}/lib/rspec/support/source/location.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.11.0 → rspec-support-3.11.1}/lib/rspec/support/source/node.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.11.0 → rspec-support-3.11.1}/lib/rspec/support/source/token.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.11.0 → rspec-support-3.11.1}/lib/rspec/support/source.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.11.0 → rspec-support-3.11.1}/lib/rspec/support/spec/deprecation_helpers.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.11.0 → rspec-support-3.11.1}/lib/rspec/support/spec/diff_helpers.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.11.0 → rspec-support-3.11.1}/lib/rspec/support/spec/formatting_support.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.11.0 → rspec-support-3.11.1}/lib/rspec/support/spec/in_sub_process.rb +1 -1
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.11.0 → rspec-support-3.11.1}/lib/rspec/support/spec/library_wide_checks.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.11.0 → rspec-support-3.11.1}/lib/rspec/support/spec/shell_out.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.11.0 → rspec-support-3.11.1}/lib/rspec/support/spec/stderr_splitter.rb +1 -1
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.11.0 → rspec-support-3.11.1}/lib/rspec/support/spec/string_matcher.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.11.0 → rspec-support-3.11.1}/lib/rspec/support/spec/with_isolated_directory.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.11.0 → rspec-support-3.11.1}/lib/rspec/support/spec/with_isolated_stderr.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.11.0 → rspec-support-3.11.1}/lib/rspec/support/spec.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.11.0 → rspec-support-3.11.1}/lib/rspec/support/version.rb +1 -1
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.11.0 → rspec-support-3.11.1}/lib/rspec/support/warnings.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.11.0 → rspec-support-3.11.1}/lib/rspec/support/with_keywords_when_needed.rb +1 -1
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.11.0 → rspec-support-3.11.1}/lib/rspec/support.rb +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 → addressable-2.8.1.gemspec} +12 -14
- 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 → public_suffix-5.0.0.gemspec} +7 -7
- 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 → rspec-expectations-3.11.1.gemspec} +15 -22
- 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 → rspec-support-3.11.1.gemspec} +11 -14
- 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 +284 -192
- data/vendor/bundle/ruby/2.6.0/cache/addressable-2.8.0.gem +0 -0
- data/vendor/bundle/ruby/2.6.0/cache/public_suffix-4.0.7.gem +0 -0
- data/vendor/bundle/ruby/2.6.0/cache/rspec-expectations-3.11.0.gem +0 -0
- data/vendor/bundle/ruby/2.6.0/cache/rspec-support-3.11.0.gem +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/addressable-2.8.0/addressable.gemspec +0 -37
@@ -0,0 +1,12 @@
|
|
1
|
+
# CloudsmithApi::OrgsInvitesCreate
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**email** | **String** | None | [optional]
|
7
|
+
**inviter** | **String** | None | [optional]
|
8
|
+
**role** | **String** | None | [optional]
|
9
|
+
**slug_perm** | **String** | None | [optional]
|
10
|
+
**user** | **String** | None | [optional]
|
11
|
+
|
12
|
+
|
@@ -0,0 +1,11 @@
|
|
1
|
+
# CloudsmithApi::OrgsInvitesExtend
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**email** | **String** | None | [optional]
|
7
|
+
**inviter** | **String** | None | [optional]
|
8
|
+
**role** | **String** | None | [optional]
|
9
|
+
**user** | **String** | None | [optional]
|
10
|
+
|
11
|
+
|
@@ -0,0 +1,12 @@
|
|
1
|
+
# CloudsmithApi::OrgsSamlgroupsyncCreate
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**idp_key** | **String** | None |
|
7
|
+
**idp_value** | **String** | None |
|
8
|
+
**organization** | **String** | None |
|
9
|
+
**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]
|
10
|
+
**team** | **String** | None |
|
11
|
+
|
12
|
+
|
@@ -0,0 +1,11 @@
|
|
1
|
+
# CloudsmithApi::OrgsTeamsCreate
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**description** | **String** | None | [optional]
|
7
|
+
**name** | **String** | None |
|
8
|
+
**slug** | **String** | None | [optional]
|
9
|
+
**visibility** | **String** | None | [optional]
|
10
|
+
|
11
|
+
|
@@ -0,0 +1,8 @@
|
|
1
|
+
# CloudsmithApi::OrgsTeamsMembersCreate
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**members** | [**Array<OrganizationTeamMembersMembers>**](OrganizationTeamMembersMembers.md) | The team members |
|
7
|
+
|
8
|
+
|
@@ -0,0 +1,8 @@
|
|
1
|
+
# CloudsmithApi::OrgsTeamsMembersUpdate
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**members** | [**Array<OrganizationTeamMembersMembers>**](OrganizationTeamMembersMembers.md) | The team members |
|
7
|
+
|
8
|
+
|
@@ -0,0 +1,11 @@
|
|
1
|
+
# CloudsmithApi::OrgsTeamsPartialUpdate
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**description** | **String** | None | [optional]
|
7
|
+
**name** | **String** | None | [optional]
|
8
|
+
**slug** | **String** | None | [optional]
|
9
|
+
**visibility** | **String** | None | [optional]
|
10
|
+
|
11
|
+
|
data/docs/Package.md
CHANGED
@@ -35,6 +35,8 @@ Name | Type | Description | Notes
|
|
35
35
|
**namespace** | **String** | | [optional]
|
36
36
|
**namespace_url** | **String** | | [optional]
|
37
37
|
**num_files** | **Integer** | | [optional]
|
38
|
+
**origin_repository** | **String** | | [optional]
|
39
|
+
**origin_repository_url** | **String** | | [optional]
|
38
40
|
**package_type** | **Integer** | The type of package contents. | [optional]
|
39
41
|
**release** | **String** | The release of the package version (if any). | [optional]
|
40
42
|
**repository** | **String** | | [optional]
|
data/docs/PackageCopy.md
CHANGED
@@ -35,6 +35,8 @@ Name | Type | Description | Notes
|
|
35
35
|
**namespace** | **String** | | [optional]
|
36
36
|
**namespace_url** | **String** | | [optional]
|
37
37
|
**num_files** | **Integer** | | [optional]
|
38
|
+
**origin_repository** | **String** | | [optional]
|
39
|
+
**origin_repository_url** | **String** | | [optional]
|
38
40
|
**package_type** | **Integer** | The type of package contents. | [optional]
|
39
41
|
**release** | **String** | The release of the package version (if any). | [optional]
|
40
42
|
**repository** | **String** | The repository the package will be copied to. | [optional]
|
data/docs/PackageMove.md
CHANGED
@@ -35,6 +35,8 @@ Name | Type | Description | Notes
|
|
35
35
|
**namespace** | **String** | | [optional]
|
36
36
|
**namespace_url** | **String** | | [optional]
|
37
37
|
**num_files** | **Integer** | | [optional]
|
38
|
+
**origin_repository** | **String** | | [optional]
|
39
|
+
**origin_repository_url** | **String** | | [optional]
|
38
40
|
**package_type** | **Integer** | The type of package contents. | [optional]
|
39
41
|
**release** | **String** | The release of the package version (if any). | [optional]
|
40
42
|
**repository** | **String** | The repository the package will be moved to. | [optional]
|
data/docs/RawPackageUpload.md
CHANGED
@@ -35,6 +35,8 @@ Name | Type | Description | Notes
|
|
35
35
|
**namespace** | **String** | | [optional]
|
36
36
|
**namespace_url** | **String** | | [optional]
|
37
37
|
**num_files** | **Integer** | | [optional]
|
38
|
+
**origin_repository** | **String** | | [optional]
|
39
|
+
**origin_repository_url** | **String** | | [optional]
|
38
40
|
**package_type** | **Integer** | The type of package contents. | [optional]
|
39
41
|
**release** | **String** | The release of the package version (if any). | [optional]
|
40
42
|
**repository** | **String** | | [optional]
|
data/docs/ReposApi.md
CHANGED
@@ -7,9 +7,18 @@ Method | HTTP request | Description
|
|
7
7
|
[**repos_all_list**](ReposApi.md#repos_all_list) | **GET** /repos/ | Get a list of all repositories associated with current user.
|
8
8
|
[**repos_create**](ReposApi.md#repos_create) | **POST** /repos/{owner}/ | Create a new repository in a given namespace.
|
9
9
|
[**repos_delete**](ReposApi.md#repos_delete) | **DELETE** /repos/{owner}/{identifier}/ | Delete a repository in a given namespace.
|
10
|
+
[**repos_gpg_create**](ReposApi.md#repos_gpg_create) | **POST** /repos/{owner}/{identifier}/gpg/ | Set the active GPG key for the Repository.
|
11
|
+
[**repos_gpg_list**](ReposApi.md#repos_gpg_list) | **GET** /repos/{owner}/{identifier}/gpg/ | Retrieve the active GPG key for the Repository.
|
12
|
+
[**repos_gpg_regenerate**](ReposApi.md#repos_gpg_regenerate) | **POST** /repos/{owner}/{identifier}/gpg/regenerate/ | Regenerate GPG Key for the Repository.
|
10
13
|
[**repos_list**](ReposApi.md#repos_list) | **GET** /repos/{owner}/ | Get a list of all repositories within a namespace.
|
11
14
|
[**repos_partial_update**](ReposApi.md#repos_partial_update) | **PATCH** /repos/{owner}/{identifier}/ | Update details about a repository in a given namespace.
|
15
|
+
[**repos_privileges_list**](ReposApi.md#repos_privileges_list) | **GET** /repos/{owner}/{identifier}/privileges | List all explicity created privileges for the repository.
|
16
|
+
[**repos_privileges_partial_update**](ReposApi.md#repos_privileges_partial_update) | **PATCH** /repos/{owner}/{identifier}/privileges | Modify privileges for the repository.
|
17
|
+
[**repos_privileges_update**](ReposApi.md#repos_privileges_update) | **PUT** /repos/{owner}/{identifier}/privileges | Replace all existing repository privileges with those specified.
|
12
18
|
[**repos_read**](ReposApi.md#repos_read) | **GET** /repos/{owner}/{identifier}/ | Get a specific repository.
|
19
|
+
[**repos_rsa_create**](ReposApi.md#repos_rsa_create) | **POST** /repos/{owner}/{identifier}/rsa/ | Set the active RSA key for the Repository.
|
20
|
+
[**repos_rsa_list**](ReposApi.md#repos_rsa_list) | **GET** /repos/{owner}/{identifier}/rsa/ | Retrieve the active RSA key for the Repository.
|
21
|
+
[**repos_rsa_regenerate**](ReposApi.md#repos_rsa_regenerate) | **POST** /repos/{owner}/{identifier}/rsa/regenerate/ | Regenerate RSA Key for the Repository.
|
13
22
|
|
14
23
|
|
15
24
|
# **repos_all_list**
|
@@ -183,6 +192,181 @@ nil (empty response body)
|
|
183
192
|
|
184
193
|
|
185
194
|
|
195
|
+
# **repos_gpg_create**
|
196
|
+
> RepositoryGpgKey repos_gpg_create(owner, identifier, opts)
|
197
|
+
|
198
|
+
Set the active GPG key for the Repository.
|
199
|
+
|
200
|
+
Set the active GPG key for the Repository.
|
201
|
+
|
202
|
+
### Example
|
203
|
+
```ruby
|
204
|
+
# load the gem
|
205
|
+
require 'cloudsmith-api'
|
206
|
+
# setup authorization
|
207
|
+
CloudsmithApi.configure do |config|
|
208
|
+
# Configure API key authorization: apikey
|
209
|
+
config.api_key['X-Api-Key'] = 'YOUR API KEY'
|
210
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
211
|
+
#config.api_key_prefix['X-Api-Key'] = 'Bearer'
|
212
|
+
end
|
213
|
+
|
214
|
+
api_instance = CloudsmithApi::ReposApi.new
|
215
|
+
|
216
|
+
owner = 'owner_example' # String |
|
217
|
+
|
218
|
+
identifier = 'identifier_example' # String |
|
219
|
+
|
220
|
+
opts = {
|
221
|
+
data: CloudsmithApi::ReposGpgCreate.new # ReposGpgCreate |
|
222
|
+
}
|
223
|
+
|
224
|
+
begin
|
225
|
+
#Set the active GPG key for the Repository.
|
226
|
+
result = api_instance.repos_gpg_create(owner, identifier, opts)
|
227
|
+
p result
|
228
|
+
rescue CloudsmithApi::ApiError => e
|
229
|
+
puts "Exception when calling ReposApi->repos_gpg_create: #{e}"
|
230
|
+
end
|
231
|
+
```
|
232
|
+
|
233
|
+
### Parameters
|
234
|
+
|
235
|
+
Name | Type | Description | Notes
|
236
|
+
------------- | ------------- | ------------- | -------------
|
237
|
+
**owner** | **String**| |
|
238
|
+
**identifier** | **String**| |
|
239
|
+
**data** | [**ReposGpgCreate**](ReposGpgCreate.md)| | [optional]
|
240
|
+
|
241
|
+
### Return type
|
242
|
+
|
243
|
+
[**RepositoryGpgKey**](RepositoryGpgKey.md)
|
244
|
+
|
245
|
+
### Authorization
|
246
|
+
|
247
|
+
[apikey](../README.md#apikey)
|
248
|
+
|
249
|
+
### HTTP request headers
|
250
|
+
|
251
|
+
- **Content-Type**: application/json
|
252
|
+
- **Accept**: Not defined
|
253
|
+
|
254
|
+
|
255
|
+
|
256
|
+
# **repos_gpg_list**
|
257
|
+
> RepositoryGpgKey repos_gpg_list(owner, identifier)
|
258
|
+
|
259
|
+
Retrieve the active GPG key for the Repository.
|
260
|
+
|
261
|
+
Retrieve the active GPG key for the Repository.
|
262
|
+
|
263
|
+
### Example
|
264
|
+
```ruby
|
265
|
+
# load the gem
|
266
|
+
require 'cloudsmith-api'
|
267
|
+
# setup authorization
|
268
|
+
CloudsmithApi.configure do |config|
|
269
|
+
# Configure API key authorization: apikey
|
270
|
+
config.api_key['X-Api-Key'] = 'YOUR API KEY'
|
271
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
272
|
+
#config.api_key_prefix['X-Api-Key'] = 'Bearer'
|
273
|
+
end
|
274
|
+
|
275
|
+
api_instance = CloudsmithApi::ReposApi.new
|
276
|
+
|
277
|
+
owner = 'owner_example' # String |
|
278
|
+
|
279
|
+
identifier = 'identifier_example' # String |
|
280
|
+
|
281
|
+
|
282
|
+
begin
|
283
|
+
#Retrieve the active GPG key for the Repository.
|
284
|
+
result = api_instance.repos_gpg_list(owner, identifier)
|
285
|
+
p result
|
286
|
+
rescue CloudsmithApi::ApiError => e
|
287
|
+
puts "Exception when calling ReposApi->repos_gpg_list: #{e}"
|
288
|
+
end
|
289
|
+
```
|
290
|
+
|
291
|
+
### Parameters
|
292
|
+
|
293
|
+
Name | Type | Description | Notes
|
294
|
+
------------- | ------------- | ------------- | -------------
|
295
|
+
**owner** | **String**| |
|
296
|
+
**identifier** | **String**| |
|
297
|
+
|
298
|
+
### Return type
|
299
|
+
|
300
|
+
[**RepositoryGpgKey**](RepositoryGpgKey.md)
|
301
|
+
|
302
|
+
### Authorization
|
303
|
+
|
304
|
+
[apikey](../README.md#apikey)
|
305
|
+
|
306
|
+
### HTTP request headers
|
307
|
+
|
308
|
+
- **Content-Type**: Not defined
|
309
|
+
- **Accept**: Not defined
|
310
|
+
|
311
|
+
|
312
|
+
|
313
|
+
# **repos_gpg_regenerate**
|
314
|
+
> RepositoryGpgKey repos_gpg_regenerate(owner, identifier)
|
315
|
+
|
316
|
+
Regenerate GPG Key for the Repository.
|
317
|
+
|
318
|
+
Regenerate GPG Key for the Repository.
|
319
|
+
|
320
|
+
### Example
|
321
|
+
```ruby
|
322
|
+
# load the gem
|
323
|
+
require 'cloudsmith-api'
|
324
|
+
# setup authorization
|
325
|
+
CloudsmithApi.configure do |config|
|
326
|
+
# Configure API key authorization: apikey
|
327
|
+
config.api_key['X-Api-Key'] = 'YOUR API KEY'
|
328
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
329
|
+
#config.api_key_prefix['X-Api-Key'] = 'Bearer'
|
330
|
+
end
|
331
|
+
|
332
|
+
api_instance = CloudsmithApi::ReposApi.new
|
333
|
+
|
334
|
+
owner = 'owner_example' # String |
|
335
|
+
|
336
|
+
identifier = 'identifier_example' # String |
|
337
|
+
|
338
|
+
|
339
|
+
begin
|
340
|
+
#Regenerate GPG Key for the Repository.
|
341
|
+
result = api_instance.repos_gpg_regenerate(owner, identifier)
|
342
|
+
p result
|
343
|
+
rescue CloudsmithApi::ApiError => e
|
344
|
+
puts "Exception when calling ReposApi->repos_gpg_regenerate: #{e}"
|
345
|
+
end
|
346
|
+
```
|
347
|
+
|
348
|
+
### Parameters
|
349
|
+
|
350
|
+
Name | Type | Description | Notes
|
351
|
+
------------- | ------------- | ------------- | -------------
|
352
|
+
**owner** | **String**| |
|
353
|
+
**identifier** | **String**| |
|
354
|
+
|
355
|
+
### Return type
|
356
|
+
|
357
|
+
[**RepositoryGpgKey**](RepositoryGpgKey.md)
|
358
|
+
|
359
|
+
### Authorization
|
360
|
+
|
361
|
+
[apikey](../README.md#apikey)
|
362
|
+
|
363
|
+
### HTTP request headers
|
364
|
+
|
365
|
+
- **Content-Type**: Not defined
|
366
|
+
- **Accept**: Not defined
|
367
|
+
|
368
|
+
|
369
|
+
|
186
370
|
# **repos_list**
|
187
371
|
> Array<Repository> repos_list(owner, opts)
|
188
372
|
|
@@ -304,6 +488,189 @@ Name | Type | Description | Notes
|
|
304
488
|
|
305
489
|
|
306
490
|
|
491
|
+
# **repos_privileges_list**
|
492
|
+
> RepositoryPrivilegeInput repos_privileges_list(owner, identifier, opts)
|
493
|
+
|
494
|
+
List all explicity created privileges for the repository.
|
495
|
+
|
496
|
+
List all explicity created privileges for the repository.
|
497
|
+
|
498
|
+
### Example
|
499
|
+
```ruby
|
500
|
+
# load the gem
|
501
|
+
require 'cloudsmith-api'
|
502
|
+
# setup authorization
|
503
|
+
CloudsmithApi.configure do |config|
|
504
|
+
# Configure API key authorization: apikey
|
505
|
+
config.api_key['X-Api-Key'] = 'YOUR API KEY'
|
506
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
507
|
+
#config.api_key_prefix['X-Api-Key'] = 'Bearer'
|
508
|
+
end
|
509
|
+
|
510
|
+
api_instance = CloudsmithApi::ReposApi.new
|
511
|
+
|
512
|
+
owner = 'owner_example' # String |
|
513
|
+
|
514
|
+
identifier = 'identifier_example' # String |
|
515
|
+
|
516
|
+
opts = {
|
517
|
+
page: 56, # Integer | A page number within the paginated result set.
|
518
|
+
page_size: 56 # Integer | Number of results to return per page.
|
519
|
+
}
|
520
|
+
|
521
|
+
begin
|
522
|
+
#List all explicity created privileges for the repository.
|
523
|
+
result = api_instance.repos_privileges_list(owner, identifier, opts)
|
524
|
+
p result
|
525
|
+
rescue CloudsmithApi::ApiError => e
|
526
|
+
puts "Exception when calling ReposApi->repos_privileges_list: #{e}"
|
527
|
+
end
|
528
|
+
```
|
529
|
+
|
530
|
+
### Parameters
|
531
|
+
|
532
|
+
Name | Type | Description | Notes
|
533
|
+
------------- | ------------- | ------------- | -------------
|
534
|
+
**owner** | **String**| |
|
535
|
+
**identifier** | **String**| |
|
536
|
+
**page** | **Integer**| A page number within the paginated result set. | [optional]
|
537
|
+
**page_size** | **Integer**| Number of results to return per page. | [optional]
|
538
|
+
|
539
|
+
### Return type
|
540
|
+
|
541
|
+
[**RepositoryPrivilegeInput**](RepositoryPrivilegeInput.md)
|
542
|
+
|
543
|
+
### Authorization
|
544
|
+
|
545
|
+
[apikey](../README.md#apikey)
|
546
|
+
|
547
|
+
### HTTP request headers
|
548
|
+
|
549
|
+
- **Content-Type**: Not defined
|
550
|
+
- **Accept**: Not defined
|
551
|
+
|
552
|
+
|
553
|
+
|
554
|
+
# **repos_privileges_partial_update**
|
555
|
+
> repos_privileges_partial_update(owner, identifier, opts)
|
556
|
+
|
557
|
+
Modify privileges for the repository.
|
558
|
+
|
559
|
+
Modify privileges for the repository.
|
560
|
+
|
561
|
+
### Example
|
562
|
+
```ruby
|
563
|
+
# load the gem
|
564
|
+
require 'cloudsmith-api'
|
565
|
+
# setup authorization
|
566
|
+
CloudsmithApi.configure do |config|
|
567
|
+
# Configure API key authorization: apikey
|
568
|
+
config.api_key['X-Api-Key'] = 'YOUR API KEY'
|
569
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
570
|
+
#config.api_key_prefix['X-Api-Key'] = 'Bearer'
|
571
|
+
end
|
572
|
+
|
573
|
+
api_instance = CloudsmithApi::ReposApi.new
|
574
|
+
|
575
|
+
owner = 'owner_example' # String |
|
576
|
+
|
577
|
+
identifier = 'identifier_example' # String |
|
578
|
+
|
579
|
+
opts = {
|
580
|
+
data: CloudsmithApi::ReposPrivilegesPartialUpdate.new # ReposPrivilegesPartialUpdate |
|
581
|
+
}
|
582
|
+
|
583
|
+
begin
|
584
|
+
#Modify privileges for the repository.
|
585
|
+
api_instance.repos_privileges_partial_update(owner, identifier, opts)
|
586
|
+
rescue CloudsmithApi::ApiError => e
|
587
|
+
puts "Exception when calling ReposApi->repos_privileges_partial_update: #{e}"
|
588
|
+
end
|
589
|
+
```
|
590
|
+
|
591
|
+
### Parameters
|
592
|
+
|
593
|
+
Name | Type | Description | Notes
|
594
|
+
------------- | ------------- | ------------- | -------------
|
595
|
+
**owner** | **String**| |
|
596
|
+
**identifier** | **String**| |
|
597
|
+
**data** | [**ReposPrivilegesPartialUpdate**](ReposPrivilegesPartialUpdate.md)| | [optional]
|
598
|
+
|
599
|
+
### Return type
|
600
|
+
|
601
|
+
nil (empty response body)
|
602
|
+
|
603
|
+
### Authorization
|
604
|
+
|
605
|
+
[apikey](../README.md#apikey)
|
606
|
+
|
607
|
+
### HTTP request headers
|
608
|
+
|
609
|
+
- **Content-Type**: application/json
|
610
|
+
- **Accept**: Not defined
|
611
|
+
|
612
|
+
|
613
|
+
|
614
|
+
# **repos_privileges_update**
|
615
|
+
> repos_privileges_update(owner, identifier, opts)
|
616
|
+
|
617
|
+
Replace all existing repository privileges with those specified.
|
618
|
+
|
619
|
+
Replace all existing repository privileges with those specified.
|
620
|
+
|
621
|
+
### Example
|
622
|
+
```ruby
|
623
|
+
# load the gem
|
624
|
+
require 'cloudsmith-api'
|
625
|
+
# setup authorization
|
626
|
+
CloudsmithApi.configure do |config|
|
627
|
+
# Configure API key authorization: apikey
|
628
|
+
config.api_key['X-Api-Key'] = 'YOUR API KEY'
|
629
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
630
|
+
#config.api_key_prefix['X-Api-Key'] = 'Bearer'
|
631
|
+
end
|
632
|
+
|
633
|
+
api_instance = CloudsmithApi::ReposApi.new
|
634
|
+
|
635
|
+
owner = 'owner_example' # String |
|
636
|
+
|
637
|
+
identifier = 'identifier_example' # String |
|
638
|
+
|
639
|
+
opts = {
|
640
|
+
data: CloudsmithApi::ReposPrivilegesUpdate.new # ReposPrivilegesUpdate |
|
641
|
+
}
|
642
|
+
|
643
|
+
begin
|
644
|
+
#Replace all existing repository privileges with those specified.
|
645
|
+
api_instance.repos_privileges_update(owner, identifier, opts)
|
646
|
+
rescue CloudsmithApi::ApiError => e
|
647
|
+
puts "Exception when calling ReposApi->repos_privileges_update: #{e}"
|
648
|
+
end
|
649
|
+
```
|
650
|
+
|
651
|
+
### Parameters
|
652
|
+
|
653
|
+
Name | Type | Description | Notes
|
654
|
+
------------- | ------------- | ------------- | -------------
|
655
|
+
**owner** | **String**| |
|
656
|
+
**identifier** | **String**| |
|
657
|
+
**data** | [**ReposPrivilegesUpdate**](ReposPrivilegesUpdate.md)| | [optional]
|
658
|
+
|
659
|
+
### Return type
|
660
|
+
|
661
|
+
nil (empty response body)
|
662
|
+
|
663
|
+
### Authorization
|
664
|
+
|
665
|
+
[apikey](../README.md#apikey)
|
666
|
+
|
667
|
+
### HTTP request headers
|
668
|
+
|
669
|
+
- **Content-Type**: application/json
|
670
|
+
- **Accept**: Not defined
|
671
|
+
|
672
|
+
|
673
|
+
|
307
674
|
# **repos_read**
|
308
675
|
> Repository repos_read(owner, identifier)
|
309
676
|
|
@@ -361,3 +728,178 @@ Name | Type | Description | Notes
|
|
361
728
|
|
362
729
|
|
363
730
|
|
731
|
+
# **repos_rsa_create**
|
732
|
+
> RepositoryRsaKey repos_rsa_create(owner, identifier, opts)
|
733
|
+
|
734
|
+
Set the active RSA key for the Repository.
|
735
|
+
|
736
|
+
Set the active RSA key for the Repository.
|
737
|
+
|
738
|
+
### Example
|
739
|
+
```ruby
|
740
|
+
# load the gem
|
741
|
+
require 'cloudsmith-api'
|
742
|
+
# setup authorization
|
743
|
+
CloudsmithApi.configure do |config|
|
744
|
+
# Configure API key authorization: apikey
|
745
|
+
config.api_key['X-Api-Key'] = 'YOUR API KEY'
|
746
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
747
|
+
#config.api_key_prefix['X-Api-Key'] = 'Bearer'
|
748
|
+
end
|
749
|
+
|
750
|
+
api_instance = CloudsmithApi::ReposApi.new
|
751
|
+
|
752
|
+
owner = 'owner_example' # String |
|
753
|
+
|
754
|
+
identifier = 'identifier_example' # String |
|
755
|
+
|
756
|
+
opts = {
|
757
|
+
data: CloudsmithApi::ReposRsaCreate.new # ReposRsaCreate |
|
758
|
+
}
|
759
|
+
|
760
|
+
begin
|
761
|
+
#Set the active RSA key for the Repository.
|
762
|
+
result = api_instance.repos_rsa_create(owner, identifier, opts)
|
763
|
+
p result
|
764
|
+
rescue CloudsmithApi::ApiError => e
|
765
|
+
puts "Exception when calling ReposApi->repos_rsa_create: #{e}"
|
766
|
+
end
|
767
|
+
```
|
768
|
+
|
769
|
+
### Parameters
|
770
|
+
|
771
|
+
Name | Type | Description | Notes
|
772
|
+
------------- | ------------- | ------------- | -------------
|
773
|
+
**owner** | **String**| |
|
774
|
+
**identifier** | **String**| |
|
775
|
+
**data** | [**ReposRsaCreate**](ReposRsaCreate.md)| | [optional]
|
776
|
+
|
777
|
+
### Return type
|
778
|
+
|
779
|
+
[**RepositoryRsaKey**](RepositoryRsaKey.md)
|
780
|
+
|
781
|
+
### Authorization
|
782
|
+
|
783
|
+
[apikey](../README.md#apikey)
|
784
|
+
|
785
|
+
### HTTP request headers
|
786
|
+
|
787
|
+
- **Content-Type**: application/json
|
788
|
+
- **Accept**: Not defined
|
789
|
+
|
790
|
+
|
791
|
+
|
792
|
+
# **repos_rsa_list**
|
793
|
+
> RepositoryRsaKey repos_rsa_list(owner, identifier)
|
794
|
+
|
795
|
+
Retrieve the active RSA key for the Repository.
|
796
|
+
|
797
|
+
Retrieve the active RSA key for the Repository.
|
798
|
+
|
799
|
+
### Example
|
800
|
+
```ruby
|
801
|
+
# load the gem
|
802
|
+
require 'cloudsmith-api'
|
803
|
+
# setup authorization
|
804
|
+
CloudsmithApi.configure do |config|
|
805
|
+
# Configure API key authorization: apikey
|
806
|
+
config.api_key['X-Api-Key'] = 'YOUR API KEY'
|
807
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
808
|
+
#config.api_key_prefix['X-Api-Key'] = 'Bearer'
|
809
|
+
end
|
810
|
+
|
811
|
+
api_instance = CloudsmithApi::ReposApi.new
|
812
|
+
|
813
|
+
owner = 'owner_example' # String |
|
814
|
+
|
815
|
+
identifier = 'identifier_example' # String |
|
816
|
+
|
817
|
+
|
818
|
+
begin
|
819
|
+
#Retrieve the active RSA key for the Repository.
|
820
|
+
result = api_instance.repos_rsa_list(owner, identifier)
|
821
|
+
p result
|
822
|
+
rescue CloudsmithApi::ApiError => e
|
823
|
+
puts "Exception when calling ReposApi->repos_rsa_list: #{e}"
|
824
|
+
end
|
825
|
+
```
|
826
|
+
|
827
|
+
### Parameters
|
828
|
+
|
829
|
+
Name | Type | Description | Notes
|
830
|
+
------------- | ------------- | ------------- | -------------
|
831
|
+
**owner** | **String**| |
|
832
|
+
**identifier** | **String**| |
|
833
|
+
|
834
|
+
### Return type
|
835
|
+
|
836
|
+
[**RepositoryRsaKey**](RepositoryRsaKey.md)
|
837
|
+
|
838
|
+
### Authorization
|
839
|
+
|
840
|
+
[apikey](../README.md#apikey)
|
841
|
+
|
842
|
+
### HTTP request headers
|
843
|
+
|
844
|
+
- **Content-Type**: Not defined
|
845
|
+
- **Accept**: Not defined
|
846
|
+
|
847
|
+
|
848
|
+
|
849
|
+
# **repos_rsa_regenerate**
|
850
|
+
> RepositoryRsaKey repos_rsa_regenerate(owner, identifier)
|
851
|
+
|
852
|
+
Regenerate RSA Key for the Repository.
|
853
|
+
|
854
|
+
Regenerate RSA Key for the Repository.
|
855
|
+
|
856
|
+
### Example
|
857
|
+
```ruby
|
858
|
+
# load the gem
|
859
|
+
require 'cloudsmith-api'
|
860
|
+
# setup authorization
|
861
|
+
CloudsmithApi.configure do |config|
|
862
|
+
# Configure API key authorization: apikey
|
863
|
+
config.api_key['X-Api-Key'] = 'YOUR API KEY'
|
864
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
865
|
+
#config.api_key_prefix['X-Api-Key'] = 'Bearer'
|
866
|
+
end
|
867
|
+
|
868
|
+
api_instance = CloudsmithApi::ReposApi.new
|
869
|
+
|
870
|
+
owner = 'owner_example' # String |
|
871
|
+
|
872
|
+
identifier = 'identifier_example' # String |
|
873
|
+
|
874
|
+
|
875
|
+
begin
|
876
|
+
#Regenerate RSA Key for the Repository.
|
877
|
+
result = api_instance.repos_rsa_regenerate(owner, identifier)
|
878
|
+
p result
|
879
|
+
rescue CloudsmithApi::ApiError => e
|
880
|
+
puts "Exception when calling ReposApi->repos_rsa_regenerate: #{e}"
|
881
|
+
end
|
882
|
+
```
|
883
|
+
|
884
|
+
### Parameters
|
885
|
+
|
886
|
+
Name | Type | Description | Notes
|
887
|
+
------------- | ------------- | ------------- | -------------
|
888
|
+
**owner** | **String**| |
|
889
|
+
**identifier** | **String**| |
|
890
|
+
|
891
|
+
### Return type
|
892
|
+
|
893
|
+
[**RepositoryRsaKey**](RepositoryRsaKey.md)
|
894
|
+
|
895
|
+
### Authorization
|
896
|
+
|
897
|
+
[apikey](../README.md#apikey)
|
898
|
+
|
899
|
+
### HTTP request headers
|
900
|
+
|
901
|
+
- **Content-Type**: Not defined
|
902
|
+
- **Accept**: Not defined
|
903
|
+
|
904
|
+
|
905
|
+
|