Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
28 changes: 25 additions & 3 deletions bindings/java/src/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Add this dependency to your project's POM:
<dependency>
<groupId>io.cloudsmith.api</groupId>
<artifactId>cloudsmith-api</artifactId>
<version>2.0.29</version>
<version>2.0.30</version>
<scope>compile</scope>
</dependency>
```
Expand All @@ -50,7 +50,7 @@ Add this dependency to your project's POM:
Add this dependency to your project's build file:

```groovy
compile "io.cloudsmith.api:cloudsmith-api:2.0.29"
compile "io.cloudsmith.api:cloudsmith-api:2.0.30"
```

### Others
Expand All @@ -63,7 +63,7 @@ mvn clean package

Then manually install the following JARs:

* `target/cloudsmith-api-2.0.29.jar`
* `target/cloudsmith-api-2.0.30.jar`
* `target/lib/*.jar`

## Getting Started
Expand Down Expand Up @@ -191,6 +191,7 @@ Class | Method | HTTP request | Description
*OrgsApi* | [**orgsOpenidConnectRead**](docs/OrgsApi.md#orgsOpenidConnectRead) | **GET** /orgs/{org}/openid-connect/{slug_perm}/ | Retrieve a specific OpenID Connect provider setting for the org.
*OrgsApi* | [**orgsOpenidConnectUpdate**](docs/OrgsApi.md#orgsOpenidConnectUpdate) | **PUT** /orgs/{org}/openid-connect/{slug_perm}/ | Update a specific OpenID Connect provider setting for the org.
*OrgsApi* | [**orgsRead**](docs/OrgsApi.md#orgsRead) | **GET** /orgs/{org}/ | Get the details for the specific organization.
*OrgsApi* | [**orgsRetrieveUsageLimits**](docs/OrgsApi.md#orgsRetrieveUsageLimits) | **GET** /orgs/{org}/usage-limits/ |
*OrgsApi* | [**orgsSamlAuthenticationPartialUpdate**](docs/OrgsApi.md#orgsSamlAuthenticationPartialUpdate) | **PATCH** /orgs/{org}/saml-authentication | Update the SAML Authentication settings for this Organization.
*OrgsApi* | [**orgsSamlAuthenticationRead**](docs/OrgsApi.md#orgsSamlAuthenticationRead) | **GET** /orgs/{org}/saml-authentication | Retrieve the SAML Authentication settings for this Organization.
*OrgsApi* | [**orgsSamlGroupSyncCreate**](docs/OrgsApi.md#orgsSamlGroupSyncCreate) | **POST** /orgs/{org}/saml-group-sync/ | Create a new SAML Group Sync mapping within an organization.
Expand All @@ -213,6 +214,7 @@ Class | Method | HTTP request | Description
*OrgsApi* | [**orgsTeamsMembersUpdate**](docs/OrgsApi.md#orgsTeamsMembersUpdate) | **PUT** /orgs/{org}/teams/{team}/members | Replace all team members.
*OrgsApi* | [**orgsTeamsPartialUpdate**](docs/OrgsApi.md#orgsTeamsPartialUpdate) | **PATCH** /orgs/{org}/teams/{team}/ | Update a specific team in a organization.
*OrgsApi* | [**orgsTeamsRead**](docs/OrgsApi.md#orgsTeamsRead) | **GET** /orgs/{org}/teams/{team}/ | Get the details of a specific team within an organization.
*OrgsApi* | [**orgsUpdateUsageLimits**](docs/OrgsApi.md#orgsUpdateUsageLimits) | **PATCH** /orgs/{org}/usage-limits/ |
*OrgsApi* | [**orgsVulnerabilityPolicyCreate**](docs/OrgsApi.md#orgsVulnerabilityPolicyCreate) | **POST** /orgs/{org}/vulnerability-policy/ | Create a package vulnerability policy.
*OrgsApi* | [**orgsVulnerabilityPolicyDelete**](docs/OrgsApi.md#orgsVulnerabilityPolicyDelete) | **DELETE** /orgs/{org}/vulnerability-policy/{slug_perm}/ | Delete a package vulnerability policy.
*OrgsApi* | [**orgsVulnerabilityPolicyEvaluationCreate**](docs/OrgsApi.md#orgsVulnerabilityPolicyEvaluationCreate) | **POST** /orgs/{org}/vulnerability-policy/{policy_slug_perm}/evaluation/ | Create an evaluation request for this policy.
Expand Down Expand Up @@ -254,6 +256,7 @@ Class | Method | HTTP request | Description
*PackagesApi* | [**packagesUploadLuarocks**](docs/PackagesApi.md#packagesUploadLuarocks) | **POST** /packages/{owner}/{repo}/upload/luarocks/ | Create a new LuaRocks package
*PackagesApi* | [**packagesUploadMaven**](docs/PackagesApi.md#packagesUploadMaven) | **POST** /packages/{owner}/{repo}/upload/maven/ | Create a new Maven package
*PackagesApi* | [**packagesUploadMcp**](docs/PackagesApi.md#packagesUploadMcp) | **POST** /packages/{owner}/{repo}/upload/mcp/ | Create a new MCP package
*PackagesApi* | [**packagesUploadNix**](docs/PackagesApi.md#packagesUploadNix) | **POST** /packages/{owner}/{repo}/upload/nix/ | Create a new Nix package
*PackagesApi* | [**packagesUploadNpm**](docs/PackagesApi.md#packagesUploadNpm) | **POST** /packages/{owner}/{repo}/upload/npm/ | Create a new npm package
*PackagesApi* | [**packagesUploadNuget**](docs/PackagesApi.md#packagesUploadNuget) | **POST** /packages/{owner}/{repo}/upload/nuget/ | Create a new NuGet package
*PackagesApi* | [**packagesUploadP2**](docs/PackagesApi.md#packagesUploadP2) | **POST** /packages/{owner}/{repo}/upload/p2/ | Create a new P2 package
Expand Down Expand Up @@ -283,6 +286,7 @@ Class | Method | HTTP request | Description
*PackagesApi* | [**packagesValidateUploadLuarocks**](docs/PackagesApi.md#packagesValidateUploadLuarocks) | **POST** /packages/{owner}/{repo}/validate-upload/luarocks/ | Validate parameters for create LuaRocks package
*PackagesApi* | [**packagesValidateUploadMaven**](docs/PackagesApi.md#packagesValidateUploadMaven) | **POST** /packages/{owner}/{repo}/validate-upload/maven/ | Validate parameters for create Maven package
*PackagesApi* | [**packagesValidateUploadMcp**](docs/PackagesApi.md#packagesValidateUploadMcp) | **POST** /packages/{owner}/{repo}/validate-upload/mcp/ | Validate parameters for create MCP package
*PackagesApi* | [**packagesValidateUploadNix**](docs/PackagesApi.md#packagesValidateUploadNix) | **POST** /packages/{owner}/{repo}/validate-upload/nix/ | Validate parameters for create Nix package
*PackagesApi* | [**packagesValidateUploadNpm**](docs/PackagesApi.md#packagesValidateUploadNpm) | **POST** /packages/{owner}/{repo}/validate-upload/npm/ | Validate parameters for create npm package
*PackagesApi* | [**packagesValidateUploadNuget**](docs/PackagesApi.md#packagesValidateUploadNuget) | **POST** /packages/{owner}/{repo}/validate-upload/nuget/ | Validate parameters for create NuGet package
*PackagesApi* | [**packagesValidateUploadP2**](docs/PackagesApi.md#packagesValidateUploadP2) | **POST** /packages/{owner}/{repo}/validate-upload/p2/ | Validate parameters for create P2 package
Expand Down Expand Up @@ -421,6 +425,12 @@ Class | Method | HTTP request | Description
*ReposApi* | [**reposUpstreamMavenPartialUpdate**](docs/ReposApi.md#reposUpstreamMavenPartialUpdate) | **PATCH** /repos/{owner}/{identifier}/upstream/maven/{slug_perm}/ | Partially update a Maven upstream config for this repository.
*ReposApi* | [**reposUpstreamMavenRead**](docs/ReposApi.md#reposUpstreamMavenRead) | **GET** /repos/{owner}/{identifier}/upstream/maven/{slug_perm}/ | Retrieve a Maven upstream config for this repository.
*ReposApi* | [**reposUpstreamMavenUpdate**](docs/ReposApi.md#reposUpstreamMavenUpdate) | **PUT** /repos/{owner}/{identifier}/upstream/maven/{slug_perm}/ | Update a Maven upstream config for this repository.
*ReposApi* | [**reposUpstreamNixCreate**](docs/ReposApi.md#reposUpstreamNixCreate) | **POST** /repos/{owner}/{identifier}/upstream/nix/ | Create a Nix upstream config for this repository.
*ReposApi* | [**reposUpstreamNixDelete**](docs/ReposApi.md#reposUpstreamNixDelete) | **DELETE** /repos/{owner}/{identifier}/upstream/nix/{slug_perm}/ | Delete a Nix upstream config for this repository.
*ReposApi* | [**reposUpstreamNixList**](docs/ReposApi.md#reposUpstreamNixList) | **GET** /repos/{owner}/{identifier}/upstream/nix/ | List Nix upstream configs for this repository.
*ReposApi* | [**reposUpstreamNixPartialUpdate**](docs/ReposApi.md#reposUpstreamNixPartialUpdate) | **PATCH** /repos/{owner}/{identifier}/upstream/nix/{slug_perm}/ | Partially update a Nix upstream config for this repository.
*ReposApi* | [**reposUpstreamNixRead**](docs/ReposApi.md#reposUpstreamNixRead) | **GET** /repos/{owner}/{identifier}/upstream/nix/{slug_perm}/ | Retrieve a Nix upstream config for this repository.
*ReposApi* | [**reposUpstreamNixUpdate**](docs/ReposApi.md#reposUpstreamNixUpdate) | **PUT** /repos/{owner}/{identifier}/upstream/nix/{slug_perm}/ | Update a Nix upstream config for this repository.
*ReposApi* | [**reposUpstreamNpmCreate**](docs/ReposApi.md#reposUpstreamNpmCreate) | **POST** /repos/{owner}/{identifier}/upstream/npm/ | Create a npm upstream config for this repository.
*ReposApi* | [**reposUpstreamNpmDelete**](docs/ReposApi.md#reposUpstreamNpmDelete) | **DELETE** /repos/{owner}/{identifier}/upstream/npm/{slug_perm}/ | Delete a npm upstream config for this repository.
*ReposApi* | [**reposUpstreamNpmList**](docs/ReposApi.md#reposUpstreamNpmList) | **GET** /repos/{owner}/{identifier}/upstream/npm/ | List npm upstream configs for this repository.
Expand Down Expand Up @@ -581,6 +591,8 @@ Class | Method | HTTP request | Description
- [InlineResponse200](docs/InlineResponse200.md)
- [InlineResponse2001](docs/InlineResponse2001.md)
- [InlineResponse2002](docs/InlineResponse2002.md)
- [InlineResponse2003](docs/InlineResponse2003.md)
- [InlineResponse2004](docs/InlineResponse2004.md)
- [LuarocksPackageUpload](docs/LuarocksPackageUpload.md)
- [LuarocksPackageUploadRequest](docs/LuarocksPackageUploadRequest.md)
- [MavenPackageUpload](docs/MavenPackageUpload.md)
Expand All @@ -597,6 +609,11 @@ Class | Method | HTTP request | Description
- [NestedLicensePolicy](docs/NestedLicensePolicy.md)
- [NestedVulnerabilityPolicy](docs/NestedVulnerabilityPolicy.md)
- [NestedVulnerabilityScanResults](docs/NestedVulnerabilityScanResults.md)
- [NixPackageUpload](docs/NixPackageUpload.md)
- [NixPackageUploadRequest](docs/NixPackageUploadRequest.md)
- [NixUpstream](docs/NixUpstream.md)
- [NixUpstreamRequest](docs/NixUpstreamRequest.md)
- [NixUpstreamRequestPatch](docs/NixUpstreamRequestPatch.md)
- [NpmPackageUpload](docs/NpmPackageUpload.md)
- [NpmPackageUploadRequest](docs/NpmPackageUploadRequest.md)
- [NpmUpstream](docs/NpmUpstream.md)
Expand Down Expand Up @@ -638,6 +655,9 @@ Class | Method | HTTP request | Description
- [OrganizationTeamRequest](docs/OrganizationTeamRequest.md)
- [OrganizationTeamRequestPatch](docs/OrganizationTeamRequestPatch.md)
- [OrganizationTeamServiceMember](docs/OrganizationTeamServiceMember.md)
- [OrganizationUsage](docs/OrganizationUsage.md)
- [OrganizationUsageUpdate](docs/OrganizationUsageUpdate.md)
- [OrganizationUsageUpdateRequestPatch](docs/OrganizationUsageUpdateRequestPatch.md)
- [P2PackageUpload](docs/P2PackageUpload.md)
- [P2PackageUploadRequest](docs/P2PackageUploadRequest.md)
- [PackageBulkAction](docs/PackageBulkAction.md)
Expand All @@ -649,6 +669,7 @@ Class | Method | HTTP request | Description
- [PackageDenyPolicyRequestPatch](docs/PackageDenyPolicyRequestPatch.md)
- [PackageDependencies](docs/PackageDependencies.md)
- [PackageDependency](docs/PackageDependency.md)
- [PackageDetail](docs/PackageDetail.md)
- [PackageFile](docs/PackageFile.md)
- [PackageFilePartsUpload](docs/PackageFilePartsUpload.md)
- [PackageFileUpload](docs/PackageFileUpload.md)
Expand Down Expand Up @@ -786,6 +807,7 @@ Class | Method | HTTP request | Description
- [VulnerabilityScanResults](docs/VulnerabilityScanResults.md)
- [VulnerabilityScanResultsList](docs/VulnerabilityScanResultsList.md)
- [VulnerabilityScanVersion](docs/VulnerabilityScanVersion.md)
- [WebOSVSeverityCounts](docs/WebOSVSeverityCounts.md)
- [WebhookTemplate](docs/WebhookTemplate.md)


Expand Down
2 changes: 1 addition & 1 deletion bindings/java/src/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apply plugin: 'idea'
apply plugin: 'eclipse'

group = 'io.cloudsmith.api'
version = '2.0.29'
version = '2.0.30'

buildscript {
repositories {
Expand Down
2 changes: 1 addition & 1 deletion bindings/java/src/build.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"apiPackage": "io.cloudsmith.api.apis",
"artifactId": "cloudsmith-api",
"artifactUrl": "https://api.cloudsmith.io/?format=openapi",
"artifactVersion": "2.0.29",
"artifactVersion": "2.0.30",
"artifactDescription": "Cloudsmith API",
"dateLibrary": "java8",
"developerName": "Cloudsmith Ltd",
Expand Down
2 changes: 1 addition & 1 deletion bindings/java/src/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ lazy val root = (project in file(".")).
settings(
organization := "io.cloudsmith.api",
name := "cloudsmith-api",
version := "2.0.29",
version := "2.0.30",
scalaVersion := "2.11.4",
scalacOptions ++= Seq("-feature"),
javacOptions in compile ++= Seq("-Xlint:deprecation"),
Expand Down
4 changes: 4 additions & 0 deletions bindings/java/src/docs/AlpinePackageUpload.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ Name | Type | Description | Notes
**isDeleteable** | **Boolean** | | [optional]
**isDownloadable** | **Boolean** | | [optional]
**isHidden** | **Boolean** | | [optional]
**isMalwareDetected** | **Boolean** | Whether the package has been detected as containing malware. Requires Ultra plan. | [optional]
**isMoveable** | **Boolean** | | [optional]
**isQuarantinable** | **Boolean** | | [optional]
**isQuarantined** | **Boolean** | | [optional]
Expand Down Expand Up @@ -77,18 +78,21 @@ Name | Type | Description | Notes
**statusStr** | **String** | | [optional]
**statusUpdatedAt** | [**OffsetDateTime**](OffsetDateTime.md) | The datetime the package status was updated at. | [optional]
**statusUrl** | **String** | | [optional]
**storePath** | **String** | Absolute store path for the package, including store hash and name. | [optional]
**subtype** | **String** | | [optional]
**summary** | **String** | A one-liner synopsis of this package. | [optional]
**syncFinishedAt** | [**OffsetDateTime**](OffsetDateTime.md) | The datetime the package sync was finished at. | [optional]
**syncProgress** | **java.math.BigInteger** | Synchronisation progress (from 0-100) | [optional]
**tagsAutomatic** | [**Tags**](Tags.md) | | [optional]
**tagsImmutable** | [**Tags**](Tags.md) | | [optional]
**tagsStatic** | [**Map&lt;String, List&lt;String&gt;&gt;**](List.md) | All static tags on the package, grouped by context. Static tags are derived from the package&#39;s properties at request time and carry a &#39;context&#39; (rather than a tag type). Includes format-specific badges and the package&#39;s architecture, subtype, and extension. | [optional]
**typeDisplay** | **String** | | [optional]
**uploadedAt** | [**OffsetDateTime**](OffsetDateTime.md) | The date this package was uploaded. | [optional]
**uploader** | **String** | | [optional]
**uploaderUrl** | **String** | | [optional]
**version** | **String** | The raw version for this package. | [optional]
**versionOrig** | **String** | | [optional]
**vulnerabilityCounts** | [**WebOSVSeverityCounts**](WebOSVSeverityCounts.md) | | [optional]
**vulnerabilityScanResultsUrl** | **String** | | [optional]


Expand Down
2 changes: 2 additions & 0 deletions bindings/java/src/docs/AlpinePackageUploadRequest.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,11 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**distribution** | **String** | The distribution to store the package for. |
**isMalwareDetected** | **Boolean** | Whether the package has been detected as containing malware. Requires Ultra plan. | [optional]
**packageFile** | **String** | The primary file for the package. |
**republish** | **Boolean** | If true, the uploaded package will overwrite any others with the same attributes (e.g. same version); otherwise, it will be flagged as a duplicate. | [optional]
**tags** | **String** | A comma-separated values list of tags to add to the package. | [optional]
**vulnerabilityCounts** | [**WebOSVSeverityCounts**](WebOSVSeverityCounts.md) | | [optional]



4 changes: 4 additions & 0 deletions bindings/java/src/docs/CargoPackageUpload.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ Name | Type | Description | Notes
**isDeleteable** | **Boolean** | | [optional]
**isDownloadable** | **Boolean** | | [optional]
**isHidden** | **Boolean** | | [optional]
**isMalwareDetected** | **Boolean** | Whether the package has been detected as containing malware. Requires Ultra plan. | [optional]
**isMoveable** | **Boolean** | | [optional]
**isQuarantinable** | **Boolean** | | [optional]
**isQuarantined** | **Boolean** | | [optional]
Expand Down Expand Up @@ -77,18 +78,21 @@ Name | Type | Description | Notes
**statusStr** | **String** | | [optional]
**statusUpdatedAt** | [**OffsetDateTime**](OffsetDateTime.md) | The datetime the package status was updated at. | [optional]
**statusUrl** | **String** | | [optional]
**storePath** | **String** | Absolute store path for the package, including store hash and name. | [optional]
**subtype** | **String** | | [optional]
**summary** | **String** | A one-liner synopsis of this package. | [optional]
**syncFinishedAt** | [**OffsetDateTime**](OffsetDateTime.md) | The datetime the package sync was finished at. | [optional]
**syncProgress** | **java.math.BigInteger** | Synchronisation progress (from 0-100) | [optional]
**tagsAutomatic** | [**Tags**](Tags.md) | | [optional]
**tagsImmutable** | [**Tags**](Tags.md) | | [optional]
**tagsStatic** | [**Map&lt;String, List&lt;String&gt;&gt;**](List.md) | All static tags on the package, grouped by context. Static tags are derived from the package&#39;s properties at request time and carry a &#39;context&#39; (rather than a tag type). Includes format-specific badges and the package&#39;s architecture, subtype, and extension. | [optional]
**typeDisplay** | **String** | | [optional]
**uploadedAt** | [**OffsetDateTime**](OffsetDateTime.md) | The date this package was uploaded. | [optional]
**uploader** | **String** | | [optional]
**uploaderUrl** | **String** | | [optional]
**version** | **String** | The raw version for this package. | [optional]
**versionOrig** | **String** | | [optional]
**vulnerabilityCounts** | [**WebOSVSeverityCounts**](WebOSVSeverityCounts.md) | | [optional]
**vulnerabilityScanResultsUrl** | **String** | | [optional]


Expand Down
2 changes: 2 additions & 0 deletions bindings/java/src/docs/CargoPackageUploadRequest.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**isMalwareDetected** | **Boolean** | Whether the package has been detected as containing malware. Requires Ultra plan. | [optional]
**packageFile** | **String** | The primary file for the package. |
**republish** | **Boolean** | If true, the uploaded package will overwrite any others with the same attributes (e.g. same version); otherwise, it will be flagged as a duplicate. | [optional]
**tags** | **String** | A comma-separated values list of tags to add to the package. | [optional]
**vulnerabilityCounts** | [**WebOSVSeverityCounts**](WebOSVSeverityCounts.md) | | [optional]



4 changes: 4 additions & 0 deletions bindings/java/src/docs/CocoapodsPackageUpload.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ Name | Type | Description | Notes
**isDeleteable** | **Boolean** | | [optional]
**isDownloadable** | **Boolean** | | [optional]
**isHidden** | **Boolean** | | [optional]
**isMalwareDetected** | **Boolean** | Whether the package has been detected as containing malware. Requires Ultra plan. | [optional]
**isMoveable** | **Boolean** | | [optional]
**isQuarantinable** | **Boolean** | | [optional]
**isQuarantined** | **Boolean** | | [optional]
Expand Down Expand Up @@ -77,18 +78,21 @@ Name | Type | Description | Notes
**statusStr** | **String** | | [optional]
**statusUpdatedAt** | [**OffsetDateTime**](OffsetDateTime.md) | The datetime the package status was updated at. | [optional]
**statusUrl** | **String** | | [optional]
**storePath** | **String** | Absolute store path for the package, including store hash and name. | [optional]
**subtype** | **String** | | [optional]
**summary** | **String** | A one-liner synopsis of this package. | [optional]
**syncFinishedAt** | [**OffsetDateTime**](OffsetDateTime.md) | The datetime the package sync was finished at. | [optional]
**syncProgress** | **java.math.BigInteger** | Synchronisation progress (from 0-100) | [optional]
**tagsAutomatic** | [**Tags**](Tags.md) | | [optional]
**tagsImmutable** | [**Tags**](Tags.md) | | [optional]
**tagsStatic** | [**Map&lt;String, List&lt;String&gt;&gt;**](List.md) | All static tags on the package, grouped by context. Static tags are derived from the package&#39;s properties at request time and carry a &#39;context&#39; (rather than a tag type). Includes format-specific badges and the package&#39;s architecture, subtype, and extension. | [optional]
**typeDisplay** | **String** | | [optional]
**uploadedAt** | [**OffsetDateTime**](OffsetDateTime.md) | The date this package was uploaded. | [optional]
**uploader** | **String** | | [optional]
**uploaderUrl** | **String** | | [optional]
**version** | **String** | The raw version for this package. | [optional]
**versionOrig** | **String** | | [optional]
**vulnerabilityCounts** | [**WebOSVSeverityCounts**](WebOSVSeverityCounts.md) | | [optional]
**vulnerabilityScanResultsUrl** | **String** | | [optional]


Expand Down
Loading
Loading