Skip to content
Open
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
  •  
  •  
  •  
8 changes: 5 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 @@ -649,6 +649,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 +787,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
3 changes: 3 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 @@ -83,12 +84,14 @@ Name | Type | Description | Notes
**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]



3 changes: 3 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 @@ -83,12 +84,14 @@ Name | Type | Description | Notes
**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]



3 changes: 3 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 @@ -83,12 +84,14 @@ Name | Type | Description | Notes
**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/CocoapodsPackageUploadRequest.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]



3 changes: 3 additions & 0 deletions bindings/java/src/docs/ComposerPackageUpload.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 @@ -83,12 +84,14 @@ Name | Type | Description | Notes
**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/ComposerPackageUploadRequest.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,12 @@
## 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]
**version** | **String** | The raw version for this package. | [optional]
**vulnerabilityCounts** | [**WebOSVSeverityCounts**](WebOSVSeverityCounts.md) | | [optional]



3 changes: 3 additions & 0 deletions bindings/java/src/docs/ConanPackageUpload.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,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 @@ -85,12 +86,14 @@ Name | Type | Description | Notes
**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/ConanPackageUploadRequest.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,15 @@ Name | Type | Description | Notes
**conanChannel** | **String** | Conan channel. | [optional]
**conanPrefix** | **String** | Conan prefix (User). | [optional]
**infoFile** | **String** | The info file is an python file containing the package metadata. |
**isMalwareDetected** | **Boolean** | Whether the package has been detected as containing malware. Requires Ultra plan. | [optional]
**manifestFile** | **String** | The info file is an python file containing the package metadata. |
**metadataFile** | **String** | The conan file is an python file containing the package metadata. |
**name** | **String** | The name of this package. | [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]
**version** | **String** | The raw version for this package. | [optional]
**vulnerabilityCounts** | [**WebOSVSeverityCounts**](WebOSVSeverityCounts.md) | | [optional]



3 changes: 3 additions & 0 deletions bindings/java/src/docs/CondaPackageUpload.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 @@ -83,12 +84,14 @@ Name | Type | Description | Notes
**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/CondaPackageUploadRequest.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]



3 changes: 3 additions & 0 deletions bindings/java/src/docs/CranPackageUpload.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 @@ -84,12 +85,14 @@ Name | Type | Description | Notes
**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/CranPackageUploadRequest.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,12 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**architecture** | **String** | Binary package uploads for macOS should specify the architecture they were built for. | [optional]
**isMalwareDetected** | **Boolean** | Whether the package has been detected as containing malware. Requires Ultra plan. | [optional]
**packageFile** | **String** | The primary file for the package. |
**rVersion** | **String** | Binary package uploads should specify the version of R they were built for. | [optional]
**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]



Loading
Loading