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
  •  
  •  
  •  
27 changes: 23 additions & 4 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.26</version>
<version>2.0.27</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.26"
compile "io.cloudsmith.api:cloudsmith-api:2.0.27"
```

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

Then manually install the following JARs:

* `target/cloudsmith-api-2.0.26.jar`
* `target/cloudsmith-api-2.0.27.jar`
* `target/lib/*.jar`

## Getting Started
Expand Down Expand Up @@ -149,6 +149,7 @@ Class | Method | HTTP request | Description
*MetricsApi* | [**metricsPackagesList**](docs/MetricsApi.md#metricsPackagesList) | **GET** /metrics/packages/{owner}/{repo}/ | View for listing package usage metrics, for a repository.
*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.
*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.
*OrgsApi* | [**orgsDenyPolicyDelete**](docs/OrgsApi.md#orgsDenyPolicyDelete) | **DELETE** /orgs/{org}/deny-policy/{slug_perm}/ | Delete a package deny policy.
Expand Down Expand Up @@ -298,16 +299,25 @@ Class | Method | HTTP request | Description
*QuotaApi* | [**quotaOssRead**](docs/QuotaApi.md#quotaOssRead) | **GET** /quota/oss/{owner}/ | Open-source Quota usage for a given namespace.
*QuotaApi* | [**quotaRead**](docs/QuotaApi.md#quotaRead) | **GET** /quota/{owner}/ | Quota usage for a given namespace.
*RatesApi* | [**ratesLimitsList**](docs/RatesApi.md#ratesLimitsList) | **GET** /rates/limits/ | Endpoint to check rate limits for current user.
*RecycleBinApi* | [**recycleBinAction**](docs/RecycleBinApi.md#recycleBinAction) | **POST** /recycle-bin/{owner}/action/ |
*RecycleBinApi* | [**recycleBinList**](docs/RecycleBinApi.md#recycleBinList) | **GET** /recycle-bin/{owner}/ | List soft-deleted packages in recycle bin
*RecycleBinApi* | [**recycleBinRecycleBinAction**](docs/RecycleBinApi.md#recycleBinRecycleBinAction) | **POST** /recycle-bin/{owner}/action/ |
*ReposApi* | [**apiReposGeoipStatus**](docs/ReposApi.md#apiReposGeoipStatus) | **GET** /repos/{owner}/{identifier}/geoip/status/ | Retrieve the GeoIP status for this repository.
*ReposApi* | [**repoRetentionPartialUpdate**](docs/ReposApi.md#repoRetentionPartialUpdate) | **PATCH** /repos/{owner}/{repo}/retention/ | Update the retention rules for the repository.
*ReposApi* | [**repoRetentionRead**](docs/ReposApi.md#repoRetentionRead) | **GET** /repos/{owner}/{repo}/retention/ | Retrieve the retention rules for the repository.
*ReposApi* | [**reposConnectedCreate**](docs/ReposApi.md#reposConnectedCreate) | **POST** /repos/{owner}/{identifier}/connected/ | Create a connected repository for this repository.
*ReposApi* | [**reposConnectedDelete**](docs/ReposApi.md#reposConnectedDelete) | **DELETE** /repos/{owner}/{identifier}/connected/{slug_perm}/ | Delete a connected repository for this repository.
*ReposApi* | [**reposConnectedList**](docs/ReposApi.md#reposConnectedList) | **GET** /repos/{owner}/{identifier}/connected/ | List connected repositories for this repository.
*ReposApi* | [**reposConnectedPartialUpdate**](docs/ReposApi.md#reposConnectedPartialUpdate) | **PATCH** /repos/{owner}/{identifier}/connected/{slug_perm}/ | Partially update a connected repository for this repository.
*ReposApi* | [**reposConnectedRead**](docs/ReposApi.md#reposConnectedRead) | **GET** /repos/{owner}/{identifier}/connected/{slug_perm}/ | Retrieve a connected repository for this repository.
*ReposApi* | [**reposConnectedUpdate**](docs/ReposApi.md#reposConnectedUpdate) | **PUT** /repos/{owner}/{identifier}/connected/{slug_perm}/ | Update a connected repository for this repository.
*ReposApi* | [**reposCreate**](docs/ReposApi.md#reposCreate) | **POST** /repos/{owner}/ | Create a new repository in a given namespace.
*ReposApi* | [**reposDelete**](docs/ReposApi.md#reposDelete) | **DELETE** /repos/{owner}/{identifier}/ |
*ReposApi* | [**reposEcdsaCreate**](docs/ReposApi.md#reposEcdsaCreate) | **POST** /repos/{owner}/{identifier}/ecdsa/ | Set the active ECDSA key for the Repository.
*ReposApi* | [**reposEcdsaList**](docs/ReposApi.md#reposEcdsaList) | **GET** /repos/{owner}/{identifier}/ecdsa/ | Retrieve the active ECDSA key for the Repository.
*ReposApi* | [**reposEcdsaRegenerate**](docs/ReposApi.md#reposEcdsaRegenerate) | **POST** /repos/{owner}/{identifier}/ecdsa/regenerate/ | Regenerate ECDSA Key for the Repository.
*ReposApi* | [**reposEd25519Create**](docs/ReposApi.md#reposEd25519Create) | **POST** /repos/{owner}/{identifier}/ed25519/ | Set the active Ed25519 key for the Repository.
*ReposApi* | [**reposEd25519List**](docs/ReposApi.md#reposEd25519List) | **GET** /repos/{owner}/{identifier}/ed25519/ | Retrieve the active Ed25519 key for the Repository.
*ReposApi* | [**reposEd25519Regenerate**](docs/ReposApi.md#reposEd25519Regenerate) | **POST** /repos/{owner}/{identifier}/ed25519/regenerate/ | Regenerate Ed25519 Key for the Repository.
*ReposApi* | [**reposGeoipDisable**](docs/ReposApi.md#reposGeoipDisable) | **POST** /repos/{owner}/{identifier}/geoip/disable/ | Disable GeoIP for this repository.
*ReposApi* | [**reposGeoipEnable**](docs/ReposApi.md#reposGeoipEnable) | **POST** /repos/{owner}/{identifier}/geoip/enable/ | Enable GeoIP for this repository.
*ReposApi* | [**reposGeoipPartialUpdate**](docs/ReposApi.md#reposGeoipPartialUpdate) | **PATCH** /repos/{owner}/{identifier}/geoip | Partially update repository geoip rules.
Expand Down Expand Up @@ -506,6 +516,9 @@ Class | Method | HTTP request | Description
- [CondaUpstream](docs/CondaUpstream.md)
- [CondaUpstreamRequest](docs/CondaUpstreamRequest.md)
- [CondaUpstreamRequestPatch](docs/CondaUpstreamRequestPatch.md)
- [ConnectedRepository](docs/ConnectedRepository.md)
- [ConnectedRepositoryRequest](docs/ConnectedRepositoryRequest.md)
- [ConnectedRepositoryRequestPatch](docs/ConnectedRepositoryRequestPatch.md)
- [CranPackageUpload](docs/CranPackageUpload.md)
- [CranPackageUploadRequest](docs/CranPackageUploadRequest.md)
- [CranUpstream](docs/CranUpstream.md)
Expand Down Expand Up @@ -567,6 +580,7 @@ Class | Method | HTTP request | Description
- [HuggingfaceUpstreamRequestPatch](docs/HuggingfaceUpstreamRequestPatch.md)
- [InlineResponse200](docs/InlineResponse200.md)
- [InlineResponse2001](docs/InlineResponse2001.md)
- [InlineResponse2002](docs/InlineResponse2002.md)
- [LuarocksPackageUpload](docs/LuarocksPackageUpload.md)
- [LuarocksPackageUploadRequest](docs/LuarocksPackageUploadRequest.md)
- [MavenPackageUpload](docs/MavenPackageUpload.md)
Expand All @@ -576,6 +590,7 @@ Class | Method | HTTP request | Description
- [MavenUpstreamRequestPatch](docs/MavenUpstreamRequestPatch.md)
- [McpPackageUpload](docs/McpPackageUpload.md)
- [McpPackageUploadRequest](docs/McpPackageUploadRequest.md)
- [MemberTeams](docs/MemberTeams.md)
- [ModelPackage](docs/ModelPackage.md)
- [Namespace](docs/Namespace.md)
- [NamespaceAuditLog](docs/NamespaceAuditLog.md)
Expand All @@ -593,6 +608,8 @@ Class | Method | HTTP request | Description
- [NugetUpstreamRequest](docs/NugetUpstreamRequest.md)
- [NugetUpstreamRequestPatch](docs/NugetUpstreamRequestPatch.md)
- [Organization](docs/Organization.md)
- [OrganizationCustomDomainNestedRepo](docs/OrganizationCustomDomainNestedRepo.md)
- [OrganizationCustomDomains](docs/OrganizationCustomDomains.md)
- [OrganizationGroupSync](docs/OrganizationGroupSync.md)
- [OrganizationGroupSyncRequest](docs/OrganizationGroupSyncRequest.md)
- [OrganizationGroupSyncStatus](docs/OrganizationGroupSyncStatus.md)
Expand Down Expand Up @@ -680,6 +697,8 @@ Class | Method | HTTP request | Description
- [RepositoryCreateRequest](docs/RepositoryCreateRequest.md)
- [RepositoryEcdsaKey](docs/RepositoryEcdsaKey.md)
- [RepositoryEcdsaKeyCreate](docs/RepositoryEcdsaKeyCreate.md)
- [RepositoryEd25519Key](docs/RepositoryEd25519Key.md)
- [RepositoryEd25519KeyCreate](docs/RepositoryEd25519KeyCreate.md)
- [RepositoryGeoIpCidr](docs/RepositoryGeoIpCidr.md)
- [RepositoryGeoIpCountryCode](docs/RepositoryGeoIpCountryCode.md)
- [RepositoryGeoIpRules](docs/RepositoryGeoIpRules.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.26'
version = '2.0.27'

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.26",
"artifactVersion": "2.0.27",
"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.26",
version := "2.0.27",
scalaVersion := "2.11.4",
scalacOptions ++= Seq("-feature"),
javacOptions in compile ++= Seq("-Xlint:deprecation"),
Expand Down
2 changes: 2 additions & 0 deletions bindings/java/src/docs/AlpinePackageUpload.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ Name | Type | Description | Notes
**isCopyable** | **Boolean** | | [optional]
**isDeleteable** | **Boolean** | | [optional]
**isDownloadable** | **Boolean** | | [optional]
**isHidden** | **Boolean** | | [optional]
**isMoveable** | **Boolean** | | [optional]
**isQuarantinable** | **Boolean** | | [optional]
**isQuarantined** | **Boolean** | | [optional]
Expand All @@ -49,6 +50,7 @@ Name | Type | Description | Notes
**numFiles** | **java.math.BigInteger** | | [optional]
**originRepository** | **String** | | [optional]
**originRepositoryUrl** | **String** | | [optional]
**osiApproved** | **Boolean** | Whether the package&#39;s SPDX license is OSI-approved. | [optional]
**packageType** | **java.math.BigInteger** | The type of package contents. | [optional]
**policyViolated** | **Boolean** | Whether or not the package has violated any policy. | [optional]
**rawLicense** | **String** | The raw license string. | [optional]
Expand Down
2 changes: 2 additions & 0 deletions bindings/java/src/docs/CargoPackageUpload.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ Name | Type | Description | Notes
**isCopyable** | **Boolean** | | [optional]
**isDeleteable** | **Boolean** | | [optional]
**isDownloadable** | **Boolean** | | [optional]
**isHidden** | **Boolean** | | [optional]
**isMoveable** | **Boolean** | | [optional]
**isQuarantinable** | **Boolean** | | [optional]
**isQuarantined** | **Boolean** | | [optional]
Expand All @@ -49,6 +50,7 @@ Name | Type | Description | Notes
**numFiles** | **java.math.BigInteger** | | [optional]
**originRepository** | **String** | | [optional]
**originRepositoryUrl** | **String** | | [optional]
**osiApproved** | **Boolean** | Whether the package&#39;s SPDX license is OSI-approved. | [optional]
**packageType** | **java.math.BigInteger** | The type of package contents. | [optional]
**policyViolated** | **Boolean** | Whether or not the package has violated any policy. | [optional]
**rawLicense** | **String** | The raw license string. | [optional]
Expand Down
2 changes: 2 additions & 0 deletions bindings/java/src/docs/CocoapodsPackageUpload.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ Name | Type | Description | Notes
**isCopyable** | **Boolean** | | [optional]
**isDeleteable** | **Boolean** | | [optional]
**isDownloadable** | **Boolean** | | [optional]
**isHidden** | **Boolean** | | [optional]
**isMoveable** | **Boolean** | | [optional]
**isQuarantinable** | **Boolean** | | [optional]
**isQuarantined** | **Boolean** | | [optional]
Expand All @@ -49,6 +50,7 @@ Name | Type | Description | Notes
**numFiles** | **java.math.BigInteger** | | [optional]
**originRepository** | **String** | | [optional]
**originRepositoryUrl** | **String** | | [optional]
**osiApproved** | **Boolean** | Whether the package&#39;s SPDX license is OSI-approved. | [optional]
**packageType** | **java.math.BigInteger** | The type of package contents. | [optional]
**policyViolated** | **Boolean** | Whether or not the package has violated any policy. | [optional]
**rawLicense** | **String** | The raw license string. | [optional]
Expand Down
2 changes: 2 additions & 0 deletions bindings/java/src/docs/ComposerPackageUpload.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ Name | Type | Description | Notes
**isCopyable** | **Boolean** | | [optional]
**isDeleteable** | **Boolean** | | [optional]
**isDownloadable** | **Boolean** | | [optional]
**isHidden** | **Boolean** | | [optional]
**isMoveable** | **Boolean** | | [optional]
**isQuarantinable** | **Boolean** | | [optional]
**isQuarantined** | **Boolean** | | [optional]
Expand All @@ -49,6 +50,7 @@ Name | Type | Description | Notes
**numFiles** | **java.math.BigInteger** | | [optional]
**originRepository** | **String** | | [optional]
**originRepositoryUrl** | **String** | | [optional]
**osiApproved** | **Boolean** | Whether the package&#39;s SPDX license is OSI-approved. | [optional]
**packageType** | **java.math.BigInteger** | The type of package contents. | [optional]
**policyViolated** | **Boolean** | Whether or not the package has violated any policy. | [optional]
**rawLicense** | **String** | The raw license string. | [optional]
Expand Down
2 changes: 2 additions & 0 deletions bindings/java/src/docs/ConanPackageUpload.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ Name | Type | Description | Notes
**isCopyable** | **Boolean** | | [optional]
**isDeleteable** | **Boolean** | | [optional]
**isDownloadable** | **Boolean** | | [optional]
**isHidden** | **Boolean** | | [optional]
**isMoveable** | **Boolean** | | [optional]
**isQuarantinable** | **Boolean** | | [optional]
**isQuarantined** | **Boolean** | | [optional]
Expand All @@ -51,6 +52,7 @@ Name | Type | Description | Notes
**numFiles** | **java.math.BigInteger** | | [optional]
**originRepository** | **String** | | [optional]
**originRepositoryUrl** | **String** | | [optional]
**osiApproved** | **Boolean** | Whether the package&#39;s SPDX license is OSI-approved. | [optional]
**packageType** | **java.math.BigInteger** | The type of package contents. | [optional]
**policyViolated** | **Boolean** | Whether or not the package has violated any policy. | [optional]
**rawLicense** | **String** | The raw license string. | [optional]
Expand Down
2 changes: 2 additions & 0 deletions bindings/java/src/docs/CondaPackageUpload.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ Name | Type | Description | Notes
**isCopyable** | **Boolean** | | [optional]
**isDeleteable** | **Boolean** | | [optional]
**isDownloadable** | **Boolean** | | [optional]
**isHidden** | **Boolean** | | [optional]
**isMoveable** | **Boolean** | | [optional]
**isQuarantinable** | **Boolean** | | [optional]
**isQuarantined** | **Boolean** | | [optional]
Expand All @@ -49,6 +50,7 @@ Name | Type | Description | Notes
**numFiles** | **java.math.BigInteger** | | [optional]
**originRepository** | **String** | | [optional]
**originRepositoryUrl** | **String** | | [optional]
**osiApproved** | **Boolean** | Whether the package&#39;s SPDX license is OSI-approved. | [optional]
**packageType** | **java.math.BigInteger** | The type of package contents. | [optional]
**policyViolated** | **Boolean** | Whether or not the package has violated any policy. | [optional]
**rawLicense** | **String** | The raw license string. | [optional]
Expand Down
14 changes: 14 additions & 0 deletions bindings/java/src/docs/ConnectedRepository.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@

# ConnectedRepository

## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**createdAt** | [**OffsetDateTime**](OffsetDateTime.md) | The date and time when the connection was created. | [optional]
**isActive** | **Boolean** | | [optional]
**priority** | **java.math.BigInteger** | Repositories are checked in ascending order (starting at 1). If multiple repositories have the same priority, the oldest one is used first. | [optional]
**slugPerm** | **String** | | [optional]
**targetRepository** | **String** | The slug of the target repository to connect to. |



12 changes: 12 additions & 0 deletions bindings/java/src/docs/ConnectedRepositoryRequest.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@

# ConnectedRepositoryRequest

## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**isActive** | **Boolean** | | [optional]
**priority** | **java.math.BigInteger** | Repositories are checked in ascending order (starting at 1). If multiple repositories have the same priority, the oldest one is used first. | [optional]
**targetRepository** | **String** | The slug of the target repository to connect to. |



12 changes: 12 additions & 0 deletions bindings/java/src/docs/ConnectedRepositoryRequestPatch.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@

# ConnectedRepositoryRequestPatch

## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**isActive** | **Boolean** | | [optional]
**priority** | **java.math.BigInteger** | Repositories are checked in ascending order (starting at 1). If multiple repositories have the same priority, the oldest one is used first. | [optional]
**targetRepository** | **String** | The slug of the target repository to connect to. | [optional]



2 changes: 2 additions & 0 deletions bindings/java/src/docs/CranPackageUpload.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ Name | Type | Description | Notes
**isCopyable** | **Boolean** | | [optional]
**isDeleteable** | **Boolean** | | [optional]
**isDownloadable** | **Boolean** | | [optional]
**isHidden** | **Boolean** | | [optional]
**isMoveable** | **Boolean** | | [optional]
**isQuarantinable** | **Boolean** | | [optional]
**isQuarantined** | **Boolean** | | [optional]
Expand All @@ -49,6 +50,7 @@ Name | Type | Description | Notes
**numFiles** | **java.math.BigInteger** | | [optional]
**originRepository** | **String** | | [optional]
**originRepositoryUrl** | **String** | | [optional]
**osiApproved** | **Boolean** | Whether the package&#39;s SPDX license is OSI-approved. | [optional]
**packageType** | **java.math.BigInteger** | The type of package contents. | [optional]
**policyViolated** | **Boolean** | Whether or not the package has violated any policy. | [optional]
**rVersion** | **String** | Binary package uploads should specify the version of R they were built for. | [optional]
Expand Down
2 changes: 2 additions & 0 deletions bindings/java/src/docs/DartPackageUpload.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ Name | Type | Description | Notes
**isCopyable** | **Boolean** | | [optional]
**isDeleteable** | **Boolean** | | [optional]
**isDownloadable** | **Boolean** | | [optional]
**isHidden** | **Boolean** | | [optional]
**isMoveable** | **Boolean** | | [optional]
**isQuarantinable** | **Boolean** | | [optional]
**isQuarantined** | **Boolean** | | [optional]
Expand All @@ -49,6 +50,7 @@ Name | Type | Description | Notes
**numFiles** | **java.math.BigInteger** | | [optional]
**originRepository** | **String** | | [optional]
**originRepositoryUrl** | **String** | | [optional]
**osiApproved** | **Boolean** | Whether the package&#39;s SPDX license is OSI-approved. | [optional]
**packageType** | **java.math.BigInteger** | The type of package contents. | [optional]
**policyViolated** | **Boolean** | Whether or not the package has violated any policy. | [optional]
**rawLicense** | **String** | The raw license string. | [optional]
Expand Down
2 changes: 2 additions & 0 deletions bindings/java/src/docs/DebPackageUpload.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ Name | Type | Description | Notes
**isCopyable** | **Boolean** | | [optional]
**isDeleteable** | **Boolean** | | [optional]
**isDownloadable** | **Boolean** | | [optional]
**isHidden** | **Boolean** | | [optional]
**isMoveable** | **Boolean** | | [optional]
**isQuarantinable** | **Boolean** | | [optional]
**isQuarantined** | **Boolean** | | [optional]
Expand All @@ -49,6 +50,7 @@ Name | Type | Description | Notes
**numFiles** | **java.math.BigInteger** | | [optional]
**originRepository** | **String** | | [optional]
**originRepositoryUrl** | **String** | | [optional]
**osiApproved** | **Boolean** | Whether the package&#39;s SPDX license is OSI-approved. | [optional]
**packageType** | **java.math.BigInteger** | The type of package contents. | [optional]
**policyViolated** | **Boolean** | Whether or not the package has violated any policy. | [optional]
**rawLicense** | **String** | The raw license string. | [optional]
Expand Down
Loading
Loading