Class: Google::Apis::RedisV1::ObservabilityMetricData
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::RedisV1::ObservabilityMetricData
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/redis_v1/classes.rb,
lib/google/apis/redis_v1/representations.rb,
lib/google/apis/redis_v1/representations.rb 
Instance Attribute Summary collapse
- 
  
    
      #aggregation_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Required.
 - 
  
    
      #metric_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Required.
 - 
  
    
      #observation_time  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Required.
 - 
  
    
      #resource_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Required.
 - 
  
    
      #value  ⇒ Google::Apis::RedisV1::TypedValue 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
TypedValue represents the value of a metric type.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ObservabilityMetricData 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of ObservabilityMetricData.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ ObservabilityMetricData
Returns a new instance of ObservabilityMetricData.
      2051 2052 2053  | 
    
      # File 'lib/google/apis/redis_v1/classes.rb', line 2051 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#aggregation_type ⇒ String
Required. Type of aggregation performed on the metric.
Corresponds to the JSON property aggregationType
      2027 2028 2029  | 
    
      # File 'lib/google/apis/redis_v1/classes.rb', line 2027 def aggregation_type @aggregation_type end  | 
  
#metric_type ⇒ String
Required. Type of metric like CPU, Memory, etc.
Corresponds to the JSON property metricType
      2032 2033 2034  | 
    
      # File 'lib/google/apis/redis_v1/classes.rb', line 2032 def metric_type @metric_type end  | 
  
#observation_time ⇒ String
Required. The time the metric value was observed.
Corresponds to the JSON property observationTime
      2037 2038 2039  | 
    
      # File 'lib/google/apis/redis_v1/classes.rb', line 2037 def observation_time @observation_time end  | 
  
#resource_name ⇒ String
Required. Database resource name associated with the signal. Resource name to
follow CAIS resource_name format as noted here go/condor-common-datamodel
Corresponds to the JSON property resourceName
      2043 2044 2045  | 
    
      # File 'lib/google/apis/redis_v1/classes.rb', line 2043 def resource_name @resource_name end  | 
  
#value ⇒ Google::Apis::RedisV1::TypedValue
TypedValue represents the value of a metric type. It can either be a double,
an int64, a string or a bool.
Corresponds to the JSON property value
      2049 2050 2051  | 
    
      # File 'lib/google/apis/redis_v1/classes.rb', line 2049 def value @value end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      2056 2057 2058 2059 2060 2061 2062  | 
    
      # File 'lib/google/apis/redis_v1/classes.rb', line 2056 def update!(**args) @aggregation_type = args[:aggregation_type] if args.key?(:aggregation_type) @metric_type = args[:metric_type] if args.key?(:metric_type) @observation_time = args[:observation_time] if args.key?(:observation_time) @resource_name = args[:resource_name] if args.key?(:resource_name) @value = args[:value] if args.key?(:value) end  |