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
  •  
  •  
  •  
17 changes: 14 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.32</version>
<version>2.0.33</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.32"
compile "io.cloudsmith.api:cloudsmith-api:2.0.33"
```

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

Then manually install the following JARs:

* `target/cloudsmith-api-2.0.32.jar`
* `target/cloudsmith-api-2.0.33.jar`
* `target/lib/*.jar`

## Getting Started
Expand Down Expand Up @@ -150,6 +150,12 @@ Class | Method | HTTP request | Description
*NamespacesApi* | [**namespacesList**](docs/NamespacesApi.md#namespacesList) | **GET** /namespaces/ | Get a list of all namespaces the user belongs to.
*NamespacesApi* | [**namespacesRead**](docs/NamespacesApi.md#namespacesRead) | **GET** /namespaces/{slug}/ | Get a specific namespace that the user belongs to.
*OpenidApi* | [**openidCreate**](docs/OpenidApi.md#openidCreate) | **POST** /openid/{owner}/ | Get a JWT token for a configured service account belonging to the requesting org.
*OrgsApi* | [**orgsApiKeyRulesCreate**](docs/OrgsApi.md#orgsApiKeyRulesCreate) | **POST** /orgs/{org}/api-key-rules/ | Create an API key rule.
*OrgsApi* | [**orgsApiKeyRulesDelete**](docs/OrgsApi.md#orgsApiKeyRulesDelete) | **DELETE** /orgs/{org}/api-key-rules/{slug_perm}/ | Delete an API key rule.
*OrgsApi* | [**orgsApiKeyRulesList**](docs/OrgsApi.md#orgsApiKeyRulesList) | **GET** /orgs/{org}/api-key-rules/ | List all API key rules for the organization.
*OrgsApi* | [**orgsApiKeyRulesPartialUpdate**](docs/OrgsApi.md#orgsApiKeyRulesPartialUpdate) | **PATCH** /orgs/{org}/api-key-rules/{slug_perm}/ | Update an API key rule.
*OrgsApi* | [**orgsApiKeyRulesRead**](docs/OrgsApi.md#orgsApiKeyRulesRead) | **GET** /orgs/{org}/api-key-rules/{slug_perm}/ | Retrieve an API key rule.
*OrgsApi* | [**orgsApiKeyRulesUpdate**](docs/OrgsApi.md#orgsApiKeyRulesUpdate) | **PUT** /orgs/{org}/api-key-rules/{slug_perm}/ | Full update of an API key rule.
*OrgsApi* | [**orgsCustomDomainsList**](docs/OrgsApi.md#orgsCustomDomainsList) | **GET** /orgs/{org}/custom-domains/ | Get the details for all custom domains.
*OrgsApi* | [**orgsDelete**](docs/OrgsApi.md#orgsDelete) | **DELETE** /orgs/{org}/ | Delete the specified organization.
*OrgsApi* | [**orgsDenyPolicyCreate**](docs/OrgsApi.md#orgsDenyPolicyCreate) | **POST** /orgs/{org}/deny-policy/ | Create a package deny policy.
Expand Down Expand Up @@ -530,6 +536,8 @@ Class | Method | HTTP request | Description
- [ConnectedRepository](docs/ConnectedRepository.md)
- [ConnectedRepositoryRequest](docs/ConnectedRepositoryRequest.md)
- [ConnectedRepositoryRequestPatch](docs/ConnectedRepositoryRequestPatch.md)
- [ConnectedRepositoryTargetSummary](docs/ConnectedRepositoryTargetSummary.md)
- [ConnectedRepositoryUpstream](docs/ConnectedRepositoryUpstream.md)
- [CranPackageUpload](docs/CranPackageUpload.md)
- [CranPackageUploadRequest](docs/CranPackageUploadRequest.md)
- [CranUpstream](docs/CranUpstream.md)
Expand Down Expand Up @@ -629,6 +637,9 @@ Class | Method | HTTP request | Description
- [Oidc1](docs/Oidc1.md)
- [OidcRequest](docs/OidcRequest.md)
- [Organization](docs/Organization.md)
- [OrganizationApiKeyRule](docs/OrganizationApiKeyRule.md)
- [OrganizationApiKeyRuleRequest](docs/OrganizationApiKeyRuleRequest.md)
- [OrganizationApiKeyRuleRequestPatch](docs/OrganizationApiKeyRuleRequestPatch.md)
- [OrganizationCustomDomainNestedRepo](docs/OrganizationCustomDomainNestedRepo.md)
- [OrganizationCustomDomains](docs/OrganizationCustomDomains.md)
- [OrganizationGroupSync](docs/OrganizationGroupSync.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.32'
version = '2.0.33'

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.32",
"artifactVersion": "2.0.33",
"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.32",
version := "2.0.33",
scalaVersion := "2.11.4",
scalacOptions ++= Seq("-feature"),
javacOptions in compile ++= Seq("-Xlint:deprecation"),
Expand Down
3 changes: 1 addition & 2 deletions bindings/java/src/docs/AlpinePackageUpload.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ Name | Type | Description | Notes
**dependenciesUrl** | **String** | | [optional]
**description** | **String** | A textual description of this package. | [optional]
**displayName** | **String** | | [optional]
**displaySource** | **String** | Where the package originated, for example: &#39;upstream&#39; (proxied/cached from a configured upstream), &#39;connected_repository&#39; (blended in from a connected target repository), or &#39;manual_upload&#39; (uploaded directly to Cloudsmith). | [optional]
**distro** | [**Distribution**](Distribution.md) | | [optional]
**distroVersion** | [**DistributionVersion**](DistributionVersion.md) | | [optional]
**downloads** | **java.math.BigInteger** | | [optional]
Expand All @@ -33,7 +34,6 @@ 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 @@ -92,7 +92,6 @@ Name | Type | Description | Notes
**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: 0 additions & 2 deletions bindings/java/src/docs/AlpinePackageUploadRequest.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,9 @@
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: 1 addition & 2 deletions bindings/java/src/docs/CargoPackageUpload.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ Name | Type | Description | Notes
**dependenciesUrl** | **String** | | [optional]
**description** | **String** | A textual description of this package. | [optional]
**displayName** | **String** | | [optional]
**displaySource** | **String** | Where the package originated, for example: &#39;upstream&#39; (proxied/cached from a configured upstream), &#39;connected_repository&#39; (blended in from a connected target repository), or &#39;manual_upload&#39; (uploaded directly to Cloudsmith). | [optional]
**distro** | [**Distribution**](Distribution.md) | | [optional]
**distroVersion** | [**DistributionVersion**](DistributionVersion.md) | | [optional]
**downloads** | **java.math.BigInteger** | | [optional]
Expand All @@ -33,7 +34,6 @@ 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 @@ -92,7 +92,6 @@ Name | Type | Description | Notes
**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: 0 additions & 2 deletions bindings/java/src/docs/CargoPackageUploadRequest.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,9 @@
## 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: 1 addition & 2 deletions bindings/java/src/docs/CocoapodsPackageUpload.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ Name | Type | Description | Notes
**dependenciesUrl** | **String** | | [optional]
**description** | **String** | A textual description of this package. | [optional]
**displayName** | **String** | | [optional]
**displaySource** | **String** | Where the package originated, for example: &#39;upstream&#39; (proxied/cached from a configured upstream), &#39;connected_repository&#39; (blended in from a connected target repository), or &#39;manual_upload&#39; (uploaded directly to Cloudsmith). | [optional]
**distro** | [**Distribution**](Distribution.md) | | [optional]
**distroVersion** | [**DistributionVersion**](DistributionVersion.md) | | [optional]
**downloads** | **java.math.BigInteger** | | [optional]
Expand All @@ -33,7 +34,6 @@ 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 @@ -92,7 +92,6 @@ Name | Type | Description | Notes
**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: 0 additions & 2 deletions bindings/java/src/docs/CocoapodsPackageUploadRequest.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,9 @@
## 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: 1 addition & 2 deletions bindings/java/src/docs/ComposerPackageUpload.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ Name | Type | Description | Notes
**dependenciesUrl** | **String** | | [optional]
**description** | **String** | A textual description of this package. | [optional]
**displayName** | **String** | | [optional]
**displaySource** | **String** | Where the package originated, for example: &#39;upstream&#39; (proxied/cached from a configured upstream), &#39;connected_repository&#39; (blended in from a connected target repository), or &#39;manual_upload&#39; (uploaded directly to Cloudsmith). | [optional]
**distro** | [**Distribution**](Distribution.md) | | [optional]
**distroVersion** | [**DistributionVersion**](DistributionVersion.md) | | [optional]
**downloads** | **java.math.BigInteger** | | [optional]
Expand All @@ -33,7 +34,6 @@ 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 @@ -92,7 +92,6 @@ Name | Type | Description | Notes
**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: 0 additions & 2 deletions bindings/java/src/docs/ComposerPackageUploadRequest.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,10 @@
## 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: 1 addition & 2 deletions bindings/java/src/docs/ConanPackageUpload.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ Name | Type | Description | Notes
**dependenciesUrl** | **String** | | [optional]
**description** | **String** | A textual description of this package. | [optional]
**displayName** | **String** | | [optional]
**displaySource** | **String** | Where the package originated, for example: &#39;upstream&#39; (proxied/cached from a configured upstream), &#39;connected_repository&#39; (blended in from a connected target repository), or &#39;manual_upload&#39; (uploaded directly to Cloudsmith). | [optional]
**distro** | [**Distribution**](Distribution.md) | | [optional]
**distroVersion** | [**DistributionVersion**](DistributionVersion.md) | | [optional]
**downloads** | **java.math.BigInteger** | | [optional]
Expand All @@ -35,7 +36,6 @@ 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 @@ -94,7 +94,6 @@ Name | Type | Description | Notes
**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: 0 additions & 2 deletions bindings/java/src/docs/ConanPackageUploadRequest.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,13 @@ 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: 1 addition & 2 deletions bindings/java/src/docs/CondaPackageUpload.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ Name | Type | Description | Notes
**dependenciesUrl** | **String** | | [optional]
**description** | **String** | A textual description of this package. | [optional]
**displayName** | **String** | | [optional]
**displaySource** | **String** | Where the package originated, for example: &#39;upstream&#39; (proxied/cached from a configured upstream), &#39;connected_repository&#39; (blended in from a connected target repository), or &#39;manual_upload&#39; (uploaded directly to Cloudsmith). | [optional]
**distro** | [**Distribution**](Distribution.md) | | [optional]
**distroVersion** | [**DistributionVersion**](DistributionVersion.md) | | [optional]
**downloads** | **java.math.BigInteger** | | [optional]
Expand All @@ -33,7 +34,6 @@ 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 @@ -92,7 +92,6 @@ Name | Type | Description | Notes
**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: 0 additions & 2 deletions bindings/java/src/docs/CondaPackageUploadRequest.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,9 @@
## 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]



Loading
Loading