Class MetricSpecification

java.lang.Object
com.azure.resourcemanager.keyvault.models.MetricSpecification
All Implemented Interfaces:
com.azure.json.JsonSerializable<MetricSpecification>

public final class MetricSpecification extends Object implements com.azure.json.JsonSerializable<MetricSpecification>
Metric specification of operation.
  • Constructor Details

    • MetricSpecification

      public MetricSpecification()
      Creates an instance of MetricSpecification class.
  • Method Details

    • name

      public String name()
      Get the name property: Name of metric specification.
      Returns:
      the name value.
    • withName

      public MetricSpecification withName(String name)
      Set the name property: Name of metric specification.
      Parameters:
      name - the name value to set.
      Returns:
      the MetricSpecification object itself.
    • displayName

      public String displayName()
      Get the displayName property: Display name of metric specification.
      Returns:
      the displayName value.
    • withDisplayName

      public MetricSpecification withDisplayName(String displayName)
      Set the displayName property: Display name of metric specification.
      Parameters:
      displayName - the displayName value to set.
      Returns:
      the MetricSpecification object itself.
    • displayDescription

      public String displayDescription()
      Get the displayDescription property: Display description of metric specification.
      Returns:
      the displayDescription value.
    • withDisplayDescription

      public MetricSpecification withDisplayDescription(String displayDescription)
      Set the displayDescription property: Display description of metric specification.
      Parameters:
      displayDescription - the displayDescription value to set.
      Returns:
      the MetricSpecification object itself.
    • unit

      public String unit()
      Get the unit property: The metric unit. Possible values include: 'Bytes', 'Count', 'Milliseconds'.
      Returns:
      the unit value.
    • withUnit

      public MetricSpecification withUnit(String unit)
      Set the unit property: The metric unit. Possible values include: 'Bytes', 'Count', 'Milliseconds'.
      Parameters:
      unit - the unit value to set.
      Returns:
      the MetricSpecification object itself.
    • aggregationType

      public String aggregationType()
      Get the aggregationType property: The metric aggregation type. Possible values include: 'Average', 'Count', 'Total'.
      Returns:
      the aggregationType value.
    • withAggregationType

      public MetricSpecification withAggregationType(String aggregationType)
      Set the aggregationType property: The metric aggregation type. Possible values include: 'Average', 'Count', 'Total'.
      Parameters:
      aggregationType - the aggregationType value to set.
      Returns:
      the MetricSpecification object itself.
    • supportedAggregationTypes

      public List<String> supportedAggregationTypes()
      Get the supportedAggregationTypes property: The supported aggregation types for the metrics.
      Returns:
      the supportedAggregationTypes value.
    • withSupportedAggregationTypes

      public MetricSpecification withSupportedAggregationTypes(List<String> supportedAggregationTypes)
      Set the supportedAggregationTypes property: The supported aggregation types for the metrics.
      Parameters:
      supportedAggregationTypes - the supportedAggregationTypes value to set.
      Returns:
      the MetricSpecification object itself.
    • supportedTimeGrainTypes

      public List<String> supportedTimeGrainTypes()
      Get the supportedTimeGrainTypes property: The supported time grain types for the metrics.
      Returns:
      the supportedTimeGrainTypes value.
    • withSupportedTimeGrainTypes

      public MetricSpecification withSupportedTimeGrainTypes(List<String> supportedTimeGrainTypes)
      Set the supportedTimeGrainTypes property: The supported time grain types for the metrics.
      Parameters:
      supportedTimeGrainTypes - the supportedTimeGrainTypes value to set.
      Returns:
      the MetricSpecification object itself.
    • lockAggregationType

      public String lockAggregationType()
      Get the lockAggregationType property: The metric lock aggregation type.
      Returns:
      the lockAggregationType value.
    • withLockAggregationType

      public MetricSpecification withLockAggregationType(String lockAggregationType)
      Set the lockAggregationType property: The metric lock aggregation type.
      Parameters:
      lockAggregationType - the lockAggregationType value to set.
      Returns:
      the MetricSpecification object itself.
    • dimensions

      public List<DimensionProperties> dimensions()
      Get the dimensions property: The dimensions of metric.
      Returns:
      the dimensions value.
    • withDimensions

      public MetricSpecification withDimensions(List<DimensionProperties> dimensions)
      Set the dimensions property: The dimensions of metric.
      Parameters:
      dimensions - the dimensions value to set.
      Returns:
      the MetricSpecification object itself.
    • fillGapWithZero

      public Boolean fillGapWithZero()
      Get the fillGapWithZero property: Property to specify whether to fill gap with zero.
      Returns:
      the fillGapWithZero value.
    • withFillGapWithZero

      public MetricSpecification withFillGapWithZero(Boolean fillGapWithZero)
      Set the fillGapWithZero property: Property to specify whether to fill gap with zero.
      Parameters:
      fillGapWithZero - the fillGapWithZero value to set.
      Returns:
      the MetricSpecification object itself.
    • internalMetricName

      public String internalMetricName()
      Get the internalMetricName property: The internal metric name.
      Returns:
      the internalMetricName value.
    • withInternalMetricName

      public MetricSpecification withInternalMetricName(String internalMetricName)
      Set the internalMetricName property: The internal metric name.
      Parameters:
      internalMetricName - the internalMetricName value to set.
      Returns:
      the MetricSpecification object itself.
    • validate

      public void validate()
      Validates the instance.
      Throws:
      IllegalArgumentException - thrown if the instance is not valid.
    • toJson

      public com.azure.json.JsonWriter toJson(com.azure.json.JsonWriter jsonWriter) throws IOException
      Specified by:
      toJson in interface com.azure.json.JsonSerializable<MetricSpecification>
      Throws:
      IOException
    • fromJson

      public static MetricSpecification fromJson(com.azure.json.JsonReader jsonReader) throws IOException
      Reads an instance of MetricSpecification from the JsonReader.
      Parameters:
      jsonReader - The JsonReader being read.
      Returns:
      An instance of MetricSpecification if the JsonReader was pointing to an instance of it, or null if it was pointing to JSON null.
      Throws:
      IOException - If an error occurs while reading the MetricSpecification.