Class: Google::Apis::ServicecontrolV1::MetricValue

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/servicecontrol_v1/classes.rb,
generated/google/apis/servicecontrol_v1/representations.rb,
generated/google/apis/servicecontrol_v1/representations.rb

Overview

Represents a single metric value.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ MetricValue

Returns a new instance of MetricValue



1233
1234
1235
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 1233

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#bool_valueBoolean Also known as: bool_value?

A boolean value. Corresponds to the JSON property boolValue

Returns:

  • (Boolean)


1178
1179
1180
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 1178

def bool_value
  @bool_value
end

#distribution_valueGoogle::Apis::ServicecontrolV1::Distribution

Distribution represents a frequency distribution of double-valued sample points. It contains the size of the population of sample points plus additional optional information:

  • the arithmetic mean of the samples
  • the minimum and maximum of the samples
  • the sum-squared-deviation of the samples, used to compute variance
  • a histogram of the values of the sample points Corresponds to the JSON property distributionValue


1231
1232
1233
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 1231

def distribution_value
  @distribution_value
end

#double_valueFloat

A double precision floating point value. Corresponds to the JSON property doubleValue

Returns:

  • (Float)


1215
1216
1217
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 1215

def double_value
  @double_value
end

#end_timeString

The end of the time period over which this metric value's measurement applies. Corresponds to the JSON property endTime

Returns:

  • (String)


1185
1186
1187
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 1185

def end_time
  @end_time
end

#int64_valueFixnum

A signed 64-bit integer value. Corresponds to the JSON property int64Value

Returns:

  • (Fixnum)


1220
1221
1222
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 1220

def int64_value
  @int64_value
end

#labelsHash<String,String>

The labels describing the metric value. See comments on google.api.servicecontrol.v1.Operation.labels for the overriding relationship. Corresponds to the JSON property labels

Returns:

  • (Hash<String,String>)


1210
1211
1212
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 1210

def labels
  @labels
end

#money_valueGoogle::Apis::ServicecontrolV1::Money

Represents an amount of money with its currency type. Corresponds to the JSON property moneyValue



1198
1199
1200
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 1198

def money_value
  @money_value
end

#start_timeString

The start of the time period over which this metric value's measurement applies. The time period has different semantics for different metric types (cumulative, delta, and gauge). See the metric definition documentation in the service configuration for details. Corresponds to the JSON property startTime

Returns:

  • (String)


1193
1194
1195
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 1193

def start_time
  @start_time
end

#string_valueString

A text string value. Corresponds to the JSON property stringValue

Returns:

  • (String)


1203
1204
1205
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 1203

def string_value
  @string_value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 1238

def update!(**args)
  @bool_value = args[:bool_value] if args.key?(:bool_value)
  @end_time = args[:end_time] if args.key?(:end_time)
  @start_time = args[:start_time] if args.key?(:start_time)
  @money_value = args[:money_value] if args.key?(:money_value)
  @string_value = args[:string_value] if args.key?(:string_value)
  @labels = args[:labels] if args.key?(:labels)
  @double_value = args[:double_value] if args.key?(:double_value)
  @int64_value = args[:int64_value] if args.key?(:int64_value)
  @distribution_value = args[:distribution_value] if args.key?(:distribution_value)
end