mirror of
https://codeberg.org/gitnex/tea4j-autodeploy
synced 2026-05-31 07:01:55 +00:00
Synchronizing API and documentation updates
This commit is contained in:
+1
-1
@@ -367,7 +367,7 @@ Name | Type | Description | Notes
|
||||
**owner** | **String**| owner of the packages |
|
||||
**page** | **Integer**| page number of results to return (1-based) | [optional]
|
||||
**limit** | **Integer**| page size of results | [optional]
|
||||
**type** | **String**| package type filter | [optional] [enum: cargo, composer, conan, conda, container, generic, helm, maven, npm, nuget, pub, pypi, rubygems, vagrant]
|
||||
**type** | **String**| package type filter | [optional] [enum: cargo, chef, composer, conan, conda, container, generic, helm, maven, npm, nuget, pub, pypi, rubygems, vagrant]
|
||||
**q** | **String**| name filter | [optional]
|
||||
|
||||
### Return type
|
||||
|
||||
@@ -33,6 +33,7 @@ Name | Type | Description | Notes
|
||||
**internalTracker** | [**InternalTracker**](InternalTracker.md) | | [optional]
|
||||
**language** | **String** | | [optional]
|
||||
**languagesUrl** | **String** | | [optional]
|
||||
**link** | **String** | | [optional]
|
||||
**mirror** | **Boolean** | | [optional]
|
||||
**mirrorInterval** | **String** | | [optional]
|
||||
**mirrorUpdated** | [**Date**](Date.md) | | [optional]
|
||||
|
||||
@@ -113,6 +113,9 @@ public class Repository implements Serializable {
|
||||
@SerializedName("languages_url")
|
||||
private String languagesUrl = null;
|
||||
|
||||
@SerializedName("link")
|
||||
private String link = null;
|
||||
|
||||
@SerializedName("mirror")
|
||||
private Boolean mirror = null;
|
||||
|
||||
@@ -743,6 +746,25 @@ public class Repository implements Serializable {
|
||||
this.languagesUrl = languagesUrl;
|
||||
}
|
||||
|
||||
public Repository link(String link) {
|
||||
this.link = link;
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get link
|
||||
*
|
||||
* @return link
|
||||
*/
|
||||
@Schema(description = "")
|
||||
public String getLink() {
|
||||
return link;
|
||||
}
|
||||
|
||||
public void setLink(String link) {
|
||||
this.link = link;
|
||||
}
|
||||
|
||||
public Repository mirror(Boolean mirror) {
|
||||
this.mirror = mirror;
|
||||
return this;
|
||||
@@ -1163,6 +1185,7 @@ public class Repository implements Serializable {
|
||||
&& Objects.equals(this.internalTracker, repository.internalTracker)
|
||||
&& Objects.equals(this.language, repository.language)
|
||||
&& Objects.equals(this.languagesUrl, repository.languagesUrl)
|
||||
&& Objects.equals(this.link, repository.link)
|
||||
&& Objects.equals(this.mirror, repository.mirror)
|
||||
&& Objects.equals(this.mirrorInterval, repository.mirrorInterval)
|
||||
&& Objects.equals(this.mirrorUpdated, repository.mirrorUpdated)
|
||||
@@ -1218,6 +1241,7 @@ public class Repository implements Serializable {
|
||||
internalTracker,
|
||||
language,
|
||||
languagesUrl,
|
||||
link,
|
||||
mirror,
|
||||
mirrorInterval,
|
||||
mirrorUpdated,
|
||||
@@ -1281,6 +1305,7 @@ public class Repository implements Serializable {
|
||||
sb.append(" internalTracker: ").append(toIndentedString(internalTracker)).append("\n");
|
||||
sb.append(" language: ").append(toIndentedString(language)).append("\n");
|
||||
sb.append(" languagesUrl: ").append(toIndentedString(languagesUrl)).append("\n");
|
||||
sb.append(" link: ").append(toIndentedString(link)).append("\n");
|
||||
sb.append(" mirror: ").append(toIndentedString(mirror)).append("\n");
|
||||
sb.append(" mirrorInterval: ").append(toIndentedString(mirrorInterval)).append("\n");
|
||||
sb.append(" mirrorUpdated: ").append(toIndentedString(mirrorUpdated)).append("\n");
|
||||
|
||||
Reference in New Issue
Block a user