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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package org.zstack.header.host;

import org.zstack.header.log.MaskSensitiveInfo;
import org.zstack.header.query.APIQueryReply;
import org.zstack.header.rest.RestResponse;

Expand All @@ -9,6 +10,7 @@
import java.util.List;

@RestResponse(allTo = "inventories")
@MaskSensitiveInfo
public class APIQueryHostReply extends APIQueryReply {
private List<HostInventory> inventories;

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


import org.zstack.sdk.BareMetal2DpuHostInventory;

public class BareMetal2DpuChassisInventory extends org.zstack.sdk.BareMetal2ChassisInventory {

public java.lang.String config;
public void setConfig(java.lang.String config) {
public java.util.LinkedHashMap config;
public void setConfig(java.util.LinkedHashMap config) {
this.config = config;
}
public java.lang.String getConfig() {
public java.util.LinkedHashMap getConfig() {
return this.config;
}

public java.lang.String hostUuid;
public void setHostUuid(java.lang.String hostUuid) {
this.hostUuid = hostUuid;
public BareMetal2DpuHostInventory dpuHost;
public void setDpuHost(BareMetal2DpuHostInventory dpuHost) {
this.dpuHost = dpuHost;
}
public java.lang.String getHostUuid() {
return this.hostUuid;
public BareMetal2DpuHostInventory getDpuHost() {
return this.dpuHost;
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -5490,6 +5490,8 @@ public class CloudOperationsErrorCode {

public static final String ORG_ZSTACK_BAREMETAL2_DPU_10001 = "ORG_ZSTACK_BAREMETAL2_DPU_10001";

public static final String ORG_ZSTACK_BAREMETAL2_DPU_10002 = "ORG_ZSTACK_BAREMETAL2_DPU_10002";

public static final String ORG_ZSTACK_STORAGE_PRIMARY_SHAREDBLOCK_10000 = "ORG_ZSTACK_STORAGE_PRIMARY_SHAREDBLOCK_10000";

public static final String ORG_ZSTACK_STORAGE_PRIMARY_SHAREDBLOCK_10001 = "ORG_ZSTACK_STORAGE_PRIMARY_SHAREDBLOCK_10001";
Expand Down