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
data/docs/OrgsApi.md
CHANGED
@@ -4,11 +4,262 @@ All URIs are relative to *https://api.cloudsmith.io/v1*
|
|
4
4
|
|
5
5
|
Method | HTTP request | Description
|
6
6
|
------------- | ------------- | -------------
|
7
|
+
[**orgs_invites_create**](OrgsApi.md#orgs_invites_create) | **POST** /orgs/{org}/invites/ | Create an organization invite for a specific user
|
8
|
+
[**orgs_invites_delete**](OrgsApi.md#orgs_invites_delete) | **DELETE** /orgs/{org}/invites/{slug_perm}/ | Delete a specific organization invite
|
9
|
+
[**orgs_invites_extend**](OrgsApi.md#orgs_invites_extend) | **POST** /orgs/{org}/invites/{slug_perm}/extend/ | Extend an organization invite.
|
10
|
+
[**orgs_invites_list**](OrgsApi.md#orgs_invites_list) | **GET** /orgs/{org}/invites/ | Get a list of all invites for an organization.
|
7
11
|
[**orgs_list**](OrgsApi.md#orgs_list) | **GET** /orgs/ | Get a list of all the organizations you are associated with.
|
12
|
+
[**orgs_members_delete**](OrgsApi.md#orgs_members_delete) | **DELETE** /orgs/{org}/members/{member}/ | Removes a member from the organization.
|
8
13
|
[**orgs_members_list**](OrgsApi.md#orgs_members_list) | **GET** /orgs/{org}/members/ | Get the details for all organization members.
|
9
14
|
[**orgs_members_read**](OrgsApi.md#orgs_members_read) | **GET** /orgs/{org}/members/{member}/ | Get the details for a specific organization member.
|
10
|
-
[**orgs_members_remove**](OrgsApi.md#orgs_members_remove) | **GET** /orgs/{org}/members/{member}/remove/ | Removes a member from the organization.
|
15
|
+
[**orgs_members_remove**](OrgsApi.md#orgs_members_remove) | **GET** /orgs/{org}/members/{member}/remove/ | Removes a member from the organization (deprecated, use DELETE instead).
|
11
16
|
[**orgs_read**](OrgsApi.md#orgs_read) | **GET** /orgs/{org}/ | Get the details for the specific organization.
|
17
|
+
[**orgs_saml_group_sync_create**](OrgsApi.md#orgs_saml_group_sync_create) | **POST** /orgs/{org}/saml-group-sync/ | Create a new SAML Group Sync mapping within an organization.
|
18
|
+
[**orgs_saml_group_sync_delete**](OrgsApi.md#orgs_saml_group_sync_delete) | **DELETE** /orgs/{org}/saml-group-sync/{slug_perm}/ | Delete a SAML Group Sync mapping from an organization.
|
19
|
+
[**orgs_saml_group_sync_list**](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.
|
20
|
+
[**orgs_teams_create**](OrgsApi.md#orgs_teams_create) | **POST** /orgs/{org}/teams/ | Create a team for this organization.
|
21
|
+
[**orgs_teams_delete**](OrgsApi.md#orgs_teams_delete) | **DELETE** /orgs/{org}/teams/{team}/ | Delete a specific team in a organization.
|
22
|
+
[**orgs_teams_list**](OrgsApi.md#orgs_teams_list) | **GET** /orgs/{org}/teams/ | Get the details of all teams within an organization.
|
23
|
+
[**orgs_teams_members_create**](OrgsApi.md#orgs_teams_members_create) | **POST** /orgs/{org}/teams/{team}/members | Add users to a team.
|
24
|
+
[**orgs_teams_members_list**](OrgsApi.md#orgs_teams_members_list) | **GET** /orgs/{org}/teams/{team}/members | List all members for the team.
|
25
|
+
[**orgs_teams_members_update**](OrgsApi.md#orgs_teams_members_update) | **PUT** /orgs/{org}/teams/{team}/members | Replace all team members.
|
26
|
+
[**orgs_teams_partial_update**](OrgsApi.md#orgs_teams_partial_update) | **PATCH** /orgs/{org}/teams/{team}/ | Update a specific team in a organization.
|
27
|
+
[**orgs_teams_read**](OrgsApi.md#orgs_teams_read) | **GET** /orgs/{org}/teams/{team}/ | Get the details for the specific team.
|
28
|
+
|
29
|
+
|
30
|
+
# **orgs_invites_create**
|
31
|
+
> OrganizationInvite orgs_invites_create(org, opts)
|
32
|
+
|
33
|
+
Create an organization invite for a specific user
|
34
|
+
|
35
|
+
Create an organization invite for a specific user
|
36
|
+
|
37
|
+
### Example
|
38
|
+
```ruby
|
39
|
+
# load the gem
|
40
|
+
require 'cloudsmith-api'
|
41
|
+
# setup authorization
|
42
|
+
CloudsmithApi.configure do |config|
|
43
|
+
# Configure API key authorization: apikey
|
44
|
+
config.api_key['X-Api-Key'] = 'YOUR API KEY'
|
45
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
46
|
+
#config.api_key_prefix['X-Api-Key'] = 'Bearer'
|
47
|
+
end
|
48
|
+
|
49
|
+
api_instance = CloudsmithApi::OrgsApi.new
|
50
|
+
|
51
|
+
org = 'org_example' # String |
|
52
|
+
|
53
|
+
opts = {
|
54
|
+
data: CloudsmithApi::OrgsInvitesCreate.new # OrgsInvitesCreate |
|
55
|
+
}
|
56
|
+
|
57
|
+
begin
|
58
|
+
#Create an organization invite for a specific user
|
59
|
+
result = api_instance.orgs_invites_create(org, opts)
|
60
|
+
p result
|
61
|
+
rescue CloudsmithApi::ApiError => e
|
62
|
+
puts "Exception when calling OrgsApi->orgs_invites_create: #{e}"
|
63
|
+
end
|
64
|
+
```
|
65
|
+
|
66
|
+
### Parameters
|
67
|
+
|
68
|
+
Name | Type | Description | Notes
|
69
|
+
------------- | ------------- | ------------- | -------------
|
70
|
+
**org** | **String**| |
|
71
|
+
**data** | [**OrgsInvitesCreate**](OrgsInvitesCreate.md)| | [optional]
|
72
|
+
|
73
|
+
### Return type
|
74
|
+
|
75
|
+
[**OrganizationInvite**](OrganizationInvite.md)
|
76
|
+
|
77
|
+
### Authorization
|
78
|
+
|
79
|
+
[apikey](../README.md#apikey)
|
80
|
+
|
81
|
+
### HTTP request headers
|
82
|
+
|
83
|
+
- **Content-Type**: application/json
|
84
|
+
- **Accept**: Not defined
|
85
|
+
|
86
|
+
|
87
|
+
|
88
|
+
# **orgs_invites_delete**
|
89
|
+
> orgs_invites_delete(org, slug_perm)
|
90
|
+
|
91
|
+
Delete a specific organization invite
|
92
|
+
|
93
|
+
Delete a specific organization invite
|
94
|
+
|
95
|
+
### Example
|
96
|
+
```ruby
|
97
|
+
# load the gem
|
98
|
+
require 'cloudsmith-api'
|
99
|
+
# setup authorization
|
100
|
+
CloudsmithApi.configure do |config|
|
101
|
+
# Configure API key authorization: apikey
|
102
|
+
config.api_key['X-Api-Key'] = 'YOUR API KEY'
|
103
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
104
|
+
#config.api_key_prefix['X-Api-Key'] = 'Bearer'
|
105
|
+
end
|
106
|
+
|
107
|
+
api_instance = CloudsmithApi::OrgsApi.new
|
108
|
+
|
109
|
+
org = 'org_example' # String |
|
110
|
+
|
111
|
+
slug_perm = 'slug_perm_example' # String |
|
112
|
+
|
113
|
+
|
114
|
+
begin
|
115
|
+
#Delete a specific organization invite
|
116
|
+
api_instance.orgs_invites_delete(org, slug_perm)
|
117
|
+
rescue CloudsmithApi::ApiError => e
|
118
|
+
puts "Exception when calling OrgsApi->orgs_invites_delete: #{e}"
|
119
|
+
end
|
120
|
+
```
|
121
|
+
|
122
|
+
### Parameters
|
123
|
+
|
124
|
+
Name | Type | Description | Notes
|
125
|
+
------------- | ------------- | ------------- | -------------
|
126
|
+
**org** | **String**| |
|
127
|
+
**slug_perm** | **String**| |
|
128
|
+
|
129
|
+
### Return type
|
130
|
+
|
131
|
+
nil (empty response body)
|
132
|
+
|
133
|
+
### Authorization
|
134
|
+
|
135
|
+
[apikey](../README.md#apikey)
|
136
|
+
|
137
|
+
### HTTP request headers
|
138
|
+
|
139
|
+
- **Content-Type**: Not defined
|
140
|
+
- **Accept**: Not defined
|
141
|
+
|
142
|
+
|
143
|
+
|
144
|
+
# **orgs_invites_extend**
|
145
|
+
> OrganizationInvite orgs_invites_extend(org, slug_perm, opts)
|
146
|
+
|
147
|
+
Extend an organization invite.
|
148
|
+
|
149
|
+
Extend an organization invite.
|
150
|
+
|
151
|
+
### Example
|
152
|
+
```ruby
|
153
|
+
# load the gem
|
154
|
+
require 'cloudsmith-api'
|
155
|
+
# setup authorization
|
156
|
+
CloudsmithApi.configure do |config|
|
157
|
+
# Configure API key authorization: apikey
|
158
|
+
config.api_key['X-Api-Key'] = 'YOUR API KEY'
|
159
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
160
|
+
#config.api_key_prefix['X-Api-Key'] = 'Bearer'
|
161
|
+
end
|
162
|
+
|
163
|
+
api_instance = CloudsmithApi::OrgsApi.new
|
164
|
+
|
165
|
+
org = 'org_example' # String |
|
166
|
+
|
167
|
+
slug_perm = 'slug_perm_example' # String |
|
168
|
+
|
169
|
+
opts = {
|
170
|
+
data: CloudsmithApi::OrgsInvitesExtend.new # OrgsInvitesExtend |
|
171
|
+
}
|
172
|
+
|
173
|
+
begin
|
174
|
+
#Extend an organization invite.
|
175
|
+
result = api_instance.orgs_invites_extend(org, slug_perm, opts)
|
176
|
+
p result
|
177
|
+
rescue CloudsmithApi::ApiError => e
|
178
|
+
puts "Exception when calling OrgsApi->orgs_invites_extend: #{e}"
|
179
|
+
end
|
180
|
+
```
|
181
|
+
|
182
|
+
### Parameters
|
183
|
+
|
184
|
+
Name | Type | Description | Notes
|
185
|
+
------------- | ------------- | ------------- | -------------
|
186
|
+
**org** | **String**| |
|
187
|
+
**slug_perm** | **String**| |
|
188
|
+
**data** | [**OrgsInvitesExtend**](OrgsInvitesExtend.md)| | [optional]
|
189
|
+
|
190
|
+
### Return type
|
191
|
+
|
192
|
+
[**OrganizationInvite**](OrganizationInvite.md)
|
193
|
+
|
194
|
+
### Authorization
|
195
|
+
|
196
|
+
[apikey](../README.md#apikey)
|
197
|
+
|
198
|
+
### HTTP request headers
|
199
|
+
|
200
|
+
- **Content-Type**: application/json
|
201
|
+
- **Accept**: Not defined
|
202
|
+
|
203
|
+
|
204
|
+
|
205
|
+
# **orgs_invites_list**
|
206
|
+
> Array<OrganizationInvite> orgs_invites_list(org, opts)
|
207
|
+
|
208
|
+
Get a list of all invites for an organization.
|
209
|
+
|
210
|
+
Get a list of all invites for an organization.
|
211
|
+
|
212
|
+
### Example
|
213
|
+
```ruby
|
214
|
+
# load the gem
|
215
|
+
require 'cloudsmith-api'
|
216
|
+
# setup authorization
|
217
|
+
CloudsmithApi.configure do |config|
|
218
|
+
# Configure API key authorization: apikey
|
219
|
+
config.api_key['X-Api-Key'] = 'YOUR API KEY'
|
220
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
221
|
+
#config.api_key_prefix['X-Api-Key'] = 'Bearer'
|
222
|
+
end
|
223
|
+
|
224
|
+
api_instance = CloudsmithApi::OrgsApi.new
|
225
|
+
|
226
|
+
org = 'org_example' # String |
|
227
|
+
|
228
|
+
opts = {
|
229
|
+
page: 56, # Integer | A page number within the paginated result set.
|
230
|
+
page_size: 56 # Integer | Number of results to return per page.
|
231
|
+
}
|
232
|
+
|
233
|
+
begin
|
234
|
+
#Get a list of all invites for an organization.
|
235
|
+
result = api_instance.orgs_invites_list(org, opts)
|
236
|
+
p result
|
237
|
+
rescue CloudsmithApi::ApiError => e
|
238
|
+
puts "Exception when calling OrgsApi->orgs_invites_list: #{e}"
|
239
|
+
end
|
240
|
+
```
|
241
|
+
|
242
|
+
### Parameters
|
243
|
+
|
244
|
+
Name | Type | Description | Notes
|
245
|
+
------------- | ------------- | ------------- | -------------
|
246
|
+
**org** | **String**| |
|
247
|
+
**page** | **Integer**| A page number within the paginated result set. | [optional]
|
248
|
+
**page_size** | **Integer**| Number of results to return per page. | [optional]
|
249
|
+
|
250
|
+
### Return type
|
251
|
+
|
252
|
+
[**Array<OrganizationInvite>**](OrganizationInvite.md)
|
253
|
+
|
254
|
+
### Authorization
|
255
|
+
|
256
|
+
[apikey](../README.md#apikey)
|
257
|
+
|
258
|
+
### HTTP request headers
|
259
|
+
|
260
|
+
- **Content-Type**: Not defined
|
261
|
+
- **Accept**: Not defined
|
262
|
+
|
12
263
|
|
13
264
|
|
14
265
|
# **orgs_list**
|
@@ -68,6 +319,62 @@ Name | Type | Description | Notes
|
|
68
319
|
|
69
320
|
|
70
321
|
|
322
|
+
# **orgs_members_delete**
|
323
|
+
> orgs_members_delete(org, member)
|
324
|
+
|
325
|
+
Removes a member from the organization.
|
326
|
+
|
327
|
+
Removes a member from the organization.
|
328
|
+
|
329
|
+
### Example
|
330
|
+
```ruby
|
331
|
+
# load the gem
|
332
|
+
require 'cloudsmith-api'
|
333
|
+
# setup authorization
|
334
|
+
CloudsmithApi.configure do |config|
|
335
|
+
# Configure API key authorization: apikey
|
336
|
+
config.api_key['X-Api-Key'] = 'YOUR API KEY'
|
337
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
338
|
+
#config.api_key_prefix['X-Api-Key'] = 'Bearer'
|
339
|
+
end
|
340
|
+
|
341
|
+
api_instance = CloudsmithApi::OrgsApi.new
|
342
|
+
|
343
|
+
org = 'org_example' # String |
|
344
|
+
|
345
|
+
member = 'member_example' # String |
|
346
|
+
|
347
|
+
|
348
|
+
begin
|
349
|
+
#Removes a member from the organization.
|
350
|
+
api_instance.orgs_members_delete(org, member)
|
351
|
+
rescue CloudsmithApi::ApiError => e
|
352
|
+
puts "Exception when calling OrgsApi->orgs_members_delete: #{e}"
|
353
|
+
end
|
354
|
+
```
|
355
|
+
|
356
|
+
### Parameters
|
357
|
+
|
358
|
+
Name | Type | Description | Notes
|
359
|
+
------------- | ------------- | ------------- | -------------
|
360
|
+
**org** | **String**| |
|
361
|
+
**member** | **String**| |
|
362
|
+
|
363
|
+
### Return type
|
364
|
+
|
365
|
+
nil (empty response body)
|
366
|
+
|
367
|
+
### Authorization
|
368
|
+
|
369
|
+
[apikey](../README.md#apikey)
|
370
|
+
|
371
|
+
### HTTP request headers
|
372
|
+
|
373
|
+
- **Content-Type**: Not defined
|
374
|
+
- **Accept**: Not defined
|
375
|
+
|
376
|
+
|
377
|
+
|
71
378
|
# **orgs_members_list**
|
72
379
|
> Array<OrganizationMembership> orgs_members_list(org, opts)
|
73
380
|
|
@@ -186,11 +493,11 @@ Name | Type | Description | Notes
|
|
186
493
|
|
187
494
|
|
188
495
|
# **orgs_members_remove**
|
189
|
-
>
|
496
|
+
> orgs_members_remove(org, member)
|
190
497
|
|
191
|
-
Removes a member from the organization.
|
498
|
+
Removes a member from the organization (deprecated, use DELETE instead).
|
192
499
|
|
193
|
-
Removes a member from the organization.
|
500
|
+
Removes a member from the organization (deprecated, use DELETE instead).
|
194
501
|
|
195
502
|
### Example
|
196
503
|
```ruby
|
@@ -212,9 +519,8 @@ member = 'member_example' # String |
|
|
212
519
|
|
213
520
|
|
214
521
|
begin
|
215
|
-
#Removes a member from the organization.
|
216
|
-
|
217
|
-
p result
|
522
|
+
#Removes a member from the organization (deprecated, use DELETE instead).
|
523
|
+
api_instance.orgs_members_remove(org, member)
|
218
524
|
rescue CloudsmithApi::ApiError => e
|
219
525
|
puts "Exception when calling OrgsApi->orgs_members_remove: #{e}"
|
220
526
|
end
|
@@ -229,7 +535,7 @@ Name | Type | Description | Notes
|
|
229
535
|
|
230
536
|
### Return type
|
231
537
|
|
232
|
-
|
538
|
+
nil (empty response body)
|
233
539
|
|
234
540
|
### Authorization
|
235
541
|
|
@@ -296,3 +602,647 @@ Name | Type | Description | Notes
|
|
296
602
|
|
297
603
|
|
298
604
|
|
605
|
+
# **orgs_saml_group_sync_create**
|
606
|
+
> OrganizationGroupSync orgs_saml_group_sync_create(org, opts)
|
607
|
+
|
608
|
+
Create a new SAML Group Sync mapping within an organization.
|
609
|
+
|
610
|
+
Create a new SAML Group Sync mapping within an organization.
|
611
|
+
|
612
|
+
### Example
|
613
|
+
```ruby
|
614
|
+
# load the gem
|
615
|
+
require 'cloudsmith-api'
|
616
|
+
# setup authorization
|
617
|
+
CloudsmithApi.configure do |config|
|
618
|
+
# Configure API key authorization: apikey
|
619
|
+
config.api_key['X-Api-Key'] = 'YOUR API KEY'
|
620
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
621
|
+
#config.api_key_prefix['X-Api-Key'] = 'Bearer'
|
622
|
+
end
|
623
|
+
|
624
|
+
api_instance = CloudsmithApi::OrgsApi.new
|
625
|
+
|
626
|
+
org = 'org_example' # String |
|
627
|
+
|
628
|
+
opts = {
|
629
|
+
data: CloudsmithApi::OrgsSamlgroupsyncCreate.new # OrgsSamlgroupsyncCreate |
|
630
|
+
}
|
631
|
+
|
632
|
+
begin
|
633
|
+
#Create a new SAML Group Sync mapping within an organization.
|
634
|
+
result = api_instance.orgs_saml_group_sync_create(org, opts)
|
635
|
+
p result
|
636
|
+
rescue CloudsmithApi::ApiError => e
|
637
|
+
puts "Exception when calling OrgsApi->orgs_saml_group_sync_create: #{e}"
|
638
|
+
end
|
639
|
+
```
|
640
|
+
|
641
|
+
### Parameters
|
642
|
+
|
643
|
+
Name | Type | Description | Notes
|
644
|
+
------------- | ------------- | ------------- | -------------
|
645
|
+
**org** | **String**| |
|
646
|
+
**data** | [**OrgsSamlgroupsyncCreate**](OrgsSamlgroupsyncCreate.md)| | [optional]
|
647
|
+
|
648
|
+
### Return type
|
649
|
+
|
650
|
+
[**OrganizationGroupSync**](OrganizationGroupSync.md)
|
651
|
+
|
652
|
+
### Authorization
|
653
|
+
|
654
|
+
[apikey](../README.md#apikey)
|
655
|
+
|
656
|
+
### HTTP request headers
|
657
|
+
|
658
|
+
- **Content-Type**: application/json
|
659
|
+
- **Accept**: Not defined
|
660
|
+
|
661
|
+
|
662
|
+
|
663
|
+
# **orgs_saml_group_sync_delete**
|
664
|
+
> orgs_saml_group_sync_delete(org, slug_perm)
|
665
|
+
|
666
|
+
Delete a SAML Group Sync mapping from an organization.
|
667
|
+
|
668
|
+
Delete a SAML Group Sync mapping from an organization.
|
669
|
+
|
670
|
+
### Example
|
671
|
+
```ruby
|
672
|
+
# load the gem
|
673
|
+
require 'cloudsmith-api'
|
674
|
+
# setup authorization
|
675
|
+
CloudsmithApi.configure do |config|
|
676
|
+
# Configure API key authorization: apikey
|
677
|
+
config.api_key['X-Api-Key'] = 'YOUR API KEY'
|
678
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
679
|
+
#config.api_key_prefix['X-Api-Key'] = 'Bearer'
|
680
|
+
end
|
681
|
+
|
682
|
+
api_instance = CloudsmithApi::OrgsApi.new
|
683
|
+
|
684
|
+
org = 'org_example' # String |
|
685
|
+
|
686
|
+
slug_perm = 'slug_perm_example' # String |
|
687
|
+
|
688
|
+
|
689
|
+
begin
|
690
|
+
#Delete a SAML Group Sync mapping from an organization.
|
691
|
+
api_instance.orgs_saml_group_sync_delete(org, slug_perm)
|
692
|
+
rescue CloudsmithApi::ApiError => e
|
693
|
+
puts "Exception when calling OrgsApi->orgs_saml_group_sync_delete: #{e}"
|
694
|
+
end
|
695
|
+
```
|
696
|
+
|
697
|
+
### Parameters
|
698
|
+
|
699
|
+
Name | Type | Description | Notes
|
700
|
+
------------- | ------------- | ------------- | -------------
|
701
|
+
**org** | **String**| |
|
702
|
+
**slug_perm** | **String**| |
|
703
|
+
|
704
|
+
### Return type
|
705
|
+
|
706
|
+
nil (empty response body)
|
707
|
+
|
708
|
+
### Authorization
|
709
|
+
|
710
|
+
[apikey](../README.md#apikey)
|
711
|
+
|
712
|
+
### HTTP request headers
|
713
|
+
|
714
|
+
- **Content-Type**: Not defined
|
715
|
+
- **Accept**: Not defined
|
716
|
+
|
717
|
+
|
718
|
+
|
719
|
+
# **orgs_saml_group_sync_list**
|
720
|
+
> Array<OrganizationGroupSync> orgs_saml_group_sync_list(org, opts)
|
721
|
+
|
722
|
+
Get the details of all SAML Group Sync mapping within an organization.
|
723
|
+
|
724
|
+
Get the details of all SAML Group Sync mapping within an organization.
|
725
|
+
|
726
|
+
### Example
|
727
|
+
```ruby
|
728
|
+
# load the gem
|
729
|
+
require 'cloudsmith-api'
|
730
|
+
# setup authorization
|
731
|
+
CloudsmithApi.configure do |config|
|
732
|
+
# Configure API key authorization: apikey
|
733
|
+
config.api_key['X-Api-Key'] = 'YOUR API KEY'
|
734
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
735
|
+
#config.api_key_prefix['X-Api-Key'] = 'Bearer'
|
736
|
+
end
|
737
|
+
|
738
|
+
api_instance = CloudsmithApi::OrgsApi.new
|
739
|
+
|
740
|
+
org = 'org_example' # String |
|
741
|
+
|
742
|
+
opts = {
|
743
|
+
page: 56, # Integer | A page number within the paginated result set.
|
744
|
+
page_size: 56 # Integer | Number of results to return per page.
|
745
|
+
}
|
746
|
+
|
747
|
+
begin
|
748
|
+
#Get the details of all SAML Group Sync mapping within an organization.
|
749
|
+
result = api_instance.orgs_saml_group_sync_list(org, opts)
|
750
|
+
p result
|
751
|
+
rescue CloudsmithApi::ApiError => e
|
752
|
+
puts "Exception when calling OrgsApi->orgs_saml_group_sync_list: #{e}"
|
753
|
+
end
|
754
|
+
```
|
755
|
+
|
756
|
+
### Parameters
|
757
|
+
|
758
|
+
Name | Type | Description | Notes
|
759
|
+
------------- | ------------- | ------------- | -------------
|
760
|
+
**org** | **String**| |
|
761
|
+
**page** | **Integer**| A page number within the paginated result set. | [optional]
|
762
|
+
**page_size** | **Integer**| Number of results to return per page. | [optional]
|
763
|
+
|
764
|
+
### Return type
|
765
|
+
|
766
|
+
[**Array<OrganizationGroupSync>**](OrganizationGroupSync.md)
|
767
|
+
|
768
|
+
### Authorization
|
769
|
+
|
770
|
+
[apikey](../README.md#apikey)
|
771
|
+
|
772
|
+
### HTTP request headers
|
773
|
+
|
774
|
+
- **Content-Type**: Not defined
|
775
|
+
- **Accept**: Not defined
|
776
|
+
|
777
|
+
|
778
|
+
|
779
|
+
# **orgs_teams_create**
|
780
|
+
> OrganizationTeam orgs_teams_create(org, opts)
|
781
|
+
|
782
|
+
Create a team for this organization.
|
783
|
+
|
784
|
+
Create a team for this organization.
|
785
|
+
|
786
|
+
### Example
|
787
|
+
```ruby
|
788
|
+
# load the gem
|
789
|
+
require 'cloudsmith-api'
|
790
|
+
# setup authorization
|
791
|
+
CloudsmithApi.configure do |config|
|
792
|
+
# Configure API key authorization: apikey
|
793
|
+
config.api_key['X-Api-Key'] = 'YOUR API KEY'
|
794
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
795
|
+
#config.api_key_prefix['X-Api-Key'] = 'Bearer'
|
796
|
+
end
|
797
|
+
|
798
|
+
api_instance = CloudsmithApi::OrgsApi.new
|
799
|
+
|
800
|
+
org = 'org_example' # String |
|
801
|
+
|
802
|
+
opts = {
|
803
|
+
data: CloudsmithApi::OrgsTeamsCreate.new # OrgsTeamsCreate |
|
804
|
+
}
|
805
|
+
|
806
|
+
begin
|
807
|
+
#Create a team for this organization.
|
808
|
+
result = api_instance.orgs_teams_create(org, opts)
|
809
|
+
p result
|
810
|
+
rescue CloudsmithApi::ApiError => e
|
811
|
+
puts "Exception when calling OrgsApi->orgs_teams_create: #{e}"
|
812
|
+
end
|
813
|
+
```
|
814
|
+
|
815
|
+
### Parameters
|
816
|
+
|
817
|
+
Name | Type | Description | Notes
|
818
|
+
------------- | ------------- | ------------- | -------------
|
819
|
+
**org** | **String**| |
|
820
|
+
**data** | [**OrgsTeamsCreate**](OrgsTeamsCreate.md)| | [optional]
|
821
|
+
|
822
|
+
### Return type
|
823
|
+
|
824
|
+
[**OrganizationTeam**](OrganizationTeam.md)
|
825
|
+
|
826
|
+
### Authorization
|
827
|
+
|
828
|
+
[apikey](../README.md#apikey)
|
829
|
+
|
830
|
+
### HTTP request headers
|
831
|
+
|
832
|
+
- **Content-Type**: application/json
|
833
|
+
- **Accept**: Not defined
|
834
|
+
|
835
|
+
|
836
|
+
|
837
|
+
# **orgs_teams_delete**
|
838
|
+
> orgs_teams_delete(org, team)
|
839
|
+
|
840
|
+
Delete a specific team in a organization.
|
841
|
+
|
842
|
+
Delete a specific team in a organization.
|
843
|
+
|
844
|
+
### Example
|
845
|
+
```ruby
|
846
|
+
# load the gem
|
847
|
+
require 'cloudsmith-api'
|
848
|
+
# setup authorization
|
849
|
+
CloudsmithApi.configure do |config|
|
850
|
+
# Configure API key authorization: apikey
|
851
|
+
config.api_key['X-Api-Key'] = 'YOUR API KEY'
|
852
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
853
|
+
#config.api_key_prefix['X-Api-Key'] = 'Bearer'
|
854
|
+
end
|
855
|
+
|
856
|
+
api_instance = CloudsmithApi::OrgsApi.new
|
857
|
+
|
858
|
+
org = 'org_example' # String |
|
859
|
+
|
860
|
+
team = 'team_example' # String |
|
861
|
+
|
862
|
+
|
863
|
+
begin
|
864
|
+
#Delete a specific team in a organization.
|
865
|
+
api_instance.orgs_teams_delete(org, team)
|
866
|
+
rescue CloudsmithApi::ApiError => e
|
867
|
+
puts "Exception when calling OrgsApi->orgs_teams_delete: #{e}"
|
868
|
+
end
|
869
|
+
```
|
870
|
+
|
871
|
+
### Parameters
|
872
|
+
|
873
|
+
Name | Type | Description | Notes
|
874
|
+
------------- | ------------- | ------------- | -------------
|
875
|
+
**org** | **String**| |
|
876
|
+
**team** | **String**| |
|
877
|
+
|
878
|
+
### Return type
|
879
|
+
|
880
|
+
nil (empty response body)
|
881
|
+
|
882
|
+
### Authorization
|
883
|
+
|
884
|
+
[apikey](../README.md#apikey)
|
885
|
+
|
886
|
+
### HTTP request headers
|
887
|
+
|
888
|
+
- **Content-Type**: Not defined
|
889
|
+
- **Accept**: Not defined
|
890
|
+
|
891
|
+
|
892
|
+
|
893
|
+
# **orgs_teams_list**
|
894
|
+
> Array<OrganizationTeam> orgs_teams_list(org, opts)
|
895
|
+
|
896
|
+
Get the details of all teams within an organization.
|
897
|
+
|
898
|
+
Get the details of all teams within an organization.
|
899
|
+
|
900
|
+
### Example
|
901
|
+
```ruby
|
902
|
+
# load the gem
|
903
|
+
require 'cloudsmith-api'
|
904
|
+
# setup authorization
|
905
|
+
CloudsmithApi.configure do |config|
|
906
|
+
# Configure API key authorization: apikey
|
907
|
+
config.api_key['X-Api-Key'] = 'YOUR API KEY'
|
908
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
909
|
+
#config.api_key_prefix['X-Api-Key'] = 'Bearer'
|
910
|
+
end
|
911
|
+
|
912
|
+
api_instance = CloudsmithApi::OrgsApi.new
|
913
|
+
|
914
|
+
org = 'org_example' # String |
|
915
|
+
|
916
|
+
opts = {
|
917
|
+
page: 56, # Integer | A page number within the paginated result set.
|
918
|
+
page_size: 56 # Integer | Number of results to return per page.
|
919
|
+
}
|
920
|
+
|
921
|
+
begin
|
922
|
+
#Get the details of all teams within an organization.
|
923
|
+
result = api_instance.orgs_teams_list(org, opts)
|
924
|
+
p result
|
925
|
+
rescue CloudsmithApi::ApiError => e
|
926
|
+
puts "Exception when calling OrgsApi->orgs_teams_list: #{e}"
|
927
|
+
end
|
928
|
+
```
|
929
|
+
|
930
|
+
### Parameters
|
931
|
+
|
932
|
+
Name | Type | Description | Notes
|
933
|
+
------------- | ------------- | ------------- | -------------
|
934
|
+
**org** | **String**| |
|
935
|
+
**page** | **Integer**| A page number within the paginated result set. | [optional]
|
936
|
+
**page_size** | **Integer**| Number of results to return per page. | [optional]
|
937
|
+
|
938
|
+
### Return type
|
939
|
+
|
940
|
+
[**Array<OrganizationTeam>**](OrganizationTeam.md)
|
941
|
+
|
942
|
+
### Authorization
|
943
|
+
|
944
|
+
[apikey](../README.md#apikey)
|
945
|
+
|
946
|
+
### HTTP request headers
|
947
|
+
|
948
|
+
- **Content-Type**: Not defined
|
949
|
+
- **Accept**: Not defined
|
950
|
+
|
951
|
+
|
952
|
+
|
953
|
+
# **orgs_teams_members_create**
|
954
|
+
> OrganizationTeamMembers orgs_teams_members_create(org, team, opts)
|
955
|
+
|
956
|
+
Add users to a team.
|
957
|
+
|
958
|
+
Add users to a team.
|
959
|
+
|
960
|
+
### Example
|
961
|
+
```ruby
|
962
|
+
# load the gem
|
963
|
+
require 'cloudsmith-api'
|
964
|
+
# setup authorization
|
965
|
+
CloudsmithApi.configure do |config|
|
966
|
+
# Configure API key authorization: apikey
|
967
|
+
config.api_key['X-Api-Key'] = 'YOUR API KEY'
|
968
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
969
|
+
#config.api_key_prefix['X-Api-Key'] = 'Bearer'
|
970
|
+
end
|
971
|
+
|
972
|
+
api_instance = CloudsmithApi::OrgsApi.new
|
973
|
+
|
974
|
+
org = 'org_example' # String |
|
975
|
+
|
976
|
+
team = 'team_example' # String |
|
977
|
+
|
978
|
+
opts = {
|
979
|
+
data: CloudsmithApi::OrgsTeamsMembersCreate.new # OrgsTeamsMembersCreate |
|
980
|
+
}
|
981
|
+
|
982
|
+
begin
|
983
|
+
#Add users to a team.
|
984
|
+
result = api_instance.orgs_teams_members_create(org, team, opts)
|
985
|
+
p result
|
986
|
+
rescue CloudsmithApi::ApiError => e
|
987
|
+
puts "Exception when calling OrgsApi->orgs_teams_members_create: #{e}"
|
988
|
+
end
|
989
|
+
```
|
990
|
+
|
991
|
+
### Parameters
|
992
|
+
|
993
|
+
Name | Type | Description | Notes
|
994
|
+
------------- | ------------- | ------------- | -------------
|
995
|
+
**org** | **String**| |
|
996
|
+
**team** | **String**| |
|
997
|
+
**data** | [**OrgsTeamsMembersCreate**](OrgsTeamsMembersCreate.md)| | [optional]
|
998
|
+
|
999
|
+
### Return type
|
1000
|
+
|
1001
|
+
[**OrganizationTeamMembers**](OrganizationTeamMembers.md)
|
1002
|
+
|
1003
|
+
### Authorization
|
1004
|
+
|
1005
|
+
[apikey](../README.md#apikey)
|
1006
|
+
|
1007
|
+
### HTTP request headers
|
1008
|
+
|
1009
|
+
- **Content-Type**: application/json
|
1010
|
+
- **Accept**: Not defined
|
1011
|
+
|
1012
|
+
|
1013
|
+
|
1014
|
+
# **orgs_teams_members_list**
|
1015
|
+
> OrganizationTeamMembers orgs_teams_members_list(org, team)
|
1016
|
+
|
1017
|
+
List all members for the team.
|
1018
|
+
|
1019
|
+
List all members for the team.
|
1020
|
+
|
1021
|
+
### Example
|
1022
|
+
```ruby
|
1023
|
+
# load the gem
|
1024
|
+
require 'cloudsmith-api'
|
1025
|
+
# setup authorization
|
1026
|
+
CloudsmithApi.configure do |config|
|
1027
|
+
# Configure API key authorization: apikey
|
1028
|
+
config.api_key['X-Api-Key'] = 'YOUR API KEY'
|
1029
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
1030
|
+
#config.api_key_prefix['X-Api-Key'] = 'Bearer'
|
1031
|
+
end
|
1032
|
+
|
1033
|
+
api_instance = CloudsmithApi::OrgsApi.new
|
1034
|
+
|
1035
|
+
org = 'org_example' # String |
|
1036
|
+
|
1037
|
+
team = 'team_example' # String |
|
1038
|
+
|
1039
|
+
|
1040
|
+
begin
|
1041
|
+
#List all members for the team.
|
1042
|
+
result = api_instance.orgs_teams_members_list(org, team)
|
1043
|
+
p result
|
1044
|
+
rescue CloudsmithApi::ApiError => e
|
1045
|
+
puts "Exception when calling OrgsApi->orgs_teams_members_list: #{e}"
|
1046
|
+
end
|
1047
|
+
```
|
1048
|
+
|
1049
|
+
### Parameters
|
1050
|
+
|
1051
|
+
Name | Type | Description | Notes
|
1052
|
+
------------- | ------------- | ------------- | -------------
|
1053
|
+
**org** | **String**| |
|
1054
|
+
**team** | **String**| |
|
1055
|
+
|
1056
|
+
### Return type
|
1057
|
+
|
1058
|
+
[**OrganizationTeamMembers**](OrganizationTeamMembers.md)
|
1059
|
+
|
1060
|
+
### Authorization
|
1061
|
+
|
1062
|
+
[apikey](../README.md#apikey)
|
1063
|
+
|
1064
|
+
### HTTP request headers
|
1065
|
+
|
1066
|
+
- **Content-Type**: Not defined
|
1067
|
+
- **Accept**: Not defined
|
1068
|
+
|
1069
|
+
|
1070
|
+
|
1071
|
+
# **orgs_teams_members_update**
|
1072
|
+
> orgs_teams_members_update(org, team, opts)
|
1073
|
+
|
1074
|
+
Replace all team members.
|
1075
|
+
|
1076
|
+
Replace all team members.
|
1077
|
+
|
1078
|
+
### Example
|
1079
|
+
```ruby
|
1080
|
+
# load the gem
|
1081
|
+
require 'cloudsmith-api'
|
1082
|
+
# setup authorization
|
1083
|
+
CloudsmithApi.configure do |config|
|
1084
|
+
# Configure API key authorization: apikey
|
1085
|
+
config.api_key['X-Api-Key'] = 'YOUR API KEY'
|
1086
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
1087
|
+
#config.api_key_prefix['X-Api-Key'] = 'Bearer'
|
1088
|
+
end
|
1089
|
+
|
1090
|
+
api_instance = CloudsmithApi::OrgsApi.new
|
1091
|
+
|
1092
|
+
org = 'org_example' # String |
|
1093
|
+
|
1094
|
+
team = 'team_example' # String |
|
1095
|
+
|
1096
|
+
opts = {
|
1097
|
+
data: CloudsmithApi::OrgsTeamsMembersUpdate.new # OrgsTeamsMembersUpdate |
|
1098
|
+
}
|
1099
|
+
|
1100
|
+
begin
|
1101
|
+
#Replace all team members.
|
1102
|
+
api_instance.orgs_teams_members_update(org, team, opts)
|
1103
|
+
rescue CloudsmithApi::ApiError => e
|
1104
|
+
puts "Exception when calling OrgsApi->orgs_teams_members_update: #{e}"
|
1105
|
+
end
|
1106
|
+
```
|
1107
|
+
|
1108
|
+
### Parameters
|
1109
|
+
|
1110
|
+
Name | Type | Description | Notes
|
1111
|
+
------------- | ------------- | ------------- | -------------
|
1112
|
+
**org** | **String**| |
|
1113
|
+
**team** | **String**| |
|
1114
|
+
**data** | [**OrgsTeamsMembersUpdate**](OrgsTeamsMembersUpdate.md)| | [optional]
|
1115
|
+
|
1116
|
+
### Return type
|
1117
|
+
|
1118
|
+
nil (empty response body)
|
1119
|
+
|
1120
|
+
### Authorization
|
1121
|
+
|
1122
|
+
[apikey](../README.md#apikey)
|
1123
|
+
|
1124
|
+
### HTTP request headers
|
1125
|
+
|
1126
|
+
- **Content-Type**: application/json
|
1127
|
+
- **Accept**: Not defined
|
1128
|
+
|
1129
|
+
|
1130
|
+
|
1131
|
+
# **orgs_teams_partial_update**
|
1132
|
+
> OrganizationTeam orgs_teams_partial_update(org, team, opts)
|
1133
|
+
|
1134
|
+
Update a specific team in a organization.
|
1135
|
+
|
1136
|
+
Update a specific team in a organization.
|
1137
|
+
|
1138
|
+
### Example
|
1139
|
+
```ruby
|
1140
|
+
# load the gem
|
1141
|
+
require 'cloudsmith-api'
|
1142
|
+
# setup authorization
|
1143
|
+
CloudsmithApi.configure do |config|
|
1144
|
+
# Configure API key authorization: apikey
|
1145
|
+
config.api_key['X-Api-Key'] = 'YOUR API KEY'
|
1146
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
1147
|
+
#config.api_key_prefix['X-Api-Key'] = 'Bearer'
|
1148
|
+
end
|
1149
|
+
|
1150
|
+
api_instance = CloudsmithApi::OrgsApi.new
|
1151
|
+
|
1152
|
+
org = 'org_example' # String |
|
1153
|
+
|
1154
|
+
team = 'team_example' # String |
|
1155
|
+
|
1156
|
+
opts = {
|
1157
|
+
data: CloudsmithApi::OrgsTeamsPartialUpdate.new # OrgsTeamsPartialUpdate |
|
1158
|
+
}
|
1159
|
+
|
1160
|
+
begin
|
1161
|
+
#Update a specific team in a organization.
|
1162
|
+
result = api_instance.orgs_teams_partial_update(org, team, opts)
|
1163
|
+
p result
|
1164
|
+
rescue CloudsmithApi::ApiError => e
|
1165
|
+
puts "Exception when calling OrgsApi->orgs_teams_partial_update: #{e}"
|
1166
|
+
end
|
1167
|
+
```
|
1168
|
+
|
1169
|
+
### Parameters
|
1170
|
+
|
1171
|
+
Name | Type | Description | Notes
|
1172
|
+
------------- | ------------- | ------------- | -------------
|
1173
|
+
**org** | **String**| |
|
1174
|
+
**team** | **String**| |
|
1175
|
+
**data** | [**OrgsTeamsPartialUpdate**](OrgsTeamsPartialUpdate.md)| | [optional]
|
1176
|
+
|
1177
|
+
### Return type
|
1178
|
+
|
1179
|
+
[**OrganizationTeam**](OrganizationTeam.md)
|
1180
|
+
|
1181
|
+
### Authorization
|
1182
|
+
|
1183
|
+
[apikey](../README.md#apikey)
|
1184
|
+
|
1185
|
+
### HTTP request headers
|
1186
|
+
|
1187
|
+
- **Content-Type**: application/json
|
1188
|
+
- **Accept**: Not defined
|
1189
|
+
|
1190
|
+
|
1191
|
+
|
1192
|
+
# **orgs_teams_read**
|
1193
|
+
> OrganizationTeam orgs_teams_read(org, team)
|
1194
|
+
|
1195
|
+
Get the details for the specific team.
|
1196
|
+
|
1197
|
+
Get the details for the specific team.
|
1198
|
+
|
1199
|
+
### Example
|
1200
|
+
```ruby
|
1201
|
+
# load the gem
|
1202
|
+
require 'cloudsmith-api'
|
1203
|
+
# setup authorization
|
1204
|
+
CloudsmithApi.configure do |config|
|
1205
|
+
# Configure API key authorization: apikey
|
1206
|
+
config.api_key['X-Api-Key'] = 'YOUR API KEY'
|
1207
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
1208
|
+
#config.api_key_prefix['X-Api-Key'] = 'Bearer'
|
1209
|
+
end
|
1210
|
+
|
1211
|
+
api_instance = CloudsmithApi::OrgsApi.new
|
1212
|
+
|
1213
|
+
org = 'org_example' # String |
|
1214
|
+
|
1215
|
+
team = 'team_example' # String |
|
1216
|
+
|
1217
|
+
|
1218
|
+
begin
|
1219
|
+
#Get the details for the specific team.
|
1220
|
+
result = api_instance.orgs_teams_read(org, team)
|
1221
|
+
p result
|
1222
|
+
rescue CloudsmithApi::ApiError => e
|
1223
|
+
puts "Exception when calling OrgsApi->orgs_teams_read: #{e}"
|
1224
|
+
end
|
1225
|
+
```
|
1226
|
+
|
1227
|
+
### Parameters
|
1228
|
+
|
1229
|
+
Name | Type | Description | Notes
|
1230
|
+
------------- | ------------- | ------------- | -------------
|
1231
|
+
**org** | **String**| |
|
1232
|
+
**team** | **String**| |
|
1233
|
+
|
1234
|
+
### Return type
|
1235
|
+
|
1236
|
+
[**OrganizationTeam**](OrganizationTeam.md)
|
1237
|
+
|
1238
|
+
### Authorization
|
1239
|
+
|
1240
|
+
[apikey](../README.md#apikey)
|
1241
|
+
|
1242
|
+
### HTTP request headers
|
1243
|
+
|
1244
|
+
- **Content-Type**: Not defined
|
1245
|
+
- **Accept**: Not defined
|
1246
|
+
|
1247
|
+
|
1248
|
+
|