com.amazonaws.services.cloudwatch.model.GetMetricStatisticsRequest.getUnit()方法的使用及代码示例

x33g5p2x  于2022-01-20 转载在 其他  
字(4.4k)|赞(0)|评价(0)|浏览(75)

本文整理了Java中com.amazonaws.services.cloudwatch.model.GetMetricStatisticsRequest.getUnit()方法的一些代码示例,展示了GetMetricStatisticsRequest.getUnit()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。GetMetricStatisticsRequest.getUnit()方法的具体详情如下:
包路径:com.amazonaws.services.cloudwatch.model.GetMetricStatisticsRequest
类名称:GetMetricStatisticsRequest
方法名:getUnit

GetMetricStatisticsRequest.getUnit介绍

[英]The unit for a given metric. Metrics may be reported in multiple units. Not supplying a unit results in all units being returned. If you specify only a unit that the metric does not report, the results of the call are null.
[中]给定度量的单位。指标可以以多个单位报告。不提供单元会导致返回所有单元。如果只指定度量不报告的单位,则调用结果为空。

代码示例

代码示例来源:origin: aws/aws-sdk-java

if (getExtendedStatistics() != null)
  sb.append("ExtendedStatistics: ").append(getExtendedStatistics()).append(",");
if (getUnit() != null)
  sb.append("Unit: ").append(getUnit());
sb.append("}");
return sb.toString();

代码示例来源:origin: aws/aws-sdk-java

@Override
public int hashCode() {
  final int prime = 31;
  int hashCode = 1;
  hashCode = prime * hashCode + ((getNamespace() == null) ? 0 : getNamespace().hashCode());
  hashCode = prime * hashCode + ((getMetricName() == null) ? 0 : getMetricName().hashCode());
  hashCode = prime * hashCode + ((getDimensions() == null) ? 0 : getDimensions().hashCode());
  hashCode = prime * hashCode + ((getStartTime() == null) ? 0 : getStartTime().hashCode());
  hashCode = prime * hashCode + ((getEndTime() == null) ? 0 : getEndTime().hashCode());
  hashCode = prime * hashCode + ((getPeriod() == null) ? 0 : getPeriod().hashCode());
  hashCode = prime * hashCode + ((getStatistics() == null) ? 0 : getStatistics().hashCode());
  hashCode = prime * hashCode + ((getExtendedStatistics() == null) ? 0 : getExtendedStatistics().hashCode());
  hashCode = prime * hashCode + ((getUnit() == null) ? 0 : getUnit().hashCode());
  return hashCode;
}

代码示例来源:origin: aws/aws-sdk-java

if (other.getExtendedStatistics() != null && other.getExtendedStatistics().equals(this.getExtendedStatistics()) == false)
  return false;
if (other.getUnit() == null ^ this.getUnit() == null)
  return false;
if (other.getUnit() != null && other.getUnit().equals(this.getUnit()) == false)
  return false;
return true;

代码示例来源:origin: aws/aws-sdk-java

if (getMetricStatisticsRequest.getUnit() != null) {
  request.addParameter("Unit", StringUtils.fromString(getMetricStatisticsRequest.getUnit()));

代码示例来源:origin: aws-amplify/aws-sdk-android

@Override
public int hashCode() {
  final int prime = 31;
  int hashCode = 1;
  hashCode = prime * hashCode + ((getNamespace() == null) ? 0 : getNamespace().hashCode());
  hashCode = prime * hashCode + ((getMetricName() == null) ? 0 : getMetricName().hashCode());
  hashCode = prime * hashCode + ((getDimensions() == null) ? 0 : getDimensions().hashCode());
  hashCode = prime * hashCode + ((getStartTime() == null) ? 0 : getStartTime().hashCode());
  hashCode = prime * hashCode + ((getEndTime() == null) ? 0 : getEndTime().hashCode());
  hashCode = prime * hashCode + ((getPeriod() == null) ? 0 : getPeriod().hashCode());
  hashCode = prime * hashCode + ((getStatistics() == null) ? 0 : getStatistics().hashCode());
  hashCode = prime * hashCode + ((getUnit() == null) ? 0 : getUnit().hashCode());
  return hashCode;
}

代码示例来源:origin: aws-amplify/aws-sdk-android

/**
 * Returns a string representation of this object; useful for testing and
 * debugging.
 *
 * @return A string representation of this object.
 * @see java.lang.Object#toString()
 */
@Override
public String toString() {
  StringBuilder sb = new StringBuilder();
  sb.append("{");
  if (getNamespace() != null)
    sb.append("Namespace: " + getNamespace() + ",");
  if (getMetricName() != null)
    sb.append("MetricName: " + getMetricName() + ",");
  if (getDimensions() != null)
    sb.append("Dimensions: " + getDimensions() + ",");
  if (getStartTime() != null)
    sb.append("StartTime: " + getStartTime() + ",");
  if (getEndTime() != null)
    sb.append("EndTime: " + getEndTime() + ",");
  if (getPeriod() != null)
    sb.append("Period: " + getPeriod() + ",");
  if (getStatistics() != null)
    sb.append("Statistics: " + getStatistics() + ",");
  if (getUnit() != null)
    sb.append("Unit: " + getUnit());
  sb.append("}");
  return sb.toString();
}

代码示例来源:origin: aws-amplify/aws-sdk-android

&& other.getStatistics().equals(this.getStatistics()) == false)
  return false;
if (other.getUnit() == null ^ this.getUnit() == null)
  return false;
if (other.getUnit() != null && other.getUnit().equals(this.getUnit()) == false)
  return false;
return true;

代码示例来源:origin: aws-amplify/aws-sdk-android

if (getMetricStatisticsRequest.getUnit() != null) {
  prefix = "Unit";
  String unit = getMetricStatisticsRequest.getUnit();
  request.addParameter(prefix, StringUtils.fromString(unit));

相关文章

微信公众号

最新文章

更多