Skip to content
Closed
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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,14 @@ public java.lang.String getLastError() {
return this.lastError;
}

public java.lang.String uploadFileUrl;
public void setUploadFileUrl(java.lang.String uploadFileUrl) {
this.uploadFileUrl = uploadFileUrl;
}
public java.lang.String getUploadFileUrl() {
return this.uploadFileUrl;
}

public java.sql.Timestamp createDate;
public void setCreateDate(java.sql.Timestamp createDate) {
this.createDate = createDate;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,12 @@ public Result throwExceptionIfError() {
@Param(required = false, nonempty = false, nullElements = false, emptyString = true, noTrim = false)
public java.lang.String backupStorageUuid;

@Param(required = false, maxLength = 255, nonempty = false, nullElements = false, emptyString = true, noTrim = false)
public java.lang.String longJobName;

@Param(required = false, maxLength = 2048, nonempty = false, nullElements = false, emptyString = true, noTrim = false)
public java.lang.String longJobDescription;

@Param(required = false)
public java.lang.String resourceUuid;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package org.zstack.sdk.platformservice;

import org.zstack.sdk.platformservice.PlatformServicePackageInventory;
import org.zstack.sdk.LongJobInventory;

public class UploadPlatformServicePackageResult {
public PlatformServicePackageInventory inventory;
Expand All @@ -11,4 +12,12 @@ public PlatformServicePackageInventory getInventory() {
return this.inventory;
}

public LongJobInventory longJobInventory;
public void setLongJobInventory(LongJobInventory longJobInventory) {
this.longJobInventory = longJobInventory;
}
public LongJobInventory getLongJobInventory() {
return this.longJobInventory;
}

}