cloudsmith-api 2.0.6 → 2.0.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +3 -3
- data/README.md +104 -4
- data/build.json +1 -1
- data/docs/DartUpstream.md +23 -0
- data/docs/DartUpstreamRequest.md +20 -0
- data/docs/DartUpstreamRequestPatch.md +20 -0
- data/docs/DebUpstream.md +27 -0
- data/docs/DebUpstreamRequest.md +24 -0
- data/docs/DebUpstreamRequestPatch.md +24 -0
- data/docs/DockerUpstream.md +23 -0
- data/docs/DockerUpstreamRequest.md +20 -0
- data/docs/DockerUpstreamRequestPatch.md +20 -0
- data/docs/HelmUpstream.md +23 -0
- data/docs/HelmUpstreamRequest.md +20 -0
- data/docs/HelmUpstreamRequestPatch.md +20 -0
- data/docs/MavenUpstream.md +23 -0
- data/docs/MavenUpstreamRequest.md +20 -0
- data/docs/MavenUpstreamRequestPatch.md +20 -0
- data/docs/NpmUpstream.md +23 -0
- data/docs/NpmUpstreamRequest.md +20 -0
- data/docs/NpmUpstreamRequestPatch.md +20 -0
- data/docs/NugetUpstream.md +23 -0
- data/docs/NugetUpstreamRequest.md +20 -0
- data/docs/NugetUpstreamRequestPatch.md +20 -0
- data/docs/OrgsApi.md +374 -0
- data/docs/PackageLicensePolicyEvaluationRequest.md +14 -0
- data/docs/PackageLicensePolicyEvaluationRequestRequest.md +7 -0
- data/docs/PackageVulnerabilityPolicyEvaluationRequest.md +14 -0
- data/docs/PackageVulnerabilityPolicyEvaluationRequestRequest.md +7 -0
- data/docs/PythonUpstream.md +23 -0
- data/docs/PythonUpstreamRequest.md +20 -0
- data/docs/PythonUpstreamRequestPatch.md +20 -0
- data/docs/ReposApi.md +3770 -0
- data/docs/RpmUpstream.md +25 -0
- data/docs/RpmUpstreamRequest.md +22 -0
- data/docs/RpmUpstreamRequestPatch.md +22 -0
- data/docs/RubyUpstream.md +23 -0
- data/docs/RubyUpstreamRequest.md +20 -0
- data/docs/RubyUpstreamRequestPatch.md +20 -0
- data/docs/StatusBasic.md +1 -1
- data/lib/cloudsmith-api/api/orgs_api.rb +388 -0
- data/lib/cloudsmith-api/api/repos_api.rb +3950 -0
- data/lib/cloudsmith-api/models/dart_upstream.rb +393 -0
- data/lib/cloudsmith-api/models/dart_upstream_request.rb +365 -0
- data/lib/cloudsmith-api/models/dart_upstream_request_patch.rb +355 -0
- data/lib/cloudsmith-api/models/deb_upstream.rb +440 -0
- data/lib/cloudsmith-api/models/deb_upstream_request.rb +412 -0
- data/lib/cloudsmith-api/models/deb_upstream_request_patch.rb +397 -0
- data/lib/cloudsmith-api/models/docker_upstream.rb +393 -0
- data/lib/cloudsmith-api/models/docker_upstream_request.rb +365 -0
- data/lib/cloudsmith-api/models/docker_upstream_request_patch.rb +355 -0
- data/lib/cloudsmith-api/models/helm_upstream.rb +393 -0
- data/lib/cloudsmith-api/models/helm_upstream_request.rb +365 -0
- data/lib/cloudsmith-api/models/helm_upstream_request_patch.rb +355 -0
- data/lib/cloudsmith-api/models/maven_upstream.rb +393 -0
- data/lib/cloudsmith-api/models/maven_upstream_request.rb +365 -0
- data/lib/cloudsmith-api/models/maven_upstream_request_patch.rb +355 -0
- data/lib/cloudsmith-api/models/npm_upstream.rb +393 -0
- data/lib/cloudsmith-api/models/npm_upstream_request.rb +365 -0
- data/lib/cloudsmith-api/models/npm_upstream_request_patch.rb +355 -0
- data/lib/cloudsmith-api/models/nuget_upstream.rb +393 -0
- data/lib/cloudsmith-api/models/nuget_upstream_request.rb +365 -0
- data/lib/cloudsmith-api/models/nuget_upstream_request_patch.rb +355 -0
- data/lib/cloudsmith-api/models/package_license_policy_evaluation_request.rb +274 -0
- data/lib/cloudsmith-api/models/package_license_policy_evaluation_request_request.rb +175 -0
- data/lib/cloudsmith-api/models/package_vulnerability_policy_evaluation_request.rb +274 -0
- data/lib/cloudsmith-api/models/package_vulnerability_policy_evaluation_request_request.rb +175 -0
- data/lib/cloudsmith-api/models/python_upstream.rb +393 -0
- data/lib/cloudsmith-api/models/python_upstream_request.rb +365 -0
- data/lib/cloudsmith-api/models/python_upstream_request_patch.rb +355 -0
- data/lib/cloudsmith-api/models/rpm_upstream.rb +418 -0
- data/lib/cloudsmith-api/models/rpm_upstream_request.rb +390 -0
- data/lib/cloudsmith-api/models/rpm_upstream_request_patch.rb +375 -0
- data/lib/cloudsmith-api/models/ruby_upstream.rb +393 -0
- data/lib/cloudsmith-api/models/ruby_upstream_request.rb +365 -0
- data/lib/cloudsmith-api/models/ruby_upstream_request_patch.rb +355 -0
- data/lib/cloudsmith-api/models/status_basic.rb +1 -1
- data/lib/cloudsmith-api/version.rb +1 -1
- data/lib/cloudsmith-api.rb +34 -0
- data/spec/api/orgs_api_spec.rb +86 -0
- data/spec/api/repos_api_spec.rb +870 -0
- data/spec/models/dart_upstream_request_patch_spec.rb +121 -0
- data/spec/models/dart_upstream_request_spec.rb +121 -0
- data/spec/models/dart_upstream_spec.rb +139 -0
- data/spec/models/deb_upstream_request_patch_spec.rb +145 -0
- data/spec/models/deb_upstream_request_spec.rb +145 -0
- data/spec/models/deb_upstream_spec.rb +163 -0
- data/spec/models/docker_upstream_request_patch_spec.rb +121 -0
- data/spec/models/docker_upstream_request_spec.rb +121 -0
- data/spec/models/docker_upstream_spec.rb +139 -0
- data/spec/models/helm_upstream_request_patch_spec.rb +121 -0
- data/spec/models/helm_upstream_request_spec.rb +121 -0
- data/spec/models/helm_upstream_spec.rb +139 -0
- data/spec/models/maven_upstream_request_patch_spec.rb +121 -0
- data/spec/models/maven_upstream_request_spec.rb +121 -0
- data/spec/models/maven_upstream_spec.rb +139 -0
- data/spec/models/npm_upstream_request_patch_spec.rb +121 -0
- data/spec/models/npm_upstream_request_spec.rb +121 -0
- data/spec/models/npm_upstream_spec.rb +139 -0
- data/spec/models/nuget_upstream_request_patch_spec.rb +121 -0
- data/spec/models/nuget_upstream_request_spec.rb +121 -0
- data/spec/models/nuget_upstream_spec.rb +139 -0
- data/spec/models/package_license_policy_evaluation_request_request_spec.rb +35 -0
- data/spec/models/package_license_policy_evaluation_request_spec.rb +81 -0
- data/spec/models/package_vulnerability_policy_evaluation_request_request_spec.rb +35 -0
- data/spec/models/package_vulnerability_policy_evaluation_request_spec.rb +81 -0
- data/spec/models/python_upstream_request_patch_spec.rb +121 -0
- data/spec/models/python_upstream_request_spec.rb +121 -0
- data/spec/models/python_upstream_spec.rb +139 -0
- data/spec/models/rpm_upstream_request_patch_spec.rb +133 -0
- data/spec/models/rpm_upstream_request_spec.rb +133 -0
- data/spec/models/rpm_upstream_spec.rb +151 -0
- data/spec/models/ruby_upstream_request_patch_spec.rb +121 -0
- data/spec/models/ruby_upstream_request_spec.rb +121 -0
- data/spec/models/ruby_upstream_spec.rb +139 -0
- data/vendor/bundle/ruby/2.6.0/cache/rspec-support-3.12.1.gem +0 -0
- data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/autotest-fsevent-0.2.20/gem_make.out +1 -1
- data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/ffi-1.15.5/gem_make.out +2 -2
- data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/json-2.6.3/gem_make.out +1 -1
- data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/json-2.6.3/mkmf.log +1 -1
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/Makefile +2 -2
- data/vendor/bundle/ruby/2.6.0/gems/json-2.6.3/ext/json/Makefile +2 -2
- data/vendor/bundle/ruby/2.6.0/gems/json-2.6.3/ext/json/ext/generator/Makefile +2 -2
- data/vendor/bundle/ruby/2.6.0/gems/json-2.6.3/ext/json/ext/parser/Makefile +2 -2
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/Changelog.md +9 -1
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/spec/shell_out.rb +3 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/version.rb +1 -1
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support.rb +8 -2
- data/vendor/bundle/ruby/2.6.0/specifications/{rspec-support-3.12.0.gemspec → rspec-support-3.12.1.gemspec} +5 -5
- metadata +176 -40
- data/vendor/bundle/ruby/2.6.0/cache/rspec-support-3.12.0.gem +0 -0
- /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/LICENSE.md +0 -0
- /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/README.md +0 -0
- /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/caller_filter.rb +0 -0
- /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/comparable_version.rb +0 -0
- /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/differ.rb +0 -0
- /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/directory_maker.rb +0 -0
- /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/encoded_string.rb +0 -0
- /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/fuzzy_matcher.rb +0 -0
- /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/hunk_generator.rb +0 -0
- /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/matcher_definition.rb +0 -0
- /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/method_signature_verifier.rb +0 -0
- /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/mutex.rb +0 -0
- /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/object_formatter.rb +0 -0
- /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/recursive_const_methods.rb +0 -0
- /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/reentrant_mutex.rb +0 -0
- /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/ruby_features.rb +0 -0
- /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/source/location.rb +0 -0
- /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/source/node.rb +0 -0
- /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/source/token.rb +0 -0
- /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/source.rb +0 -0
- /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/spec/deprecation_helpers.rb +0 -0
- /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/spec/diff_helpers.rb +0 -0
- /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/spec/formatting_support.rb +0 -0
- /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/spec/in_sub_process.rb +0 -0
- /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/spec/library_wide_checks.rb +0 -0
- /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/spec/stderr_splitter.rb +0 -0
- /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/spec/string_matcher.rb +0 -0
- /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/spec/with_isolated_directory.rb +0 -0
- /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/spec/with_isolated_stderr.rb +0 -0
- /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/spec.rb +0 -0
- /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/warnings.rb +0 -0
- /data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.12.0 → rspec-support-3.12.1}/lib/rspec/support/with_keywords_when_needed.rb +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4ffe5e554e0aaa2c7091313ed37989ae485dc66a18ccb296dd8ef17b86d2cd3a
|
4
|
+
data.tar.gz: 3bb8036b80fc7d78052f72d426fb77e606037c10a7c08f97cfbbbbd1f857a009
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f8d0e212e88980e3c80da8e22374901ecbb24efec363e2105b575fd25693f2d66eacd6bd31d40859b75a98793a61f9ba0908ff97dceee271b183bac0ee79416b
|
7
|
+
data.tar.gz: 62d814f3b7268cca4559de091cdfa5819fddc63279b9d32557ff6db28f7646c69f41346c1dab626a8356d5557afe136d96398267436ba50a94c3f82683f15b6e
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
cloudsmith-api (2.0.
|
4
|
+
cloudsmith-api (2.0.7)
|
5
5
|
addressable (~> 2.3, >= 2.3.0)
|
6
6
|
json (~> 2.1, >= 2.1.0)
|
7
7
|
typhoeus (~> 1.0, >= 1.0.1)
|
@@ -41,7 +41,7 @@ GEM
|
|
41
41
|
rspec-mocks (3.12.5)
|
42
42
|
diff-lcs (>= 1.2.0, < 2.0)
|
43
43
|
rspec-support (~> 3.12.0)
|
44
|
-
rspec-support (3.12.
|
44
|
+
rspec-support (3.12.1)
|
45
45
|
sys-uname (1.2.3)
|
46
46
|
ffi (~> 1.1)
|
47
47
|
typhoeus (1.4.0)
|
@@ -67,4 +67,4 @@ DEPENDENCIES
|
|
67
67
|
webmock (~> 1.24, >= 1.24.3)
|
68
68
|
|
69
69
|
BUNDLED WITH
|
70
|
-
2.4.
|
70
|
+
2.4.14
|
data/README.md
CHANGED
@@ -7,7 +7,7 @@ The API to the Cloudsmith Service
|
|
7
7
|
This SDK is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:
|
8
8
|
|
9
9
|
- API version: v1
|
10
|
-
- Package version: 2.0.
|
10
|
+
- Package version: 2.0.7
|
11
11
|
- Build package: io.swagger.codegen.languages.RubyClientCodegen
|
12
12
|
For more information, please visit [https://help.cloudsmith.io](https://help.cloudsmith.io)
|
13
13
|
|
@@ -24,15 +24,15 @@ gem build cloudsmith-api.gemspec
|
|
24
24
|
Then either install the gem locally:
|
25
25
|
|
26
26
|
```shell
|
27
|
-
gem install ./cloudsmith-api-2.0.
|
27
|
+
gem install ./cloudsmith-api-2.0.7.gem
|
28
28
|
```
|
29
|
-
(for development, run `gem install --dev ./cloudsmith-api-2.0.
|
29
|
+
(for development, run `gem install --dev ./cloudsmith-api-2.0.7.gem` to install the development dependencies)
|
30
30
|
|
31
31
|
or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
|
32
32
|
|
33
33
|
Finally add this to the Gemfile:
|
34
34
|
|
35
|
-
gem 'cloudsmith-api', '~> 2.0.
|
35
|
+
gem 'cloudsmith-api', '~> 2.0.7'
|
36
36
|
|
37
37
|
### Install from Git
|
38
38
|
|
@@ -124,6 +124,9 @@ Class | Method | HTTP request | Description
|
|
124
124
|
*CloudsmithApi::OrgsApi* | [**orgs_invites_resend**](docs/OrgsApi.md#orgs_invites_resend) | **POST** /orgs/{org}/invites/{slug_perm}/resend/ | Resend an organization invite.
|
125
125
|
*CloudsmithApi::OrgsApi* | [**orgs_license_policy_create**](docs/OrgsApi.md#orgs_license_policy_create) | **POST** /orgs/{org}/license-policy/ | Create a package license policy.
|
126
126
|
*CloudsmithApi::OrgsApi* | [**orgs_license_policy_delete**](docs/OrgsApi.md#orgs_license_policy_delete) | **DELETE** /orgs/{org}/license-policy/{slug_perm}/ | Delete a package license policy.
|
127
|
+
*CloudsmithApi::OrgsApi* | [**orgs_license_policy_evaluation_create**](docs/OrgsApi.md#orgs_license_policy_evaluation_create) | **POST** /orgs/{org}/license-policy/{policy_slug_perm}/evaluation/ | Create an evaluation request for this policy.
|
128
|
+
*CloudsmithApi::OrgsApi* | [**orgs_license_policy_evaluation_list**](docs/OrgsApi.md#orgs_license_policy_evaluation_list) | **GET** /orgs/{org}/license-policy/{policy_slug_perm}/evaluation/ | List evaluation requests for this policy.
|
129
|
+
*CloudsmithApi::OrgsApi* | [**orgs_license_policy_evaluation_read**](docs/OrgsApi.md#orgs_license_policy_evaluation_read) | **GET** /orgs/{org}/license-policy/{policy_slug_perm}/evaluation/{slug_perm}/ | Retrieve an evaluation request for this policy.
|
127
130
|
*CloudsmithApi::OrgsApi* | [**orgs_license_policy_list**](docs/OrgsApi.md#orgs_license_policy_list) | **GET** /orgs/{org}/license-policy/ | Get a list of all package license policies.
|
128
131
|
*CloudsmithApi::OrgsApi* | [**orgs_license_policy_partial_update**](docs/OrgsApi.md#orgs_license_policy_partial_update) | **PATCH** /orgs/{org}/license-policy/{slug_perm}/ | Partially update a package license policy.
|
129
132
|
*CloudsmithApi::OrgsApi* | [**orgs_license_policy_read**](docs/OrgsApi.md#orgs_license_policy_read) | **GET** /orgs/{org}/license-policy/{slug_perm}/ | Get a package license policy.
|
@@ -155,6 +158,9 @@ Class | Method | HTTP request | Description
|
|
155
158
|
*CloudsmithApi::OrgsApi* | [**orgs_teams_read**](docs/OrgsApi.md#orgs_teams_read) | **GET** /orgs/{org}/teams/{team}/ | Get the details of a specific team within an organization.
|
156
159
|
*CloudsmithApi::OrgsApi* | [**orgs_vulnerability_policy_create**](docs/OrgsApi.md#orgs_vulnerability_policy_create) | **POST** /orgs/{org}/vulnerability-policy/ | Create a package vulnerability policy.
|
157
160
|
*CloudsmithApi::OrgsApi* | [**orgs_vulnerability_policy_delete**](docs/OrgsApi.md#orgs_vulnerability_policy_delete) | **DELETE** /orgs/{org}/vulnerability-policy/{slug_perm}/ | Delete a package vulnerability policy.
|
161
|
+
*CloudsmithApi::OrgsApi* | [**orgs_vulnerability_policy_evaluation_create**](docs/OrgsApi.md#orgs_vulnerability_policy_evaluation_create) | **POST** /orgs/{org}/vulnerability-policy/{policy_slug_perm}/evaluation/ | Create an evaluation request for this policy.
|
162
|
+
*CloudsmithApi::OrgsApi* | [**orgs_vulnerability_policy_evaluation_list**](docs/OrgsApi.md#orgs_vulnerability_policy_evaluation_list) | **GET** /orgs/{org}/vulnerability-policy/{policy_slug_perm}/evaluation/ | List evaluation requests for this policy.
|
163
|
+
*CloudsmithApi::OrgsApi* | [**orgs_vulnerability_policy_evaluation_read**](docs/OrgsApi.md#orgs_vulnerability_policy_evaluation_read) | **GET** /orgs/{org}/vulnerability-policy/{policy_slug_perm}/evaluation/{slug_perm}/ | Retrieve an evaluation request for this policy.
|
158
164
|
*CloudsmithApi::OrgsApi* | [**orgs_vulnerability_policy_list**](docs/OrgsApi.md#orgs_vulnerability_policy_list) | **GET** /orgs/{org}/vulnerability-policy/ | Get a list of all package vulnerability policies.
|
159
165
|
*CloudsmithApi::OrgsApi* | [**orgs_vulnerability_policy_partial_update**](docs/OrgsApi.md#orgs_vulnerability_policy_partial_update) | **PATCH** /orgs/{org}/vulnerability-policy/{slug_perm}/ | Partially update a package vulnerability policy.
|
160
166
|
*CloudsmithApi::OrgsApi* | [**orgs_vulnerability_policy_read**](docs/OrgsApi.md#orgs_vulnerability_policy_read) | **GET** /orgs/{org}/vulnerability-policy/{slug_perm}/ | Get a package vulnerability policy.
|
@@ -246,6 +252,66 @@ Class | Method | HTTP request | Description
|
|
246
252
|
*CloudsmithApi::ReposApi* | [**repos_rsa_create**](docs/ReposApi.md#repos_rsa_create) | **POST** /repos/{owner}/{identifier}/rsa/ | Set the active RSA key for the Repository.
|
247
253
|
*CloudsmithApi::ReposApi* | [**repos_rsa_list**](docs/ReposApi.md#repos_rsa_list) | **GET** /repos/{owner}/{identifier}/rsa/ | Retrieve the active RSA key for the Repository.
|
248
254
|
*CloudsmithApi::ReposApi* | [**repos_rsa_regenerate**](docs/ReposApi.md#repos_rsa_regenerate) | **POST** /repos/{owner}/{identifier}/rsa/regenerate/ | Regenerate RSA Key for the Repository.
|
255
|
+
*CloudsmithApi::ReposApi* | [**repos_upstream_dart_create**](docs/ReposApi.md#repos_upstream_dart_create) | **POST** /repos/{owner}/{identifier}/upstream/dart/ | Create a Dart upstream config for this repository.
|
256
|
+
*CloudsmithApi::ReposApi* | [**repos_upstream_dart_delete**](docs/ReposApi.md#repos_upstream_dart_delete) | **DELETE** /repos/{owner}/{identifier}/upstream/dart/{slug_perm}/ | Delete a Dart upstream config for this repository.
|
257
|
+
*CloudsmithApi::ReposApi* | [**repos_upstream_dart_list**](docs/ReposApi.md#repos_upstream_dart_list) | **GET** /repos/{owner}/{identifier}/upstream/dart/ | List Dart upstream configs for this repository.
|
258
|
+
*CloudsmithApi::ReposApi* | [**repos_upstream_dart_partial_update**](docs/ReposApi.md#repos_upstream_dart_partial_update) | **PATCH** /repos/{owner}/{identifier}/upstream/dart/{slug_perm}/ | Partially update a Dart upstream config for this repository.
|
259
|
+
*CloudsmithApi::ReposApi* | [**repos_upstream_dart_read**](docs/ReposApi.md#repos_upstream_dart_read) | **GET** /repos/{owner}/{identifier}/upstream/dart/{slug_perm}/ | Retrieve a Dart upstream config for this repository.
|
260
|
+
*CloudsmithApi::ReposApi* | [**repos_upstream_dart_update**](docs/ReposApi.md#repos_upstream_dart_update) | **PUT** /repos/{owner}/{identifier}/upstream/dart/{slug_perm}/ | Update a Dart upstream config for this repository.
|
261
|
+
*CloudsmithApi::ReposApi* | [**repos_upstream_deb_create**](docs/ReposApi.md#repos_upstream_deb_create) | **POST** /repos/{owner}/{identifier}/upstream/deb/ | Create a Debian upstream config for this repository.
|
262
|
+
*CloudsmithApi::ReposApi* | [**repos_upstream_deb_delete**](docs/ReposApi.md#repos_upstream_deb_delete) | **DELETE** /repos/{owner}/{identifier}/upstream/deb/{slug_perm}/ | Delete a Debian upstream config for this repository.
|
263
|
+
*CloudsmithApi::ReposApi* | [**repos_upstream_deb_list**](docs/ReposApi.md#repos_upstream_deb_list) | **GET** /repos/{owner}/{identifier}/upstream/deb/ | List Debian upstream configs for this repository.
|
264
|
+
*CloudsmithApi::ReposApi* | [**repos_upstream_deb_partial_update**](docs/ReposApi.md#repos_upstream_deb_partial_update) | **PATCH** /repos/{owner}/{identifier}/upstream/deb/{slug_perm}/ | Partially update a Debian upstream config for this repository.
|
265
|
+
*CloudsmithApi::ReposApi* | [**repos_upstream_deb_read**](docs/ReposApi.md#repos_upstream_deb_read) | **GET** /repos/{owner}/{identifier}/upstream/deb/{slug_perm}/ | Retrieve a Debian upstream config for this repository.
|
266
|
+
*CloudsmithApi::ReposApi* | [**repos_upstream_deb_update**](docs/ReposApi.md#repos_upstream_deb_update) | **PUT** /repos/{owner}/{identifier}/upstream/deb/{slug_perm}/ | Update a Debian upstream config for this repository.
|
267
|
+
*CloudsmithApi::ReposApi* | [**repos_upstream_docker_create**](docs/ReposApi.md#repos_upstream_docker_create) | **POST** /repos/{owner}/{identifier}/upstream/docker/ | Create a Docker upstream config for this repository.
|
268
|
+
*CloudsmithApi::ReposApi* | [**repos_upstream_docker_delete**](docs/ReposApi.md#repos_upstream_docker_delete) | **DELETE** /repos/{owner}/{identifier}/upstream/docker/{slug_perm}/ | Delete a Docker upstream config for this repository.
|
269
|
+
*CloudsmithApi::ReposApi* | [**repos_upstream_docker_list**](docs/ReposApi.md#repos_upstream_docker_list) | **GET** /repos/{owner}/{identifier}/upstream/docker/ | List Docker upstream configs for this repository.
|
270
|
+
*CloudsmithApi::ReposApi* | [**repos_upstream_docker_partial_update**](docs/ReposApi.md#repos_upstream_docker_partial_update) | **PATCH** /repos/{owner}/{identifier}/upstream/docker/{slug_perm}/ | Partially update a Docker upstream config for this repository.
|
271
|
+
*CloudsmithApi::ReposApi* | [**repos_upstream_docker_read**](docs/ReposApi.md#repos_upstream_docker_read) | **GET** /repos/{owner}/{identifier}/upstream/docker/{slug_perm}/ | Retrieve a Docker upstream config for this repository.
|
272
|
+
*CloudsmithApi::ReposApi* | [**repos_upstream_docker_update**](docs/ReposApi.md#repos_upstream_docker_update) | **PUT** /repos/{owner}/{identifier}/upstream/docker/{slug_perm}/ | Update a Docker upstream config for this repository.
|
273
|
+
*CloudsmithApi::ReposApi* | [**repos_upstream_helm_create**](docs/ReposApi.md#repos_upstream_helm_create) | **POST** /repos/{owner}/{identifier}/upstream/helm/ | Create a Helm upstream config for this repository.
|
274
|
+
*CloudsmithApi::ReposApi* | [**repos_upstream_helm_delete**](docs/ReposApi.md#repos_upstream_helm_delete) | **DELETE** /repos/{owner}/{identifier}/upstream/helm/{slug_perm}/ | Delete a Helm upstream config for this repository.
|
275
|
+
*CloudsmithApi::ReposApi* | [**repos_upstream_helm_list**](docs/ReposApi.md#repos_upstream_helm_list) | **GET** /repos/{owner}/{identifier}/upstream/helm/ | List Helm upstream configs for this repository.
|
276
|
+
*CloudsmithApi::ReposApi* | [**repos_upstream_helm_partial_update**](docs/ReposApi.md#repos_upstream_helm_partial_update) | **PATCH** /repos/{owner}/{identifier}/upstream/helm/{slug_perm}/ | Partially update a Helm upstream config for this repository.
|
277
|
+
*CloudsmithApi::ReposApi* | [**repos_upstream_helm_read**](docs/ReposApi.md#repos_upstream_helm_read) | **GET** /repos/{owner}/{identifier}/upstream/helm/{slug_perm}/ | Retrieve a Helm upstream config for this repository.
|
278
|
+
*CloudsmithApi::ReposApi* | [**repos_upstream_helm_update**](docs/ReposApi.md#repos_upstream_helm_update) | **PUT** /repos/{owner}/{identifier}/upstream/helm/{slug_perm}/ | Update a Helm upstream config for this repository.
|
279
|
+
*CloudsmithApi::ReposApi* | [**repos_upstream_maven_create**](docs/ReposApi.md#repos_upstream_maven_create) | **POST** /repos/{owner}/{identifier}/upstream/maven/ | Create a Maven upstream config for this repository.
|
280
|
+
*CloudsmithApi::ReposApi* | [**repos_upstream_maven_delete**](docs/ReposApi.md#repos_upstream_maven_delete) | **DELETE** /repos/{owner}/{identifier}/upstream/maven/{slug_perm}/ | Delete a Maven upstream config for this repository.
|
281
|
+
*CloudsmithApi::ReposApi* | [**repos_upstream_maven_list**](docs/ReposApi.md#repos_upstream_maven_list) | **GET** /repos/{owner}/{identifier}/upstream/maven/ | List Maven upstream configs for this repository.
|
282
|
+
*CloudsmithApi::ReposApi* | [**repos_upstream_maven_partial_update**](docs/ReposApi.md#repos_upstream_maven_partial_update) | **PATCH** /repos/{owner}/{identifier}/upstream/maven/{slug_perm}/ | Partially update a Maven upstream config for this repository.
|
283
|
+
*CloudsmithApi::ReposApi* | [**repos_upstream_maven_read**](docs/ReposApi.md#repos_upstream_maven_read) | **GET** /repos/{owner}/{identifier}/upstream/maven/{slug_perm}/ | Retrieve a Maven upstream config for this repository.
|
284
|
+
*CloudsmithApi::ReposApi* | [**repos_upstream_maven_update**](docs/ReposApi.md#repos_upstream_maven_update) | **PUT** /repos/{owner}/{identifier}/upstream/maven/{slug_perm}/ | Update a Maven upstream config for this repository.
|
285
|
+
*CloudsmithApi::ReposApi* | [**repos_upstream_npm_create**](docs/ReposApi.md#repos_upstream_npm_create) | **POST** /repos/{owner}/{identifier}/upstream/npm/ | Create a npm upstream config for this repository.
|
286
|
+
*CloudsmithApi::ReposApi* | [**repos_upstream_npm_delete**](docs/ReposApi.md#repos_upstream_npm_delete) | **DELETE** /repos/{owner}/{identifier}/upstream/npm/{slug_perm}/ | Delete a npm upstream config for this repository.
|
287
|
+
*CloudsmithApi::ReposApi* | [**repos_upstream_npm_list**](docs/ReposApi.md#repos_upstream_npm_list) | **GET** /repos/{owner}/{identifier}/upstream/npm/ | List npm upstream configs for this repository.
|
288
|
+
*CloudsmithApi::ReposApi* | [**repos_upstream_npm_partial_update**](docs/ReposApi.md#repos_upstream_npm_partial_update) | **PATCH** /repos/{owner}/{identifier}/upstream/npm/{slug_perm}/ | Partially update a npm upstream config for this repository.
|
289
|
+
*CloudsmithApi::ReposApi* | [**repos_upstream_npm_read**](docs/ReposApi.md#repos_upstream_npm_read) | **GET** /repos/{owner}/{identifier}/upstream/npm/{slug_perm}/ | Retrieve a npm upstream config for this repository.
|
290
|
+
*CloudsmithApi::ReposApi* | [**repos_upstream_npm_update**](docs/ReposApi.md#repos_upstream_npm_update) | **PUT** /repos/{owner}/{identifier}/upstream/npm/{slug_perm}/ | Update a npm upstream config for this repository.
|
291
|
+
*CloudsmithApi::ReposApi* | [**repos_upstream_nuget_create**](docs/ReposApi.md#repos_upstream_nuget_create) | **POST** /repos/{owner}/{identifier}/upstream/nuget/ | Create a NuGet upstream config for this repository.
|
292
|
+
*CloudsmithApi::ReposApi* | [**repos_upstream_nuget_delete**](docs/ReposApi.md#repos_upstream_nuget_delete) | **DELETE** /repos/{owner}/{identifier}/upstream/nuget/{slug_perm}/ | Delete a NuGet upstream config for this repository.
|
293
|
+
*CloudsmithApi::ReposApi* | [**repos_upstream_nuget_list**](docs/ReposApi.md#repos_upstream_nuget_list) | **GET** /repos/{owner}/{identifier}/upstream/nuget/ | List NuGet upstream configs for this repository.
|
294
|
+
*CloudsmithApi::ReposApi* | [**repos_upstream_nuget_partial_update**](docs/ReposApi.md#repos_upstream_nuget_partial_update) | **PATCH** /repos/{owner}/{identifier}/upstream/nuget/{slug_perm}/ | Partially update a NuGet upstream config for this repository.
|
295
|
+
*CloudsmithApi::ReposApi* | [**repos_upstream_nuget_read**](docs/ReposApi.md#repos_upstream_nuget_read) | **GET** /repos/{owner}/{identifier}/upstream/nuget/{slug_perm}/ | Retrieve a NuGet upstream config for this repository.
|
296
|
+
*CloudsmithApi::ReposApi* | [**repos_upstream_nuget_update**](docs/ReposApi.md#repos_upstream_nuget_update) | **PUT** /repos/{owner}/{identifier}/upstream/nuget/{slug_perm}/ | Update a NuGet upstream config for this repository.
|
297
|
+
*CloudsmithApi::ReposApi* | [**repos_upstream_python_create**](docs/ReposApi.md#repos_upstream_python_create) | **POST** /repos/{owner}/{identifier}/upstream/python/ | Create a Python upstream config for this repository.
|
298
|
+
*CloudsmithApi::ReposApi* | [**repos_upstream_python_delete**](docs/ReposApi.md#repos_upstream_python_delete) | **DELETE** /repos/{owner}/{identifier}/upstream/python/{slug_perm}/ | Delete a Python upstream config for this repository.
|
299
|
+
*CloudsmithApi::ReposApi* | [**repos_upstream_python_list**](docs/ReposApi.md#repos_upstream_python_list) | **GET** /repos/{owner}/{identifier}/upstream/python/ | List Python upstream configs for this repository.
|
300
|
+
*CloudsmithApi::ReposApi* | [**repos_upstream_python_partial_update**](docs/ReposApi.md#repos_upstream_python_partial_update) | **PATCH** /repos/{owner}/{identifier}/upstream/python/{slug_perm}/ | Partially update a Python upstream config for this repository.
|
301
|
+
*CloudsmithApi::ReposApi* | [**repos_upstream_python_read**](docs/ReposApi.md#repos_upstream_python_read) | **GET** /repos/{owner}/{identifier}/upstream/python/{slug_perm}/ | Retrieve a Python upstream config for this repository.
|
302
|
+
*CloudsmithApi::ReposApi* | [**repos_upstream_python_update**](docs/ReposApi.md#repos_upstream_python_update) | **PUT** /repos/{owner}/{identifier}/upstream/python/{slug_perm}/ | Update a Python upstream config for this repository.
|
303
|
+
*CloudsmithApi::ReposApi* | [**repos_upstream_rpm_create**](docs/ReposApi.md#repos_upstream_rpm_create) | **POST** /repos/{owner}/{identifier}/upstream/rpm/ | Create a RedHat upstream config for this repository.
|
304
|
+
*CloudsmithApi::ReposApi* | [**repos_upstream_rpm_delete**](docs/ReposApi.md#repos_upstream_rpm_delete) | **DELETE** /repos/{owner}/{identifier}/upstream/rpm/{slug_perm}/ | Delete a RedHat upstream config for this repository.
|
305
|
+
*CloudsmithApi::ReposApi* | [**repos_upstream_rpm_list**](docs/ReposApi.md#repos_upstream_rpm_list) | **GET** /repos/{owner}/{identifier}/upstream/rpm/ | List RedHat upstream configs for this repository.
|
306
|
+
*CloudsmithApi::ReposApi* | [**repos_upstream_rpm_partial_update**](docs/ReposApi.md#repos_upstream_rpm_partial_update) | **PATCH** /repos/{owner}/{identifier}/upstream/rpm/{slug_perm}/ | Partially update a RedHat upstream config for this repository.
|
307
|
+
*CloudsmithApi::ReposApi* | [**repos_upstream_rpm_read**](docs/ReposApi.md#repos_upstream_rpm_read) | **GET** /repos/{owner}/{identifier}/upstream/rpm/{slug_perm}/ | Retrieve a RedHat upstream config for this repository.
|
308
|
+
*CloudsmithApi::ReposApi* | [**repos_upstream_rpm_update**](docs/ReposApi.md#repos_upstream_rpm_update) | **PUT** /repos/{owner}/{identifier}/upstream/rpm/{slug_perm}/ | Update a RedHat upstream config for this repository.
|
309
|
+
*CloudsmithApi::ReposApi* | [**repos_upstream_ruby_create**](docs/ReposApi.md#repos_upstream_ruby_create) | **POST** /repos/{owner}/{identifier}/upstream/ruby/ | Create a Ruby upstream config for this repository.
|
310
|
+
*CloudsmithApi::ReposApi* | [**repos_upstream_ruby_delete**](docs/ReposApi.md#repos_upstream_ruby_delete) | **DELETE** /repos/{owner}/{identifier}/upstream/ruby/{slug_perm}/ | Delete a Ruby upstream config for this repository.
|
311
|
+
*CloudsmithApi::ReposApi* | [**repos_upstream_ruby_list**](docs/ReposApi.md#repos_upstream_ruby_list) | **GET** /repos/{owner}/{identifier}/upstream/ruby/ | List Ruby upstream configs for this repository.
|
312
|
+
*CloudsmithApi::ReposApi* | [**repos_upstream_ruby_partial_update**](docs/ReposApi.md#repos_upstream_ruby_partial_update) | **PATCH** /repos/{owner}/{identifier}/upstream/ruby/{slug_perm}/ | Partially update a Ruby upstream config for this repository.
|
313
|
+
*CloudsmithApi::ReposApi* | [**repos_upstream_ruby_read**](docs/ReposApi.md#repos_upstream_ruby_read) | **GET** /repos/{owner}/{identifier}/upstream/ruby/{slug_perm}/ | Retrieve a Ruby upstream config for this repository.
|
314
|
+
*CloudsmithApi::ReposApi* | [**repos_upstream_ruby_update**](docs/ReposApi.md#repos_upstream_ruby_update) | **PUT** /repos/{owner}/{identifier}/upstream/ruby/{slug_perm}/ | Update a Ruby upstream config for this repository.
|
249
315
|
*CloudsmithApi::ReposApi* | [**repos_user_list**](docs/ReposApi.md#repos_user_list) | **GET** /repos/ | Get a list of all repositories associated with current user.
|
250
316
|
*CloudsmithApi::StatusApi* | [**status_check_basic**](docs/StatusApi.md#status_check_basic) | **GET** /status/check/basic/ | Endpoint to check basic API connectivity.
|
251
317
|
*CloudsmithApi::StorageRegionsApi* | [**storage_regions_list**](docs/StorageRegionsApi.md#storage_regions_list) | **GET** /storage-regions/ | Get a list of all available storage regions.
|
@@ -290,13 +356,22 @@ Class | Method | HTTP request | Description
|
|
290
356
|
- [CloudsmithApi::CranPackageUploadRequest](docs/CranPackageUploadRequest.md)
|
291
357
|
- [CloudsmithApi::DartPackageUpload](docs/DartPackageUpload.md)
|
292
358
|
- [CloudsmithApi::DartPackageUploadRequest](docs/DartPackageUploadRequest.md)
|
359
|
+
- [CloudsmithApi::DartUpstream](docs/DartUpstream.md)
|
360
|
+
- [CloudsmithApi::DartUpstreamRequest](docs/DartUpstreamRequest.md)
|
361
|
+
- [CloudsmithApi::DartUpstreamRequestPatch](docs/DartUpstreamRequestPatch.md)
|
293
362
|
- [CloudsmithApi::DebPackageUpload](docs/DebPackageUpload.md)
|
294
363
|
- [CloudsmithApi::DebPackageUploadRequest](docs/DebPackageUploadRequest.md)
|
364
|
+
- [CloudsmithApi::DebUpstream](docs/DebUpstream.md)
|
365
|
+
- [CloudsmithApi::DebUpstreamRequest](docs/DebUpstreamRequest.md)
|
366
|
+
- [CloudsmithApi::DebUpstreamRequestPatch](docs/DebUpstreamRequestPatch.md)
|
295
367
|
- [CloudsmithApi::Distribution](docs/Distribution.md)
|
296
368
|
- [CloudsmithApi::DistributionFull](docs/DistributionFull.md)
|
297
369
|
- [CloudsmithApi::DistributionVersion](docs/DistributionVersion.md)
|
298
370
|
- [CloudsmithApi::DockerPackageUpload](docs/DockerPackageUpload.md)
|
299
371
|
- [CloudsmithApi::DockerPackageUploadRequest](docs/DockerPackageUploadRequest.md)
|
372
|
+
- [CloudsmithApi::DockerUpstream](docs/DockerUpstream.md)
|
373
|
+
- [CloudsmithApi::DockerUpstreamRequest](docs/DockerUpstreamRequest.md)
|
374
|
+
- [CloudsmithApi::DockerUpstreamRequestPatch](docs/DockerUpstreamRequestPatch.md)
|
300
375
|
- [CloudsmithApi::EntitlementUsageMetrics](docs/EntitlementUsageMetrics.md)
|
301
376
|
- [CloudsmithApi::ErrorDetail](docs/ErrorDetail.md)
|
302
377
|
- [CloudsmithApi::Eula](docs/Eula.md)
|
@@ -307,6 +382,9 @@ Class | Method | HTTP request | Description
|
|
307
382
|
- [CloudsmithApi::GoPackageUploadRequest](docs/GoPackageUploadRequest.md)
|
308
383
|
- [CloudsmithApi::HelmPackageUpload](docs/HelmPackageUpload.md)
|
309
384
|
- [CloudsmithApi::HelmPackageUploadRequest](docs/HelmPackageUploadRequest.md)
|
385
|
+
- [CloudsmithApi::HelmUpstream](docs/HelmUpstream.md)
|
386
|
+
- [CloudsmithApi::HelmUpstreamRequest](docs/HelmUpstreamRequest.md)
|
387
|
+
- [CloudsmithApi::HelmUpstreamRequestPatch](docs/HelmUpstreamRequestPatch.md)
|
310
388
|
- [CloudsmithApi::HexPackageUpload](docs/HexPackageUpload.md)
|
311
389
|
- [CloudsmithApi::HexPackageUploadRequest](docs/HexPackageUploadRequest.md)
|
312
390
|
- [CloudsmithApi::History](docs/History.md)
|
@@ -316,6 +394,9 @@ Class | Method | HTTP request | Description
|
|
316
394
|
- [CloudsmithApi::LuarocksPackageUploadRequest](docs/LuarocksPackageUploadRequest.md)
|
317
395
|
- [CloudsmithApi::MavenPackageUpload](docs/MavenPackageUpload.md)
|
318
396
|
- [CloudsmithApi::MavenPackageUploadRequest](docs/MavenPackageUploadRequest.md)
|
397
|
+
- [CloudsmithApi::MavenUpstream](docs/MavenUpstream.md)
|
398
|
+
- [CloudsmithApi::MavenUpstreamRequest](docs/MavenUpstreamRequest.md)
|
399
|
+
- [CloudsmithApi::MavenUpstreamRequestPatch](docs/MavenUpstreamRequestPatch.md)
|
319
400
|
- [CloudsmithApi::Namespace](docs/Namespace.md)
|
320
401
|
- [CloudsmithApi::NamespaceAuditLog](docs/NamespaceAuditLog.md)
|
321
402
|
- [CloudsmithApi::NestedLicensePolicy](docs/NestedLicensePolicy.md)
|
@@ -323,8 +404,14 @@ Class | Method | HTTP request | Description
|
|
323
404
|
- [CloudsmithApi::NestedVulnerabilityScanResults](docs/NestedVulnerabilityScanResults.md)
|
324
405
|
- [CloudsmithApi::NpmPackageUpload](docs/NpmPackageUpload.md)
|
325
406
|
- [CloudsmithApi::NpmPackageUploadRequest](docs/NpmPackageUploadRequest.md)
|
407
|
+
- [CloudsmithApi::NpmUpstream](docs/NpmUpstream.md)
|
408
|
+
- [CloudsmithApi::NpmUpstreamRequest](docs/NpmUpstreamRequest.md)
|
409
|
+
- [CloudsmithApi::NpmUpstreamRequestPatch](docs/NpmUpstreamRequestPatch.md)
|
326
410
|
- [CloudsmithApi::NugetPackageUpload](docs/NugetPackageUpload.md)
|
327
411
|
- [CloudsmithApi::NugetPackageUploadRequest](docs/NugetPackageUploadRequest.md)
|
412
|
+
- [CloudsmithApi::NugetUpstream](docs/NugetUpstream.md)
|
413
|
+
- [CloudsmithApi::NugetUpstreamRequest](docs/NugetUpstreamRequest.md)
|
414
|
+
- [CloudsmithApi::NugetUpstreamRequestPatch](docs/NugetUpstreamRequestPatch.md)
|
328
415
|
- [CloudsmithApi::Organization](docs/Organization.md)
|
329
416
|
- [CloudsmithApi::OrganizationGroupSync](docs/OrganizationGroupSync.md)
|
330
417
|
- [CloudsmithApi::OrganizationGroupSyncRequest](docs/OrganizationGroupSyncRequest.md)
|
@@ -356,6 +443,8 @@ Class | Method | HTTP request | Description
|
|
356
443
|
- [CloudsmithApi::PackageFilePartsUpload](docs/PackageFilePartsUpload.md)
|
357
444
|
- [CloudsmithApi::PackageFileUpload](docs/PackageFileUpload.md)
|
358
445
|
- [CloudsmithApi::PackageFileUploadRequest](docs/PackageFileUploadRequest.md)
|
446
|
+
- [CloudsmithApi::PackageLicensePolicyEvaluationRequest](docs/PackageLicensePolicyEvaluationRequest.md)
|
447
|
+
- [CloudsmithApi::PackageLicensePolicyEvaluationRequestRequest](docs/PackageLicensePolicyEvaluationRequestRequest.md)
|
359
448
|
- [CloudsmithApi::PackageLicensePolicyViolationLog](docs/PackageLicensePolicyViolationLog.md)
|
360
449
|
- [CloudsmithApi::PackageLicensePolicyViolationLogCursorPage](docs/PackageLicensePolicyViolationLogCursorPage.md)
|
361
450
|
- [CloudsmithApi::PackageMove](docs/PackageMove.md)
|
@@ -369,10 +458,15 @@ Class | Method | HTTP request | Description
|
|
369
458
|
- [CloudsmithApi::PackageUsageMetrics](docs/PackageUsageMetrics.md)
|
370
459
|
- [CloudsmithApi::PackageVersionBadge](docs/PackageVersionBadge.md)
|
371
460
|
- [CloudsmithApi::PackageVulnerability](docs/PackageVulnerability.md)
|
461
|
+
- [CloudsmithApi::PackageVulnerabilityPolicyEvaluationRequest](docs/PackageVulnerabilityPolicyEvaluationRequest.md)
|
462
|
+
- [CloudsmithApi::PackageVulnerabilityPolicyEvaluationRequestRequest](docs/PackageVulnerabilityPolicyEvaluationRequestRequest.md)
|
372
463
|
- [CloudsmithApi::PackageVulnerabilityPolicyViolationLog](docs/PackageVulnerabilityPolicyViolationLog.md)
|
373
464
|
- [CloudsmithApi::PackageVulnerabilityPolicyViolationLogCursorPage](docs/PackageVulnerabilityPolicyViolationLogCursorPage.md)
|
374
465
|
- [CloudsmithApi::PythonPackageUpload](docs/PythonPackageUpload.md)
|
375
466
|
- [CloudsmithApi::PythonPackageUploadRequest](docs/PythonPackageUploadRequest.md)
|
467
|
+
- [CloudsmithApi::PythonUpstream](docs/PythonUpstream.md)
|
468
|
+
- [CloudsmithApi::PythonUpstreamRequest](docs/PythonUpstreamRequest.md)
|
469
|
+
- [CloudsmithApi::PythonUpstreamRequestPatch](docs/PythonUpstreamRequestPatch.md)
|
376
470
|
- [CloudsmithApi::Quota](docs/Quota.md)
|
377
471
|
- [CloudsmithApi::QuotaHistory](docs/QuotaHistory.md)
|
378
472
|
- [CloudsmithApi::RateCheck](docs/RateCheck.md)
|
@@ -415,8 +509,14 @@ Class | Method | HTTP request | Description
|
|
415
509
|
- [CloudsmithApi::RespositoryGeoIpEnableDisableRequest](docs/RespositoryGeoIpEnableDisableRequest.md)
|
416
510
|
- [CloudsmithApi::RpmPackageUpload](docs/RpmPackageUpload.md)
|
417
511
|
- [CloudsmithApi::RpmPackageUploadRequest](docs/RpmPackageUploadRequest.md)
|
512
|
+
- [CloudsmithApi::RpmUpstream](docs/RpmUpstream.md)
|
513
|
+
- [CloudsmithApi::RpmUpstreamRequest](docs/RpmUpstreamRequest.md)
|
514
|
+
- [CloudsmithApi::RpmUpstreamRequestPatch](docs/RpmUpstreamRequestPatch.md)
|
418
515
|
- [CloudsmithApi::RubyPackageUpload](docs/RubyPackageUpload.md)
|
419
516
|
- [CloudsmithApi::RubyPackageUploadRequest](docs/RubyPackageUploadRequest.md)
|
517
|
+
- [CloudsmithApi::RubyUpstream](docs/RubyUpstream.md)
|
518
|
+
- [CloudsmithApi::RubyUpstreamRequest](docs/RubyUpstreamRequest.md)
|
519
|
+
- [CloudsmithApi::RubyUpstreamRequestPatch](docs/RubyUpstreamRequestPatch.md)
|
420
520
|
- [CloudsmithApi::Service](docs/Service.md)
|
421
521
|
- [CloudsmithApi::ServiceRequest](docs/ServiceRequest.md)
|
422
522
|
- [CloudsmithApi::ServiceRequestPatch](docs/ServiceRequestPatch.md)
|
data/build.json
CHANGED
@@ -0,0 +1,23 @@
|
|
1
|
+
# CloudsmithApi::DartUpstream
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**auth_mode** | **String** | The authentication mode to use when accessing this upstream. | [optional] [default to 'None']
|
7
|
+
**auth_secret** | **String** | Secret to provide with requests to upstream. | [optional]
|
8
|
+
**auth_username** | **String** | Username to provide with requests to upstream. | [optional]
|
9
|
+
**created_at** | **DateTime** | The datetime the upstream source was created. | [optional]
|
10
|
+
**extra_header_1** | **String** | The key for extra header #1 to send to upstream. | [optional]
|
11
|
+
**extra_header_2** | **String** | The key for extra header #2 to send to upstream. | [optional]
|
12
|
+
**extra_value_1** | **String** | The value for extra header #1 to send to upstream. This is stored as plaintext, and is NOT encrypted. | [optional]
|
13
|
+
**extra_value_2** | **String** | The value for extra header #2 to send to upstream. This is stored as plaintext, and is NOT encrypted. | [optional]
|
14
|
+
**is_active** | **BOOLEAN** | Whether or not this upstream is active and ready for requests. | [optional]
|
15
|
+
**mode** | **String** | The mode that this upstream should operate in. Upstream sources can be used to proxy resolved packages, as well as operate in a proxy/cache or cache only mode. | [optional] [default to 'Proxy Only']
|
16
|
+
**name** | **String** | A descriptive name for this upstream source. A shortened version of this name will be used for tagging cached packages retrieved from this upstream. |
|
17
|
+
**priority** | **Integer** | Upstream sources are selected for resolving requests by sequential order (1..n), followed by creation date. | [optional]
|
18
|
+
**slug_perm** | **String** | | [optional]
|
19
|
+
**updated_at** | **DateTime** | | [optional]
|
20
|
+
**upstream_url** | **String** | The URL for this upstream source. This must be a fully qualified URL including any path elements required to reach the root of the repository. |
|
21
|
+
**verify_ssl** | **BOOLEAN** | If enabled, SSL certificates are verified when requests are made to this upstream. It's recommended to leave this enabled for all public sources to help mitigate Man-In-The-Middle (MITM) attacks. Please note this only applies to HTTPS upstreams. | [optional]
|
22
|
+
|
23
|
+
|
@@ -0,0 +1,20 @@
|
|
1
|
+
# CloudsmithApi::DartUpstreamRequest
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**auth_mode** | **String** | The authentication mode to use when accessing this upstream. | [optional] [default to 'None']
|
7
|
+
**auth_secret** | **String** | Secret to provide with requests to upstream. | [optional]
|
8
|
+
**auth_username** | **String** | Username to provide with requests to upstream. | [optional]
|
9
|
+
**extra_header_1** | **String** | The key for extra header #1 to send to upstream. | [optional]
|
10
|
+
**extra_header_2** | **String** | The key for extra header #2 to send to upstream. | [optional]
|
11
|
+
**extra_value_1** | **String** | The value for extra header #1 to send to upstream. This is stored as plaintext, and is NOT encrypted. | [optional]
|
12
|
+
**extra_value_2** | **String** | The value for extra header #2 to send to upstream. This is stored as plaintext, and is NOT encrypted. | [optional]
|
13
|
+
**is_active** | **BOOLEAN** | Whether or not this upstream is active and ready for requests. | [optional]
|
14
|
+
**mode** | **String** | The mode that this upstream should operate in. Upstream sources can be used to proxy resolved packages, as well as operate in a proxy/cache or cache only mode. | [optional] [default to 'Proxy Only']
|
15
|
+
**name** | **String** | A descriptive name for this upstream source. A shortened version of this name will be used for tagging cached packages retrieved from this upstream. |
|
16
|
+
**priority** | **Integer** | Upstream sources are selected for resolving requests by sequential order (1..n), followed by creation date. | [optional]
|
17
|
+
**upstream_url** | **String** | The URL for this upstream source. This must be a fully qualified URL including any path elements required to reach the root of the repository. |
|
18
|
+
**verify_ssl** | **BOOLEAN** | If enabled, SSL certificates are verified when requests are made to this upstream. It's recommended to leave this enabled for all public sources to help mitigate Man-In-The-Middle (MITM) attacks. Please note this only applies to HTTPS upstreams. | [optional]
|
19
|
+
|
20
|
+
|
@@ -0,0 +1,20 @@
|
|
1
|
+
# CloudsmithApi::DartUpstreamRequestPatch
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**auth_mode** | **String** | The authentication mode to use when accessing this upstream. | [optional] [default to 'None']
|
7
|
+
**auth_secret** | **String** | Secret to provide with requests to upstream. | [optional]
|
8
|
+
**auth_username** | **String** | Username to provide with requests to upstream. | [optional]
|
9
|
+
**extra_header_1** | **String** | The key for extra header #1 to send to upstream. | [optional]
|
10
|
+
**extra_header_2** | **String** | The key for extra header #2 to send to upstream. | [optional]
|
11
|
+
**extra_value_1** | **String** | The value for extra header #1 to send to upstream. This is stored as plaintext, and is NOT encrypted. | [optional]
|
12
|
+
**extra_value_2** | **String** | The value for extra header #2 to send to upstream. This is stored as plaintext, and is NOT encrypted. | [optional]
|
13
|
+
**is_active** | **BOOLEAN** | Whether or not this upstream is active and ready for requests. | [optional]
|
14
|
+
**mode** | **String** | The mode that this upstream should operate in. Upstream sources can be used to proxy resolved packages, as well as operate in a proxy/cache or cache only mode. | [optional] [default to 'Proxy Only']
|
15
|
+
**name** | **String** | A descriptive name for this upstream source. A shortened version of this name will be used for tagging cached packages retrieved from this upstream. | [optional]
|
16
|
+
**priority** | **Integer** | Upstream sources are selected for resolving requests by sequential order (1..n), followed by creation date. | [optional]
|
17
|
+
**upstream_url** | **String** | The URL for this upstream source. This must be a fully qualified URL including any path elements required to reach the root of the repository. | [optional]
|
18
|
+
**verify_ssl** | **BOOLEAN** | If enabled, SSL certificates are verified when requests are made to this upstream. It's recommended to leave this enabled for all public sources to help mitigate Man-In-The-Middle (MITM) attacks. Please note this only applies to HTTPS upstreams. | [optional]
|
19
|
+
|
20
|
+
|
data/docs/DebUpstream.md
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
# CloudsmithApi::DebUpstream
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**auth_mode** | **String** | The authentication mode to use when accessing this upstream. | [optional] [default to 'None']
|
7
|
+
**auth_secret** | **String** | Secret to provide with requests to upstream. | [optional]
|
8
|
+
**auth_username** | **String** | Username to provide with requests to upstream. | [optional]
|
9
|
+
**component** | **String** | The component to fetch from the upstream | [optional]
|
10
|
+
**created_at** | **DateTime** | The datetime the upstream source was created. | [optional]
|
11
|
+
**distro_versions** | **Array<String>** | The distribution version that packages found on this upstream could be associated with. |
|
12
|
+
**extra_header_1** | **String** | The key for extra header #1 to send to upstream. | [optional]
|
13
|
+
**extra_header_2** | **String** | The key for extra header #2 to send to upstream. | [optional]
|
14
|
+
**extra_value_1** | **String** | The value for extra header #1 to send to upstream. This is stored as plaintext, and is NOT encrypted. | [optional]
|
15
|
+
**extra_value_2** | **String** | The value for extra header #2 to send to upstream. This is stored as plaintext, and is NOT encrypted. | [optional]
|
16
|
+
**include_sources** | **BOOLEAN** | When true, source packages will be available from this upstream. | [optional]
|
17
|
+
**is_active** | **BOOLEAN** | Whether or not this upstream is active and ready for requests. | [optional]
|
18
|
+
**mode** | **String** | The mode that this upstream should operate in. Upstream sources can be used to proxy resolved packages, as well as operate in a proxy/cache or cache only mode. | [optional] [default to 'Proxy Only']
|
19
|
+
**name** | **String** | A descriptive name for this upstream source. A shortened version of this name will be used for tagging cached packages retrieved from this upstream. |
|
20
|
+
**priority** | **Integer** | Upstream sources are selected for resolving requests by sequential order (1..n), followed by creation date. | [optional]
|
21
|
+
**slug_perm** | **String** | | [optional]
|
22
|
+
**updated_at** | **DateTime** | | [optional]
|
23
|
+
**upstream_distribution** | **String** | The distribution to fetch from the upstream | [optional]
|
24
|
+
**upstream_url** | **String** | The URL for this upstream source. This must be a fully qualified URL including any path elements required to reach the root of the repository. |
|
25
|
+
**verify_ssl** | **BOOLEAN** | If enabled, SSL certificates are verified when requests are made to this upstream. It's recommended to leave this enabled for all public sources to help mitigate Man-In-The-Middle (MITM) attacks. Please note this only applies to HTTPS upstreams. | [optional]
|
26
|
+
|
27
|
+
|
@@ -0,0 +1,24 @@
|
|
1
|
+
# CloudsmithApi::DebUpstreamRequest
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**auth_mode** | **String** | The authentication mode to use when accessing this upstream. | [optional] [default to 'None']
|
7
|
+
**auth_secret** | **String** | Secret to provide with requests to upstream. | [optional]
|
8
|
+
**auth_username** | **String** | Username to provide with requests to upstream. | [optional]
|
9
|
+
**component** | **String** | The component to fetch from the upstream | [optional]
|
10
|
+
**distro_versions** | **Array<String>** | The distribution version that packages found on this upstream could be associated with. |
|
11
|
+
**extra_header_1** | **String** | The key for extra header #1 to send to upstream. | [optional]
|
12
|
+
**extra_header_2** | **String** | The key for extra header #2 to send to upstream. | [optional]
|
13
|
+
**extra_value_1** | **String** | The value for extra header #1 to send to upstream. This is stored as plaintext, and is NOT encrypted. | [optional]
|
14
|
+
**extra_value_2** | **String** | The value for extra header #2 to send to upstream. This is stored as plaintext, and is NOT encrypted. | [optional]
|
15
|
+
**include_sources** | **BOOLEAN** | When true, source packages will be available from this upstream. | [optional]
|
16
|
+
**is_active** | **BOOLEAN** | Whether or not this upstream is active and ready for requests. | [optional]
|
17
|
+
**mode** | **String** | The mode that this upstream should operate in. Upstream sources can be used to proxy resolved packages, as well as operate in a proxy/cache or cache only mode. | [optional] [default to 'Proxy Only']
|
18
|
+
**name** | **String** | A descriptive name for this upstream source. A shortened version of this name will be used for tagging cached packages retrieved from this upstream. |
|
19
|
+
**priority** | **Integer** | Upstream sources are selected for resolving requests by sequential order (1..n), followed by creation date. | [optional]
|
20
|
+
**upstream_distribution** | **String** | The distribution to fetch from the upstream | [optional]
|
21
|
+
**upstream_url** | **String** | The URL for this upstream source. This must be a fully qualified URL including any path elements required to reach the root of the repository. |
|
22
|
+
**verify_ssl** | **BOOLEAN** | If enabled, SSL certificates are verified when requests are made to this upstream. It's recommended to leave this enabled for all public sources to help mitigate Man-In-The-Middle (MITM) attacks. Please note this only applies to HTTPS upstreams. | [optional]
|
23
|
+
|
24
|
+
|
@@ -0,0 +1,24 @@
|
|
1
|
+
# CloudsmithApi::DebUpstreamRequestPatch
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**auth_mode** | **String** | The authentication mode to use when accessing this upstream. | [optional] [default to 'None']
|
7
|
+
**auth_secret** | **String** | Secret to provide with requests to upstream. | [optional]
|
8
|
+
**auth_username** | **String** | Username to provide with requests to upstream. | [optional]
|
9
|
+
**component** | **String** | The component to fetch from the upstream | [optional]
|
10
|
+
**distro_versions** | **Array<String>** | The distribution version that packages found on this upstream could be associated with. | [optional]
|
11
|
+
**extra_header_1** | **String** | The key for extra header #1 to send to upstream. | [optional]
|
12
|
+
**extra_header_2** | **String** | The key for extra header #2 to send to upstream. | [optional]
|
13
|
+
**extra_value_1** | **String** | The value for extra header #1 to send to upstream. This is stored as plaintext, and is NOT encrypted. | [optional]
|
14
|
+
**extra_value_2** | **String** | The value for extra header #2 to send to upstream. This is stored as plaintext, and is NOT encrypted. | [optional]
|
15
|
+
**include_sources** | **BOOLEAN** | When true, source packages will be available from this upstream. | [optional]
|
16
|
+
**is_active** | **BOOLEAN** | Whether or not this upstream is active and ready for requests. | [optional]
|
17
|
+
**mode** | **String** | The mode that this upstream should operate in. Upstream sources can be used to proxy resolved packages, as well as operate in a proxy/cache or cache only mode. | [optional] [default to 'Proxy Only']
|
18
|
+
**name** | **String** | A descriptive name for this upstream source. A shortened version of this name will be used for tagging cached packages retrieved from this upstream. | [optional]
|
19
|
+
**priority** | **Integer** | Upstream sources are selected for resolving requests by sequential order (1..n), followed by creation date. | [optional]
|
20
|
+
**upstream_distribution** | **String** | The distribution to fetch from the upstream | [optional]
|
21
|
+
**upstream_url** | **String** | The URL for this upstream source. This must be a fully qualified URL including any path elements required to reach the root of the repository. | [optional]
|
22
|
+
**verify_ssl** | **BOOLEAN** | If enabled, SSL certificates are verified when requests are made to this upstream. It's recommended to leave this enabled for all public sources to help mitigate Man-In-The-Middle (MITM) attacks. Please note this only applies to HTTPS upstreams. | [optional]
|
23
|
+
|
24
|
+
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# CloudsmithApi::DockerUpstream
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**auth_mode** | **String** | The authentication mode to use when accessing this upstream. | [optional] [default to 'None']
|
7
|
+
**auth_secret** | **String** | Secret to provide with requests to upstream. | [optional]
|
8
|
+
**auth_username** | **String** | Username to provide with requests to upstream. | [optional]
|
9
|
+
**created_at** | **DateTime** | The datetime the upstream source was created. | [optional]
|
10
|
+
**extra_header_1** | **String** | The key for extra header #1 to send to upstream. | [optional]
|
11
|
+
**extra_header_2** | **String** | The key for extra header #2 to send to upstream. | [optional]
|
12
|
+
**extra_value_1** | **String** | The value for extra header #1 to send to upstream. This is stored as plaintext, and is NOT encrypted. | [optional]
|
13
|
+
**extra_value_2** | **String** | The value for extra header #2 to send to upstream. This is stored as plaintext, and is NOT encrypted. | [optional]
|
14
|
+
**is_active** | **BOOLEAN** | Whether or not this upstream is active and ready for requests. | [optional]
|
15
|
+
**mode** | **String** | The mode that this upstream should operate in. Upstream sources can be used to proxy resolved packages, as well as operate in a proxy/cache or cache only mode. | [optional] [default to 'Proxy Only']
|
16
|
+
**name** | **String** | A descriptive name for this upstream source. A shortened version of this name will be used for tagging cached packages retrieved from this upstream. |
|
17
|
+
**priority** | **Integer** | Upstream sources are selected for resolving requests by sequential order (1..n), followed by creation date. | [optional]
|
18
|
+
**slug_perm** | **String** | | [optional]
|
19
|
+
**updated_at** | **DateTime** | | [optional]
|
20
|
+
**upstream_url** | **String** | The URL for this upstream source. This must be a fully qualified URL including any path elements required to reach the root of the repository. |
|
21
|
+
**verify_ssl** | **BOOLEAN** | If enabled, SSL certificates are verified when requests are made to this upstream. It's recommended to leave this enabled for all public sources to help mitigate Man-In-The-Middle (MITM) attacks. Please note this only applies to HTTPS upstreams. | [optional]
|
22
|
+
|
23
|
+
|
@@ -0,0 +1,20 @@
|
|
1
|
+
# CloudsmithApi::DockerUpstreamRequest
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**auth_mode** | **String** | The authentication mode to use when accessing this upstream. | [optional] [default to 'None']
|
7
|
+
**auth_secret** | **String** | Secret to provide with requests to upstream. | [optional]
|
8
|
+
**auth_username** | **String** | Username to provide with requests to upstream. | [optional]
|
9
|
+
**extra_header_1** | **String** | The key for extra header #1 to send to upstream. | [optional]
|
10
|
+
**extra_header_2** | **String** | The key for extra header #2 to send to upstream. | [optional]
|
11
|
+
**extra_value_1** | **String** | The value for extra header #1 to send to upstream. This is stored as plaintext, and is NOT encrypted. | [optional]
|
12
|
+
**extra_value_2** | **String** | The value for extra header #2 to send to upstream. This is stored as plaintext, and is NOT encrypted. | [optional]
|
13
|
+
**is_active** | **BOOLEAN** | Whether or not this upstream is active and ready for requests. | [optional]
|
14
|
+
**mode** | **String** | The mode that this upstream should operate in. Upstream sources can be used to proxy resolved packages, as well as operate in a proxy/cache or cache only mode. | [optional] [default to 'Proxy Only']
|
15
|
+
**name** | **String** | A descriptive name for this upstream source. A shortened version of this name will be used for tagging cached packages retrieved from this upstream. |
|
16
|
+
**priority** | **Integer** | Upstream sources are selected for resolving requests by sequential order (1..n), followed by creation date. | [optional]
|
17
|
+
**upstream_url** | **String** | The URL for this upstream source. This must be a fully qualified URL including any path elements required to reach the root of the repository. |
|
18
|
+
**verify_ssl** | **BOOLEAN** | If enabled, SSL certificates are verified when requests are made to this upstream. It's recommended to leave this enabled for all public sources to help mitigate Man-In-The-Middle (MITM) attacks. Please note this only applies to HTTPS upstreams. | [optional]
|
19
|
+
|
20
|
+
|
@@ -0,0 +1,20 @@
|
|
1
|
+
# CloudsmithApi::DockerUpstreamRequestPatch
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**auth_mode** | **String** | The authentication mode to use when accessing this upstream. | [optional] [default to 'None']
|
7
|
+
**auth_secret** | **String** | Secret to provide with requests to upstream. | [optional]
|
8
|
+
**auth_username** | **String** | Username to provide with requests to upstream. | [optional]
|
9
|
+
**extra_header_1** | **String** | The key for extra header #1 to send to upstream. | [optional]
|
10
|
+
**extra_header_2** | **String** | The key for extra header #2 to send to upstream. | [optional]
|
11
|
+
**extra_value_1** | **String** | The value for extra header #1 to send to upstream. This is stored as plaintext, and is NOT encrypted. | [optional]
|
12
|
+
**extra_value_2** | **String** | The value for extra header #2 to send to upstream. This is stored as plaintext, and is NOT encrypted. | [optional]
|
13
|
+
**is_active** | **BOOLEAN** | Whether or not this upstream is active and ready for requests. | [optional]
|
14
|
+
**mode** | **String** | The mode that this upstream should operate in. Upstream sources can be used to proxy resolved packages, as well as operate in a proxy/cache or cache only mode. | [optional] [default to 'Proxy Only']
|
15
|
+
**name** | **String** | A descriptive name for this upstream source. A shortened version of this name will be used for tagging cached packages retrieved from this upstream. | [optional]
|
16
|
+
**priority** | **Integer** | Upstream sources are selected for resolving requests by sequential order (1..n), followed by creation date. | [optional]
|
17
|
+
**upstream_url** | **String** | The URL for this upstream source. This must be a fully qualified URL including any path elements required to reach the root of the repository. | [optional]
|
18
|
+
**verify_ssl** | **BOOLEAN** | If enabled, SSL certificates are verified when requests are made to this upstream. It's recommended to leave this enabled for all public sources to help mitigate Man-In-The-Middle (MITM) attacks. Please note this only applies to HTTPS upstreams. | [optional]
|
19
|
+
|
20
|
+
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# CloudsmithApi::HelmUpstream
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**auth_mode** | **String** | The authentication mode to use when accessing this upstream. | [optional] [default to 'None']
|
7
|
+
**auth_secret** | **String** | Secret to provide with requests to upstream. | [optional]
|
8
|
+
**auth_username** | **String** | Username to provide with requests to upstream. | [optional]
|
9
|
+
**created_at** | **DateTime** | The datetime the upstream source was created. | [optional]
|
10
|
+
**extra_header_1** | **String** | The key for extra header #1 to send to upstream. | [optional]
|
11
|
+
**extra_header_2** | **String** | The key for extra header #2 to send to upstream. | [optional]
|
12
|
+
**extra_value_1** | **String** | The value for extra header #1 to send to upstream. This is stored as plaintext, and is NOT encrypted. | [optional]
|
13
|
+
**extra_value_2** | **String** | The value for extra header #2 to send to upstream. This is stored as plaintext, and is NOT encrypted. | [optional]
|
14
|
+
**is_active** | **BOOLEAN** | Whether or not this upstream is active and ready for requests. | [optional]
|
15
|
+
**mode** | **String** | The mode that this upstream should operate in. Upstream sources can be used to proxy resolved packages, as well as operate in a proxy/cache or cache only mode. | [optional] [default to 'Proxy Only']
|
16
|
+
**name** | **String** | A descriptive name for this upstream source. A shortened version of this name will be used for tagging cached packages retrieved from this upstream. |
|
17
|
+
**priority** | **Integer** | Upstream sources are selected for resolving requests by sequential order (1..n), followed by creation date. | [optional]
|
18
|
+
**slug_perm** | **String** | | [optional]
|
19
|
+
**updated_at** | **DateTime** | | [optional]
|
20
|
+
**upstream_url** | **String** | The URL for this upstream source. This must be a fully qualified URL including any path elements required to reach the root of the repository. |
|
21
|
+
**verify_ssl** | **BOOLEAN** | If enabled, SSL certificates are verified when requests are made to this upstream. It's recommended to leave this enabled for all public sources to help mitigate Man-In-The-Middle (MITM) attacks. Please note this only applies to HTTPS upstreams. | [optional]
|
22
|
+
|
23
|
+
|
@@ -0,0 +1,20 @@
|
|
1
|
+
# CloudsmithApi::HelmUpstreamRequest
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**auth_mode** | **String** | The authentication mode to use when accessing this upstream. | [optional] [default to 'None']
|
7
|
+
**auth_secret** | **String** | Secret to provide with requests to upstream. | [optional]
|
8
|
+
**auth_username** | **String** | Username to provide with requests to upstream. | [optional]
|
9
|
+
**extra_header_1** | **String** | The key for extra header #1 to send to upstream. | [optional]
|
10
|
+
**extra_header_2** | **String** | The key for extra header #2 to send to upstream. | [optional]
|
11
|
+
**extra_value_1** | **String** | The value for extra header #1 to send to upstream. This is stored as plaintext, and is NOT encrypted. | [optional]
|
12
|
+
**extra_value_2** | **String** | The value for extra header #2 to send to upstream. This is stored as plaintext, and is NOT encrypted. | [optional]
|
13
|
+
**is_active** | **BOOLEAN** | Whether or not this upstream is active and ready for requests. | [optional]
|
14
|
+
**mode** | **String** | The mode that this upstream should operate in. Upstream sources can be used to proxy resolved packages, as well as operate in a proxy/cache or cache only mode. | [optional] [default to 'Proxy Only']
|
15
|
+
**name** | **String** | A descriptive name for this upstream source. A shortened version of this name will be used for tagging cached packages retrieved from this upstream. |
|
16
|
+
**priority** | **Integer** | Upstream sources are selected for resolving requests by sequential order (1..n), followed by creation date. | [optional]
|
17
|
+
**upstream_url** | **String** | The URL for this upstream source. This must be a fully qualified URL including any path elements required to reach the root of the repository. |
|
18
|
+
**verify_ssl** | **BOOLEAN** | If enabled, SSL certificates are verified when requests are made to this upstream. It's recommended to leave this enabled for all public sources to help mitigate Man-In-The-Middle (MITM) attacks. Please note this only applies to HTTPS upstreams. | [optional]
|
19
|
+
|
20
|
+
|
@@ -0,0 +1,20 @@
|
|
1
|
+
# CloudsmithApi::HelmUpstreamRequestPatch
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**auth_mode** | **String** | The authentication mode to use when accessing this upstream. | [optional] [default to 'None']
|
7
|
+
**auth_secret** | **String** | Secret to provide with requests to upstream. | [optional]
|
8
|
+
**auth_username** | **String** | Username to provide with requests to upstream. | [optional]
|
9
|
+
**extra_header_1** | **String** | The key for extra header #1 to send to upstream. | [optional]
|
10
|
+
**extra_header_2** | **String** | The key for extra header #2 to send to upstream. | [optional]
|
11
|
+
**extra_value_1** | **String** | The value for extra header #1 to send to upstream. This is stored as plaintext, and is NOT encrypted. | [optional]
|
12
|
+
**extra_value_2** | **String** | The value for extra header #2 to send to upstream. This is stored as plaintext, and is NOT encrypted. | [optional]
|
13
|
+
**is_active** | **BOOLEAN** | Whether or not this upstream is active and ready for requests. | [optional]
|
14
|
+
**mode** | **String** | The mode that this upstream should operate in. Upstream sources can be used to proxy resolved packages, as well as operate in a proxy/cache or cache only mode. | [optional] [default to 'Proxy Only']
|
15
|
+
**name** | **String** | A descriptive name for this upstream source. A shortened version of this name will be used for tagging cached packages retrieved from this upstream. | [optional]
|
16
|
+
**priority** | **Integer** | Upstream sources are selected for resolving requests by sequential order (1..n), followed by creation date. | [optional]
|
17
|
+
**upstream_url** | **String** | The URL for this upstream source. This must be a fully qualified URL including any path elements required to reach the root of the repository. | [optional]
|
18
|
+
**verify_ssl** | **BOOLEAN** | If enabled, SSL certificates are verified when requests are made to this upstream. It's recommended to leave this enabled for all public sources to help mitigate Man-In-The-Middle (MITM) attacks. Please note this only applies to HTTPS upstreams. | [optional]
|
19
|
+
|
20
|
+
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# CloudsmithApi::MavenUpstream
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**auth_mode** | **String** | The authentication mode to use when accessing this upstream. | [optional] [default to 'None']
|
7
|
+
**auth_secret** | **String** | Secret to provide with requests to upstream. | [optional]
|
8
|
+
**auth_username** | **String** | Username to provide with requests to upstream. | [optional]
|
9
|
+
**created_at** | **DateTime** | The datetime the upstream source was created. | [optional]
|
10
|
+
**extra_header_1** | **String** | The key for extra header #1 to send to upstream. | [optional]
|
11
|
+
**extra_header_2** | **String** | The key for extra header #2 to send to upstream. | [optional]
|
12
|
+
**extra_value_1** | **String** | The value for extra header #1 to send to upstream. This is stored as plaintext, and is NOT encrypted. | [optional]
|
13
|
+
**extra_value_2** | **String** | The value for extra header #2 to send to upstream. This is stored as plaintext, and is NOT encrypted. | [optional]
|
14
|
+
**is_active** | **BOOLEAN** | Whether or not this upstream is active and ready for requests. | [optional]
|
15
|
+
**mode** | **String** | The mode that this upstream should operate in. Upstream sources can be used to proxy resolved packages, as well as operate in a proxy/cache or cache only mode. | [optional] [default to 'Proxy Only']
|
16
|
+
**name** | **String** | A descriptive name for this upstream source. A shortened version of this name will be used for tagging cached packages retrieved from this upstream. |
|
17
|
+
**priority** | **Integer** | Upstream sources are selected for resolving requests by sequential order (1..n), followed by creation date. | [optional]
|
18
|
+
**slug_perm** | **String** | | [optional]
|
19
|
+
**updated_at** | **DateTime** | | [optional]
|
20
|
+
**upstream_url** | **String** | The URL for this upstream source. This must be a fully qualified URL including any path elements required to reach the root of the repository. |
|
21
|
+
**verify_ssl** | **BOOLEAN** | If enabled, SSL certificates are verified when requests are made to this upstream. It's recommended to leave this enabled for all public sources to help mitigate Man-In-The-Middle (MITM) attacks. Please note this only applies to HTTPS upstreams. | [optional]
|
22
|
+
|
23
|
+
|