本文整理汇总了Java中com.huawei.esdk.fusioncompute.local.model.host.QueryHostUsageResp类的典型用法代码示例。如果您正苦于以下问题:Java QueryHostUsageResp类的具体用法?Java QueryHostUsageResp怎么用?Java QueryHostUsageResp使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
QueryHostUsageResp类属于com.huawei.esdk.fusioncompute.local.model.host包,在下文中一共展示了QueryHostUsageResp类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: testQueryHostUsage
import com.huawei.esdk.fusioncompute.local.model.host.QueryHostUsageResp; //导入依赖的package包/类
@Test
public void testQueryHostUsage()
{
String hostUri = "/service/sites/400E07BB/hosts/63";
FCSDKResponse<QueryHostUsageResp> resp = service.queryHostUsage(hostUri);
if (resp != null && resp.getResult() != null)
{
System.out.println(resp.getResult().getCpuResource().getTotalSizeMHz());
System.out.println(resp.getErrorCode());
}
}
示例2: queryHostUsage
import com.huawei.esdk.fusioncompute.local.model.host.QueryHostUsageResp; //导入依赖的package包/类
/**
*
* 查询指定主机计算资源使用情况 。
* <p><b>代码示例:</b></p><br>
* String hostUri = "/service/sites/400E07BB/hosts/112";<br>
* FCSDKResponse<QueryHostUsageResp> resp = service.queryHostUsage(hostUri);<br>
*
* @param hostUri 【必选】主机URI。
* @return {@code FCSDKResponse<QueryHostUsageResp>} 查询指定主机计算资源使用情况响应。
* @since eSDK Cloud V100R003C50
*/
public FCSDKResponse<QueryHostUsageResp> queryHostUsage(String hostUri);
示例3: queryHostUsage
import com.huawei.esdk.fusioncompute.local.model.host.QueryHostUsageResp; //导入依赖的package包/类
/**
*
* 查询指定主机计算资源使用情况。<br>
* <p><b>代码示例:</b></p><br>
* String hostUri = "/service/sites/400E07BB/hosts/112";<br>
* FCSDKResponse<QueryHostUsageResp> resp = service.queryHostUsage(hostUri);<br>
*
* @param hostUri 【必选】主机URI。
* @return {@code FCSDKResponse<QueryHostUsageResp>} 查询指定主机计算资源使用情况响应。
* @since eSDK Cloud V100R003C50
*/
public FCSDKResponse<QueryHostUsageResp> queryHostUsage(String hostUri);
示例4: queryHostUsage
import com.huawei.esdk.fusioncompute.local.model.host.QueryHostUsageResp; //导入依赖的package包/类
/**
*
* 查询指定主机计算资源使用情况。
* @param hostUri 【必选】主机URI
* @return {@code FCSDKResponse<QueryHostUsageResp>}
* @since eSDK Cloud V100R003C50
*/
public FCSDKResponse<QueryHostUsageResp> queryHostUsage(String hostUri);