com.i2soft.resource.v20240819.StoragePool Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of i2up-java-sdk Show documentation
Show all versions of i2up-java-sdk Show documentation
Information2 United Data Management Platform SDK for Java
The newest version!
package com.i2soft.resource.v20240819;
import com.i2soft.http.I2Req;
import com.i2soft.http.I2Rs;
import com.i2soft.http.I2softException;
import com.i2soft.http.Response;
import com.i2soft.common.Auth;
import com.i2soft.util.StringMap;
import java.util.Map;
public final class StoragePool {
/**
* Auth 对象
*/
private final Auth auth;
/**
* 构建一个新对象
*
* @param auth Auth对象
*/
public StoragePool(Auth auth) {
this.auth = auth;
}
/**
* 扫描,获取存储机可用磁盘列表
*
* @param args: 参数详见 API 手册
* @return 参数详见 API 手册
* @throws I2softException:
*/
public Map availablePoolMemberList(StringMap args) throws I2softException {
String url = String.format("%s/storage_pool/available_pool_member", auth.cc_url);
Response r = auth.client.post(url, args);
return r.jsonToMap();
}
/**
* 新建存储池
*
* @param args: 参数详见 API 手册
* @return 参数详见 API 手册
* @throws I2softException:
*/
public Map createStoragePool(StringMap args) throws I2softException {
String url = String.format("%s/storage_pool", auth.cc_url);
Response r = auth.client.post(url, args);
return r.jsonToMap();
}
/**
* 修改存储池
*
* @param uuid: uuid
* @param args: 参数详见 API 手册
* @return 参数详见 API 手册
* @throws I2softException:
*/
public Map modifyStoragePool(String uuid, StringMap args) throws I2softException {
String url = String.format("%s/storage_pool/%s", auth.cc_url, uuid);
Response r = auth.client.put(url, args);
return r.jsonToMap();
}
/**
* 查看列表
*
* @param args: 参数详见 API 手册
* @return 参数详见 API 手册
* @throws I2softException:
*/
public Map storagePoolList(StringMap args) throws I2softException {
String url = String.format("%s/storage_pool", auth.cc_url);
Response r = auth.client.get(url, args);
return r.jsonToMap();
}
/**
* 获取单个
*
* @param uuid: uuid
* @return 参数详见 API 手册
* @throws I2softException:
*/
public Map describeStoragePool(String uuid) throws I2softException {
String url = String.format("%s/storage_pool/%s", auth.cc_url, uuid);
Response r = auth.client.get(url, new StringMap());
return r.jsonToMap();
}
/**
* 删除
*
* @param args: 参数详见 API 手册
* @return 参数详见 API 手册
* @throws I2softException:
*/
public Map deleteStoragePool(StringMap args) throws I2softException {
String url = String.format("%s/storage_pool", auth.cc_url);
Response r = auth.client.delete(url, args);
return r.jsonToMap();
}
/**
* 获取状态
*
* @param args: 参数详见 API 手册
* @return 参数详见 API 手册
* @throws I2softException:
*/
public Map listStoragePoolStatus(StringMap args) throws I2softException {
String url = String.format("%s/storage_pool/status", auth.cc_url);
Response r = auth.client.get(url, args);
return r.jsonToMap();
}
/**
* 获取 fc 目标端 hba卡信息
*
* @param args: 参数详见 API 手册
* @return 参数详见 API 手册
* @throws I2softException:
*/
public Map listHbaInfo(StringMap args) throws I2softException {
String url = String.format("%s/storage_pool/hba_info", auth.cc_url);
Response r = auth.client.get(url, args);
return r.jsonToMap();
}
/**
* 删除fc_target
*
* @param args: 参数详见 API 手册
* @return code, message
* @throws I2softException:
*/
public I2Rs.I2SmpRs deleteFcTarget(StringMap args) throws I2softException {
String url = String.format("%s/storage_pool/fc_target", auth.cc_url);
Response r = auth.client.delete(url, args);
return r.jsonToObject(I2Rs.I2SmpRs.class);
}
/**
* 存储池 - 操作
*
* @param args: 参数详见 API 手册
* @return code, message
* @throws I2softException:
*/
public I2Rs.I2SmpRs resetStoragePool(StringMap args) throws I2softException {
String url = String.format("%s/storage_pool/operate", auth.cc_url);
Response r = auth.client.post(url, args);
return r.jsonToObject(I2Rs.I2SmpRs.class);
}
/**
* 存储池 - 操作
*
* @param args: 参数详见 API 手册
* @return code, message
* @throws I2softException:
*/
public I2Rs.I2SmpRs extendStoragePool(StringMap args) throws I2softException {
String url = String.format("%s/storage_pool/operate", auth.cc_url);
Response r = auth.client.post(url, args);
return r.jsonToObject(I2Rs.I2SmpRs.class);
}
/**
* 存储池 - 操作
*
* @param args: 参数详见 API 手册
* @return code, message
* @throws I2softException:
*/
public I2Rs.I2SmpRs renewKeyStoragePool(StringMap args) throws I2softException {
String url = String.format("%s/storage_pool/operate", auth.cc_url);
Response r = auth.client.post(url, args);
return r.jsonToObject(I2Rs.I2SmpRs.class);
}
/**
* 获取节点存储池列表
*
* @param args: 参数详见 API 手册
* @return 参数详见 API 手册
* @throws I2softException:
*/
public Map storagePoolLoadPools(StringMap args) throws I2softException {
String url = String.format("%s/storage_pool/load_pools", auth.cc_url);
Response r = auth.client.get(url, args);
return r.jsonToMap();
}
/**
* 批量导入存储池
*
* @param args: 参数详见 API 手册
* @return 参数详见 API 手册
* @throws I2softException:
*/
public Map storagePoolBatchImport(StringMap args) throws I2softException {
String url = String.format("%s/storage_pool/batch_import", auth.cc_url);
Response r = auth.client.post(url, args);
return r.jsonToMap();
}
/**
* 存储池 - 更新配置项
*
* @param args: 参数详见 API 手册
* @return code, message
* @throws I2softException:
*/
public I2Rs.I2SmpRs storagePoolUpdateConfig(StringMap args) throws I2softException {
String url = String.format("%s/storage_pool/update_config", auth.cc_url);
Response r = auth.client.put(url, args);
return r.jsonToObject(I2Rs.I2SmpRs.class);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy